packages feed

lambdacube-examples (empty) → 0.1.1

raw patch · 37 files changed

+51550/−0 lines, 37 filesdep +GLFWdep +OpenGLdep +basesetup-changedbinary-added

Dependencies added: GLFW, OpenGL, base, containers, elerea, hslogger, lambdacube-engine

Files

+ LICENSE view
@@ -0,0 +1,28 @@+Copyright (c) 2009, Csaba Hruska+All rights reserved.++Redistribution and use in source and binary forms, with or without+modification, are permitted provided that the following conditions are met:++1. Redistributions of source code must retain the above copyright notice,+   this list of conditions and the following disclaimer.++2. Redistributions in binary form must reproduce the above copyright+   notice, this list of conditions and the following disclaimer in the+   documentation and/or other materials provided with the distribution.++3. Neither the name of the author nor the names of its contributors may be+   used to endorse or promote products derived from this software without+   specific prior written permission.++THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"+AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE+IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE+ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE+LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR+CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF+SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS+INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN+CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)+ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE+POSSIBILITY OF SUCH DAMAGE.
+ README view
@@ -0,0 +1,10 @@+Simple examples for LambdaCube:++lambdacube-basic: you can move the camera with mouse and arrow keys, plus shift for faster movement+lambdacube-cameratrack: camera tracking and animated textures++Check out the website for further details:++http://www.haskell.org/haskellwiki/LambdaCubeEngine++Disclaimer: this is a huge mess for the moment, don't be surprised if things don't work as expected. ;)
+ Setup.hs view
@@ -0,0 +1,2 @@+import Distribution.Simple+main = defaultMain
+ lambdacube-examples.cabal view
@@ -0,0 +1,63 @@+Name:          lambdacube-examples+Version:       0.1.1+Cabal-Version: >= 1.2+Synopsis:      Examples for LambdaCube+Category:      Graphics+Description:   Examples for LambdaCube+Author:        Csaba Hruska+Maintainer:    csaba (dot) hruska (at) gmail (dot) com+Copyright:     (c) 2009, Csaba Hruska+Homepage:      http://www.haskell.org/haskellwiki/LambdaCubeEngine+License:       BSD3+License-File:  LICENSE+Stability:     experimental+Build-Type:    Simple+Extra-Source-Files:+  README+  src/Utils.hs++Data-Files:+  media/01.png+  media/02.png+  media/03.png+  media/04.png+  media/Box.mesh.xml+  media/cloudy_noon_bk.jpg+  media/cloudy_noon_dn.jpg+  media/cloudy_noon_fr.jpg+  media/cloudy_noon_lf.jpg+  media/cloudy_noon_rt.jpg+  media/cloudy_noon_up.jpg+  media/Example.material+  media/Examples.compositor+  media/GlassFP.frag+  media/GreenSkin.jpg+  media/Ground.mesh.xml+  media/knot.mesh.xml+  media/ogrehead.mesh.xml+  media/Ogre.material+  media/r2skin.jpg+  media/Robot.material+  media/robot.mesh.xml+  media/Quad.mesh.xml+  media/spheremap.png+  media/test.material+  media/toonf2.frag+  media/toonf2.vert+  media/Water01.jpg+  media/WaterNormal1.tga+  media/WeirdEye.png++Executable lambdacube-basic+  Executable:     lambdacube-basic+  HS-Source-Dirs: src+  Main-IS:        lambdacube-basic.hs+  Build-Depends:  base >= 4 && < 5, lambdacube-engine, elerea, GLFW, OpenGL, containers, hslogger+  GHC-Options:    -Wall -O2++Executable lambdacube-cameratrack+  Executable:     lambdacube-cameratrack+  HS-Source-Dirs: src+  Main-IS:        lambdacube-cameratrack.hs+  Build-Depends:  base >= 4 && < 5, lambdacube-engine, elerea, GLFW, OpenGL, containers, hslogger+  GHC-Options:    -Wall -O2
+ media/01.png view

binary file changed (absent → 700 bytes)

+ media/02.png view

binary file changed (absent → 818 bytes)

+ media/03.png view

binary file changed (absent → 896 bytes)

+ media/04.png view

binary file changed (absent → 771 bytes)

+ media/Box.mesh.xml view
@@ -0,0 +1,56 @@+<mesh>+	<submeshes>+		<submesh material="Examples/CoudySkyBox" usesharedvertices="false">+			<faces count="12">+				<face v1="0" v2="1" v3="2"/>+				<face v1="0" v2="2" v3="3"/>+				<face v1="4" v2="5" v3="7"/>+				<face v1="5" v2="6" v3="7"/>+				<face v1="0" v2="4" v3="1"/>+				<face v1="4" v2="7" v3="1"/>+				<face v1="1" v2="7" v3="2"/>+				<face v1="7" v2="6" v3="2"/>+				<face v1="2" v2="6" v3="5"/>+				<face v1="2" v2="5" v3="3"/>+				<face v1="4" v2="0" v3="5"/>+				<face v1="0" v2="3" v3="5"/>+			</faces>+			<geometry vertexcount="8">+				<vertexbuffer positions="true" texture_coord_dimensions_0="3" texture_coords="1">+					<vertex>+						<position x="1.000000" y="1.000000" z="-1.000000"/>+                        <texcoord u="1.000000" v="1.000000" w="-1.000000"/>+					</vertex>+					<vertex>+						<position x="1.000000" y="-1.000000" z="-1.000000"/>+                        <texcoord u="1.000000" v="-1.000000" w="-1.000000"/>+					</vertex>+					<vertex>+						<position x="-1.000000" y="-1.000000" z="-1.000000"/>+                        <texcoord u="-1.000000" v="-1.000000" w="-1.000000"/>+					</vertex>+					<vertex>+						<position x="-1.000000" y="1.000000" z="-1.000000"/>+                        <texcoord u="-1.000000" v="1.000000" w="-1.000000"/>+					</vertex>+					<vertex>+						<position x="1.000000" y="1.000000" z="1.000000"/>+                        <texcoord u="1.000000" v="1.000000" w="1.000000"/>+					</vertex>+					<vertex>+						<position x="-1.000000" y="1.000000" z="1.000000"/>+                        <texcoord u="-1.000000" v="1.000000" w="1.000000"/>+					</vertex>+					<vertex>+						<position x="-1.000000" y="-1.000000" z="1.000000"/>+                        <texcoord u="-1.000000" v="-1.000000" w="1.000000"/>+					</vertex>+					<vertex>+						<position x="1.000000" y="-1.000001" z="1.000000"/>+                        <texcoord u="1.000000" v="-1.000000" w="1.000000"/>+					</vertex>+				</vertexbuffer>+			</geometry>+		</submesh>+	</submeshes>+</mesh>
+ media/Example.material view
@@ -0,0 +1,1645 @@++material Examples/EnvMappedRustySteel+{+	technique+	{+		pass+		{++			texture_unit+			{+				texture RustySteel.jpg+			}++			texture_unit+			{+				texture spheremap.png+				colour_op_ex add src_texture src_current+				colour_op_multipass_fallback one one+				env_map spherical+			}+		}+	}+}+material Examples/OgreLogo+{+	technique+	{+		pass+		{+			ambient 0.8 0.8 0.8++			texture_unit+			{+				texture ogrelogo.png gamma gamma+			}+		}+	}+}+material Examples/DarkMaterial+{+	technique+	{+		pass+		{+			ambient 0.1 0.1 0.1++			texture_unit+			{+				texture BeachStones.jpg+			}+		}+	}+}+material Examples/SpaceSkyBox+{+	technique+	{+		pass+		{+			lighting off+			depth_write off++			texture_unit+			{+				cubic_texture stevecube.jpg separateUV+				tex_address_mode clamp+			}+		}+	}+}+material Examples/SceneSkyBox1+{+	technique+	{+		pass+		{+			lighting off+			depth_write off++			texture_unit+			{+				cubic_texture cubemap_fr.jpg cubemap_bk.jpg cubemap_lf.jpg cubemap_rt.jpg cubemap_up.jpg cubemap_dn.jpg separateUV+				tex_address_mode clamp+			}+		}+	}+}+material Examples/SceneCubeMap1+{+	technique+	{+		pass+		{+			lighting off++			texture_unit+			{+				cubic_texture cubemap.jpg combinedUVW+				tex_address_mode clamp+				env_map cubic_reflection+			}+		}+	}+}+material Examples/SceneSkyBox2+{+	technique+	{+		pass+		{+			lighting off+			depth_write off++			texture_unit+			{+				cubic_texture cubescene_fr.jpg cubescene_bk.jpg cubescene_lf.jpg cubescene_rt.jpg cubescene_up.jpg cubescene_dn.jpg separateUV+				tex_address_mode clamp+			}+		}+	}+}+material Examples/SceneCubeMap2+{+	technique+	{+		pass+		{+			lighting off++			texture_unit+			{+				cubic_texture cubescene.jpg combinedUVW+				tex_address_mode clamp+				env_map cubic_reflection+			}+		}+	}+}++material Examples/CloudyNoonSkyBox+{+	technique+	{+		pass+		{+			lighting off+        depth_write off++			texture_unit+			{+				cubic_texture cloudy_noon.jpg separateUV+				tex_address_mode clamp+			}+		}+	}+}++material Examples/StormySkyBox+{+	technique+	{+		pass+		{+			lighting off+			depth_write off++			texture_unit+			{+				cubic_texture stormy.jpg separateUV+				tex_address_mode clamp+			}+		}+	}+}+++fragment_program Examples/MorningSkyBoxHDRfp cg+{+	source hdr.cg+	entry_point morningskybox_fp+	profiles ps_2_0 arbfp1++}+material Examples/MorningSkyBox+{+	technique+	{+		pass+		{+			lighting off+			depth_write off++			texture_unit+			{+				cubic_texture morning.jpg separateUV+				tex_address_mode clamp+			}+		}+	}++	// HDR technique (fake)+	technique+	{+		scheme HDR++		pass+		{+			lighting off+			depth_write off++			vertex_program_ref Ogre/BasicVertexPrograms/AmbientOneTexture+			{+				param_named_auto worldViewProj worldviewproj_matrix+				param_named "ambient" float4 1 1 1 1+			}+			fragment_program_ref Examples/MorningSkyBoxHDRfp+			{+			}++			texture_unit+			{+				cubic_texture morning.jpg separateUV+				tex_address_mode clamp+			}+		}+	}+}+fragment_program Examples/MorningCubeMapHDRfp cg+{+	source hdr.cg+	entry_point morningcubemap_fp+	profiles ps_2_0 arbfp1++}+material Examples/MorningCubeMap+{+	technique+	{+		pass+		{+			lighting off++			texture_unit+			{+				cubic_texture morning.jpg combinedUVW+				tex_address_mode clamp+				env_map cubic_reflection+			}+		}+	}+	// HDR technique (fake)+	technique+	{+		scheme HDR++		pass+		{+			lighting off++			fragment_program_ref Examples/MorningCubeMapHDRfp+			{+			}+			texture_unit+			{+				cubic_texture morning.jpg combinedUVW+				tex_address_mode clamp+				env_map cubic_reflection+			}+		}+	}+}+++material Examples/EveningSkyBox+{+	technique+	{+		pass+		{+			lighting off+			depth_write off+			cull_hardware none+			cull_software none++			texture_unit+			{+				cubic_texture evening.jpg separateUV+				tex_address_mode clamp+			}+		}+	}+}++material Examples/CoudySkyBox+{+	technique+	{+		pass+		{+			lighting off+			depth_write off+			cull_hardware none+			cull_software none++			texture_unit+			{+				cubic_texture cloudy_noon.jpg separateUV+				tex_address_mode clamp+			}+		}+	}+}++material Examples/CloudySky+{+	technique+	{+		pass+		{+			lighting off+			depth_write off++			texture_unit+			{+				texture clouds.jpg+				scroll_anim 0.15 0+			}+		}+	}+}+material Examples/RustySteel+{+	technique+	{+		pass+		{++			texture_unit+			{+				texture RustySteel.jpg+			}+		}+	}+}+material Examples/Chrome+{+	technique+	{+		pass+		{++			texture_unit+			{+				texture Chrome.jpg+				env_map spherical+			}+		}+	}+}+material Examples/SpaceSkyPlane+{+	technique+	{+		pass+		{+			lighting off+			depth_write off+			fog_override true none++			texture_unit+			{+				texture spacesky.jpg+			}+		}+	}+}+material Examples/TextureEffect1+{+	technique+	{+		pass+		{+			ambient 0.75 0.75 0.75+			cull_hardware none+			cull_software none++			texture_unit+			{+				texture BumpyMetal.jpg+				rotate_anim 0.2+				wave_xform scale_x sine 1 0.1 0 5+				wave_xform scale_y sine 0.5 0.2 0.5 3+			}+		}+	}+}+material Examples/TextureEffect2+{+	technique+	{+		pass+		{++			texture_unit+			{+				texture Water02.jpg+				scroll_anim 0.5 0+			}+		}+	}+}+material Examples/TextureEffect3+{+	technique+	{+		pass+		{+			ambient 0.7 0.7 0.7+			cull_hardware none+			cull_software none++			texture_unit+			{+				texture Water01.jpg+				scroll_anim -0.25 0.1+			}++			texture_unit+			{+				texture Water01.jpg+				colour_op_ex add src_texture src_current+				colour_op_multipass_fallback one one+				scroll_anim -0.1 0.25+			}+		}+	}+}+material Examples/TextureEffect4+{+	technique+	{+		pass+		{+			ambient 0.3 0.3 0.3+			scene_blend colour_blend+			cull_hardware none+			cull_software none++			texture_unit+			{+				texture Water02.jpg+				scroll_anim 0.01 0.01+			}+		}+	}+}+material Examples/BumpyMetal+{+	technique+	{+		pass+		{+			ambient 0.75 0.75 0.75+			cull_hardware none+			cull_software none++			texture_unit+			{+				texture BumpyMetal.jpg+			}+		}+	}+}+material Examples/TransparentTest+{+	technique+	{+		pass+		{+			ambient 0.2 0.2 0.2+			scene_blend add+			depth_write off++			texture_unit+			{+				texture Water01.jpg+				scroll_anim 0.25 0+			}++			texture_unit+			{+				texture Water01.jpg+				wave_xform scroll_y sine 0 0.1 0 0.5+			}+		}+	}+}+material Examples/Flare+{+	technique+	{+		pass+		{+			lighting off+			scene_blend add+			depth_write off++			texture_unit+			{+				texture flare.png+			}+		}+	}+}+material Examples/Flare2+{+	technique+	{+		pass+		{+			lighting off+			scene_blend add+			depth_write off++			texture_unit+			{+				texture flaretrail.png+			}+		}+	}+}+material Examples/FlarePointSprite+{+	technique+	{+		pass+		{+			lighting off+			scene_blend add+			depth_write off++			point_sprites on+			point_size 2+			point_size_attenuation on++			texture_unit+			{+				texture flare.png+			}+		}+	}+}++material Examples/Droplet+{+	technique+	{+		pass+		{+			scene_blend colour_blend+			depth_write off++			texture_unit+			{+				texture basic_droplet.png+			}+		}+	}+}+material Examples/Hilite/Yellow+{+	technique+	{+		pass+		{++			texture_unit+			{+				texture dkyellow.png+			}+		}+	}+}+material Examples/Rocky+{+	technique+	{+		pass+		{+			ambient 0.2 0.2 0.2++			texture_unit+			{+				texture egyptrockyfull.jpg+			}+		}+	}+}+material Examples/10PointBlock+{+	technique+	{+		pass+		{++			texture_unit+			{+				texture 10points.png+			}+		}+	}+}+material Material__25+{+	technique+	{+		pass+		{++			texture_unit+			{+				texture texmap2.jpg+			}+		}+	}+}+material "2 - Default"+{+	technique+	{+		pass+		{++			texture_unit+			{+				texture MtlPlat2.jpg+			}+		}+	}+}+material "Material #8"+{+	technique+	{+		pass+		{++			texture_unit+			{+				texture BODY.jpg+			}+		}+	}+}+material "Material #3"+{+	technique+	{+		pass+		{++			texture_unit+			{+				texture HEAD4.jpg+			}+		}+	}+}+material "Material #9"+{+	technique+	{+		pass+		{++			texture_unit+			{+				texture LEGS.jpg+			}+		}+	}+}++material Examples/Fish+{+	technique+	{+		pass+		{+			texture_unit+			{+				texture steelhead.png+			}+		}+	}+}+material Examples/Ninja+{+	technique+	{+		pass+		{+		+			texture_unit+			{+				texture nskingr.jpg+			}+		}+	}+}++material Examples/GrassFloor+{+	technique+	{+		pass+		{+			texture_unit+			{+				texture grass_1024.jpg+			}+		}+	}+}++vertex_program Examples/GrassWaverVp cg+{+	source Grass.cg+	entry_point grass_vp+	profiles vs_1_1 arbvp1+    +    default_params+    {    +        param_named_auto worldViewProj worldviewproj_matrix+        +        param_named_auto camObjPos camera_position_object_space+        +        param_named_auto "ambient" ambient_light_colour+        param_named_auto objSpaceLight light_position_object_space 0+        param_named_auto lightColour light_diffuse_colour 0+        +        param_named_auto offset custom 999+    }+  }+  +vertex_program Examples/GrassWaverTexVp cg+  {+	source Grass.cg+	entry_point grassTex_vp+	profiles vs_1_1 arbvp1+    +    default_params+      {+        param_named_auto worldViewProj worldviewproj_matrix        +        param_named_auto offset custom 999+    }+}+vertex_program Examples/GrassWaverAmbientVp cg+          {+	source Grass.cg+	entry_point grassAmbient_vp+	profiles vs_1_1 arbvp1+    +    default_params+  			{+  				param_named_auto worldViewProj worldviewproj_matrix+  				param_named_auto "ambient" ambient_light_colour+        param_named_auto offset custom 999+    }+}+fragment_program Examples/GrassWaverAmbientFp cg+{+	source Grass.cg+	entry_point grassAmbient_fp+	profiles ps_2_0 arbfp1+    default_params+    {+    }+}++vertex_program Examples/GrassWaverCasterVp cg+{+	source Grass.cg+	entry_point grasscaster_vp+	profiles vs_1_1 arbvp1+    +    default_params+    {    +        param_named_auto worldViewProj worldviewproj_matrix+        param_named_auto offset custom 999+		param_named_auto texelOffsets texel_offsets+    }+}+fragment_program Examples/GrassWaverCasterFp cg+{+	source Grass.cg+	entry_point grasscaster_fp+	profiles ps_2_0 arbfp1+    default_params+    {+    }+}++vertex_program Examples/GrassWaverReceiverVp cg+{+	source Grass.cg+	entry_point grassreceiver_vp+	profiles vs_1_1 arbvp1+    +    default_params+    {+        param_named_auto world world_matrix+		param_named_auto worldViewProj worldviewproj_matrix+		param_named_auto texViewProj texture_viewproj_matrix+        +        param_named_auto camObjPos camera_position_object_space+        +  				param_named_auto objSpaceLight light_position_object_space 0+  				param_named_auto lightColour light_diffuse_colour 0+        +  				param_named_auto offset custom 999+  			}+}+++fragment_program Examples/GrassWaverReceiverFp cg+{+	source Grass.cg+	entry_point grassreceiver_fp+	profiles ps_2_0 arbfp1+   +	default_params+    {+        //param_named inverseShadowmapSize float 0.0009765625+		param_named fixedDepthBias float 0.0005+		param_named gradientClamp float 0.0098+		param_named gradientScaleBias float 0+    }+}+++material Examples/GrassBladesShadowCaster+{+	// Vertex program waving grass+    technique+    {+        pass+        {+			vertex_program_ref Examples/GrassWaverCasterVp+			{+			}+			fragment_program_ref Examples/GrassWaverCasterFp+			{+			}+            +  			alpha_rejection greater 150 +            +  			scene_blend alpha_blend+            +  		    cull_hardware none+              cull_software none+            +              texture_unit+              {+				tex_address_mode clamp+                  texture gras_02.png +              }+          }+        +      }+}+material Examples/GrassBladesShadowReceiver+{+	// Vertex program waving grass+    technique+    {+        pass +		{+			scene_blend add+  +			alpha_rejection greater 150       +            +		    cull_hardware none+            cull_software none +            +			vertex_program_ref Examples/GrassWaverReceiverVp+			{+			}+			fragment_program_ref Examples/GrassWaverReceiverFp+			{+			}+            +            texture_unit ShadowMap+            {+                 tex_address_mode border+                 tex_border_colour 1.0 1.0 1.0 0.0                +                 content_type shadow+                 filtering linear linear none		+                 tex_coord_set 0+            }+           +           texture_unit+           {+				tex_address_mode clamp				+                tex_coord_set 1+                texture gras_02.png+           }+        }+        +    }+}++material Examples/GrassBladesAdditiveFloatTransparentBest+{+    +    transparency_casts_shadows on+    receive_shadows on+     +	// This is the preferred technique which uses both vertex and+	// fragment programs, supports coloured lights+    technique+    {+        shadow_caster_material Examples/GrassBladesShadowCaster+        shadow_receiver_material Examples/GrassBladesShadowReceiver++		// Base ambient pass+		pass+		{+			// base colours, not needed for rendering, but as information+			// to lighting pass categorisation routine+			ambient 1 1 1+			diffuse 0 0 0 +			specular 0 0 0 0 +            +			alpha_rejection greater 150 +            +			scene_blend alpha_blend  +            +		    cull_hardware none+            cull_software none+            +			// Really basic vertex program		+			vertex_program_ref Examples/GrassWaverAmbientVp+			{+			}+            +			fragment_program_ref Examples/GrassWaverAmbientFp+			{+			}+            +            texture_unit+            {+				tex_address_mode clamp+                texture gras_02.png +            }+			+		}+        pass "lighting"+		{+			// base colours, not needed for rendering, but as information+			// to lighting pass categorisation routine+			ambient 0 0 0 +			+			// do this for each light+			iteration once_per_light++		+			scene_blend add++       +			vertex_program_ref Examples/GrassWaverAmbientVp+			{+			}+            +			fragment_program_ref Examples/GrassWaverAmbientFp+			{+			}+            +            +			alpha_rejection greater 150 +            +		    cull_hardware none+            cull_software none+            +            texture_unit ShadowMap+            {+                 tex_address_mode border+                 tex_border_colour 1.0 1.0 1.0 0.0                +                 content_type shadow+                 filtering linear linear none		+                 tex_coord_set 0+            }+           +            +            texture_unit+            {+				tex_address_mode clamp+                texture gras_02.png +            }+        }+		// Decal pass+		pass+		{+			// base colours, not needed for rendering, but as information+			// to lighting pass categorisation routine+			lighting off+            +			alpha_rejection greater 150 +            +			//scene_blend alpha_blend            +			scene_blend dest_colour zero+            +		    cull_hardware none+            cull_software none+            +            texture_unit+            {+				tex_address_mode clamp+                texture gras_02.png +            }+            +			vertex_program_ref Examples/GrassWaverVp+			{+			}+            +            +        }+    }+}+material Examples/GrassBladesAdditiveFloatTransparent+{+    +    transparency_casts_shadows on+    receive_shadows on+     +	// This is the preferred technique which uses both vertex and+	// fragment programs, supports coloured lights+  	technique+      {+        shadow_caster_material Examples/GrassBladesShadowCaster+        shadow_receiver_material Examples/GrassBladesShadowReceiver++		// Base ambient pass+          pass+          {+			// base colours, not needed for rendering, but as information+			// to lighting pass categorisation routine+			ambient 1 1 1+			diffuse 0 0 0 +			specular 0 0 0 0 +            +  			alpha_rejection greater 150 +            +  			scene_blend alpha_blend+            +		    cull_hardware none+            cull_software none+            +			// Really basic vertex program		+			vertex_program_ref Examples/GrassWaverAmbientVp+			{+			}+            +			fragment_program_ref Examples/GrassWaverAmbientFp+			{+			}+            +            texture_unit+            {+				tex_address_mode clamp+                texture gras_02.png +            }+			+		}+        pass "lighting"+		{+			// base colours, not needed for rendering, but as information+			// to lighting pass categorisation routine+			ambient 0 0 0 +			+			// do this for each light+			iteration once_per_light++		+			scene_blend add++       +			vertex_program_ref Examples/GrassWaverAmbientVp+			{+			}+            +			fragment_program_ref Examples/GrassWaverAmbientFp+			{+			}+            +            +			alpha_rejection greater 150 +            +  		    cull_hardware none+              cull_software none+            +            texture_unit ShadowMap+            {+                 tex_address_mode border+                 tex_border_colour 1.0 1.0 1.0 0.0                +                 content_type shadow+                 filtering linear linear none		+                 tex_coord_set 0+            }+           +            +              texture_unit+              {+				tex_address_mode clamp+                  texture gras_02.png +              }+          }+		// Decal pass+		pass+		{+			// base colours, not needed for rendering, but as information+			// to lighting pass categorisation routine+			lighting off+            +			alpha_rejection greater 150 +            +			//scene_blend alpha_blend            +			scene_blend dest_colour zero+            +		    cull_hardware none+            cull_software none+            +            texture_unit+            {+				tex_address_mode clamp+                texture gras_02.png +      }+            +			vertex_program_ref Examples/GrassWaverTexVp+			{+			}+            +            +        }+    }+}++material Examples/GrassBladesAdditiveFloat+{+    transparency_casts_shadows on+    receive_shadows on+     +	// This is the preferred technique which uses both vertex and+	// fragment programs, supports coloured lights+    technique+    {+        shadow_caster_material Ogre/DepthShadowmap/Caster/Float+        shadow_receiver_material Ogre/DepthShadowmap/Receiver/Float++		// Base ambient pass+		pass+		{+			// base colours, not needed for rendering, but as information+			// to lighting pass categorisation routine+			ambient 1 1 1+			diffuse 0 0 0 +			specular 0 0 0 0 +			// Really basic vertex program+			vertex_program_ref Ogre/BasicVertexPrograms/AmbientOneTextureUnified+			{+  }+  +		}+        pass "lighting"+		{+			// base colours, not needed for rendering, but as information+			// to lighting pass categorisation routine+			ambient 0 0 0 +			+			// do this for each light+			iteration once_per_light++		+			scene_blend add++       +			vertex_program_ref Examples/GrassWaverAmbientVp+			{+			}+            +			fragment_program_ref Examples/GrassWaverAmbientFp+			{+			}+            +            +			alpha_rejection greater 150 +			scene_blend alpha_blend+            +		    cull_hardware none+            cull_software none+            +            texture_unit+            {+				tex_address_mode clamp+                texture gras_02.png +            }+        }+		// Decal pass+		pass+		{+			// base colours, not needed for rendering, but as information+			// to lighting pass categorisation routine+			lighting off+            +			alpha_rejection greater 150 +			scene_blend alpha_blend+            +		    cull_hardware none+            cull_software none+            +            texture_unit+            {+				tex_address_mode clamp+                texture gras_02.png +            }+            +			vertex_program_ref Examples/GrassWaverAmbientVp+			{+			}+            +			fragment_program_ref Examples/GrassWaverAmbientFp+			{+			}+            +        }+    }+    +}++material Examples/GrassBladesAdditive+{+    transparency_casts_shadows on+    receive_shadows on+	// Vertex program waving grass    +    technique+    {+        pass+        {+			vertex_program_ref Examples/GrassWaverAmbientVp+			{+			}            +            +			alpha_rejection greater 150 +			scene_blend alpha_blend+            +		    cull_hardware none+            cull_software none+            +            texture_unit+            {+				tex_address_mode clamp+                texture gras_02.png +            }+        }+    }+}++material Examples/GrassBlades+{+    transparency_casts_shadows on+    receive_shadows on+	// Vertex program waving grass    +    technique+    {+        pass+        {+			vertex_program_ref Examples/GrassWaverVp+			{+			}            +            +			alpha_rejection greater 150 +			scene_blend alpha_blend+            +		    cull_hardware none+            cull_software none+            +            texture_unit+            {+				tex_address_mode clamp+                texture gras_02.png +            }+        }+    }+    // fallback+    technique+    {+        pass+        {+			alpha_rejection greater 150 +			scene_blend alpha_blend+            +		    cull_hardware none+            cull_software none+            +            texture_unit+            {+				tex_address_mode clamp+                texture gras_02.png +            }+        }+    }+}+++material Examples/Rockwall+{+	technique+	{+		pass+		{+			texture_unit+			{+				texture rockwall.tga+			}+		}+	}+}++material Examples/Aureola+{+	technique+	{+		pass+		{+			lighting off+			scene_blend alpha_blend+			depth_write off+			cull_hardware none++			texture_unit+			{+				texture aureola.png PF_BYTE_LA+				tex_address_mode clamp+			}+		}+	}+}++// Test hardware morph animation+material Examples/HardwareMorphAnimation+{+	technique+	{+		pass+		{+			+			vertex_program_ref Ogre/HardwareMorphAnimation+			{+				// all default+			}++			texture_unit+			{+				tex_coord_set 0+				colour_op_ex source1 src_current src_current+			}+			// need to define these texture units otherwise GL won't use the uv sets			+			texture_unit+			{+				tex_coord_set 1+				// also need to set blending to ignore texture which is GL warning texture+				colour_op_ex source1 src_current src_current+			}+			texture_unit+			{+				tex_coord_set 2+				colour_op_ex source1 src_current src_current+			}+		+		}+	}+}++// Test hardware pose animation+material Examples/HardwarePoseAnimation+{+	technique+	{+		pass+		{+			+			vertex_program_ref Ogre/HardwarePoseAnimation+			{+				// all default+			}+			texture_unit+			{+				tex_coord_set 0+				colour_op_ex source1 src_current src_current+			}+			// need to define these texture units otherwise GL won't use the uv sets			+			texture_unit+			{+				tex_coord_set 1+				// also need to set blending to ignore texture which is GL warning texture+				colour_op_ex source1 src_current src_current+			}+			texture_unit+			{+				tex_coord_set 2+				colour_op_ex source1 src_current src_current+			}++		+		}+	}+}++material RustyBarrel+{+	technique+	{+		pass+		{+			ambient 0.5 0.5 0.5 1.0+			diffuse 1.0 1.0 1.0 1.0+			specular 0.0 0.0 0.0 1.0 12.5+			emissive 0.0 0.0 0.0 1.0+			texture_unit+			{+				texture RustyBarrel.png+				filtering trilinear+			}+		}+	}+}++material WoodPallet+{+	receive_shadows on+	technique+	{+		pass+		{+			ambient 0.5 0.5 0.5 1.0+			diffuse 1.0 1.0 1.0 1.0+			specular 0.0 0.0 0.0 1.0 12.5++			texture_unit+			{+				texture WoodPallet.png+				filtering trilinear+			}+		}+	}+}++material Examples/LightRibbonTrail+{+	technique+	{+		pass+		{+			lighting off+			scene_blend add+			depth_write off++			texture_unit+			{+				texture ribbonband.png 1d+				tex_address_mode clamp+				filtering none+			}+		}+	}+}++material Examples/TudorHouse+{+	technique+	{+		pass+		{+			texture_unit+			{+				texture fw12b.jpg+				tex_address_mode clamp+			}+		}+	}+}++material jaiqua+{+	// Hardware skinning techniique+	technique+	{+		pass+		{+			vertex_program_ref Ogre/HardwareSkinningTwoWeights+			{+			+			}+			// alternate shadow caster program+			shadow_caster_vertex_program_ref Ogre/HardwareSkinningTwoWeightsShadowCaster+			{+				param_named_auto worldMatrix3x4Array world_matrix_array_3x4+				param_named_auto viewProjectionMatrix viewproj_matrix+				param_named_auto "ambient" ambient_light_colour+			+			}++			texture_unit+			{+				texture blue_jaiqua.jpg+				tex_address_mode clamp+			}+		}+	}++	// Software blending technique+	technique+	{+		pass+		{+			texture_unit+			{+				texture blue_jaiqua.jpg+				tex_address_mode clamp+			}+		}+	}+	+}+++material Examples/Plane/IntegratedShadows+{+	technique+	{+		pass+		{+			// Single-pass shadowing+			texture_unit+			{+				texture MtlPlat2.jpg+			}+			texture_unit+			{+				// standard modulation blend+				content_type shadow+				tex_address_mode clamp+			}+		}+	}+	+}+++fragment_program Examples/ShowUV_p cg+{+	source Example_Basic.cg+	entry_point showuv_p+	profiles ps_2_0 arbfp1+}+fragment_program Examples/ShowUVdir3D cg+{+	source Example_Basic.cg+	entry_point showuvdir3d_p+	profiles ps_2_0 arbfp1+}+vertex_program Examples/ShowTangents_v cg+{+	source Example_Basic.cg+	entry_point basicPassthroughTangent_v+	profiles vs_2_0 arbvp1+	default_params+	{+		param_named_auto worldViewProj worldviewproj_matrix+	}+}+vertex_program Examples/ShowNormals_v cg+{+	source Example_Basic.cg+	entry_point basicPassthroughNormal_v+	profiles vs_2_0 arbvp1+	default_params+	{+		param_named_auto worldViewProj worldviewproj_matrix+	}+}++material Examples/ShowUV+{+	technique+	{+		pass+		{+			vertex_program_ref Ogre/BasicVertexPrograms/AmbientOneTexture+			{+			}+			fragment_program_ref Examples/ShowUV_p+			{+			}++			+		}+	}+}+material Examples/ShowTangents+{+	technique+	{+		pass+		{+			vertex_program_ref Examples/ShowTangents_v+			{+			}+			fragment_program_ref Examples/ShowUVdir3D+			{+			}++			+		}+	}+}+material Examples/ShowNormals+{+	technique+	{+		pass+		{+			vertex_program_ref Examples/ShowNormals_v+			{+			}+			fragment_program_ref Examples/ShowUVdir3D+			{+			}++			+		}+	}+}++
+ media/Examples.compositor view
@@ -0,0 +1,784 @@+//Dark Sylinc's Bloom+compositor Bloom+{+    technique+    {+        // Temporary textures+        texture rt_output target_width target_height PF_R8G8B8 shared+        texture rt0 target_width_scaled 0.25 target_height_scaled 0.25 PF_R8G8B8 shared+        texture rt1 target_width_scaled 0.25 target_height_scaled 0.25 PF_R8G8B8 shared++        target rt_output+        {+            // Render output from previous compositor (or original scene)+            input previous+        }++        target rt0+        {+            // Start with clear texture+            input none+            // Horizontal blur pass+            pass render_quad+            {+                // Renders a fullscreen quad with a material+                material Ogre/Compositor/BrightPass2+                input 0 rt_output+            }+        }++        target rt1+        {+            // Start with clear texture+            input none+            // Horizontal blur pass+            pass render_quad+            {+                // Renders a fullscreen quad with a material+                material Ogre/Compositor/BlurV+                input 0 rt0+            }+        }++        target rt0+        {+            // Start with clear texture+            input none+            // Horizontal blur pass+            pass render_quad+            {+                // Renders a fullscreen quad with a material+                material Ogre/Compositor/BlurH+                input 0 rt1+            }+        }++        target_output+        {+            // Start with clear output+            input none+            // Draw a fullscreen quad+            pass render_quad+            {+                // Renders a fullscreen quad with a material+                material Ogre/Compositor/BloomBlend2+                input 0 rt_output+                input 1 rt0+            }+        }+    }+}++compositor Glass+{+    technique+    {+        texture rt0 target_width target_height PF_R8G8B8 shared++        target rt0 { input previous }++        target_output+        {+            // Start with clear output+            input none++            pass render_quad+            {+                material Ogre/Compositor/GlassPass+                input 0 rt0+            }+        }+    }+}++compositor "Old TV"+{+    technique+    {+        texture rt0 target_width target_height PF_R8G8B8 shared++        // render scene to a texture+        target rt0 { input previous }++        target_output+        {+            // Start with clear output+            input none++            pass render_quad+            {+                // convert the previous render target to a black and white image, add some noise, distort it,+                // then render to scene aligned quad+                material Ogre/Compositor/OldTV+                input 0 rt0+            }+        }+    }+}+++// Black and white effect+compositor B&W+{+    technique+    {+        // Temporary textures+        texture rt0 target_width target_height PF_A8R8G8B8 shared++        target rt0+        {+            // Render output from previous compositor (or original scene)+            input previous+        }++        target_output+        {+            // Start with clear output+            input none+            // Draw a fullscreen quad with the black and white image+            pass render_quad+            {+                // Renders a fullscreen quad with a material+                material Ogre/Compositor/BlackAndWhite+                input 0 rt0+            }+        }+    }+}++//compositor DOF // based on Blur but final pass does depth of field+//{+//    technique+//    {+//        // Temporary textures+//        texture rt0 target_width target_height PF_A8R8G8B8+//        texture rt1 target_width target_height PF_A8R8G8B8+//+//        target rt1+//        {+//            // Render output from previous compositor (or original scene)+//            input previous+//        }+//+//        target rt0+//        {+//            // Start with clear texture+//            input none+//            // Vertical blur pass+//            pass render_quad+//            {+//                // Renders a fullscreen quad with a material+//                material Ogre/Compositor/DOF_Blur0+//                input 0 rt1+//            }+//        }+//+//        target rt1+//        {+//            // Start with clear texture+//            input none+//            // Horizontal blur pass+//            pass render_quad+//            {+//                // Renders a fullscreen quad with a material+//                material Ogre/Compositor/DOF_Blur1+//                input 0 rt0+//            }+//        }+//+//        target_output+//        {+//            // Start with clear output+//            input none+//            // Draw a fullscreen quad+//            pass render_quad+//            {+//                // Renders a fullscreen quad with a material+//                material Ogre/Compositor/DOF_Blend+//                input 0 rt0+//                input 1 rt1+//            }+//        }+//    }+//}++// Embossed (fake bump) effect+compositor Embossed+{+    technique+    {+        // Temporary textures+        texture rt0 target_width target_height PF_A8R8G8B8 shared++        target rt0+        {+            // Render output from previous compositor (or original scene)+            input previous+        }++        target_output+        {+            // Start with clear output+            input none+            // Draw a fullscreen quad with the black and white image+            pass render_quad+            {+                // Renders a fullscreen quad with a material+                material Ogre/Compositor/Embossed+                input 0 rt0+            }+        }+    }+}++// SharpenEdges+compositor "Sharpen Edges"+{+    technique+    {+        // Temporary textures+        texture rt0 target_width target_height PF_A8R8G8B8 shared++        target rt0+        {+            // Render output from previous compositor (or original scene)+            input previous+        }++        target_output+        {+            // Start with clear output+            input none+            // Draw a fullscreen quad with the black and white image+            pass render_quad+            {+                // Renders a fullscreen quad with a material+                material Ogre/Compositor/SharpenEdges+                input 0 rt0+            }+        }+    }+}++// Invert+compositor Invert+{+    technique+    {+        // Temporary textures+        texture rt0 target_width target_height PF_A8R8G8B8 shared++        target rt0+        {+            // Render output from previous compositor (or original scene)+            input previous+        }++        target_output+        {+            // Start with clear output+            input none+            // Draw a fullscreen quad with the black and white image+            pass render_quad+            {+                // Renders a fullscreen quad with a material+                material Ogre/Compositor/Invert+                input 0 rt0+            }+        }+    }+}++// Posterize+compositor Posterize+{+    technique+    {+        // Temporary textures+        texture rt0 target_width target_height PF_A8R8G8B8 shared++        target rt0+        {+            // Render output from previous compositor (or original scene)+            input previous+        }++        target_output+        {+            // Start with clear output+            input none+            // Draw a fullscreen quad with the black and white image+            pass render_quad+            {+                // Renders a fullscreen quad with a material+                material Ogre/Compositor/Posterize+                input 0 rt0+            }+        }+    }+}++// Laplace+compositor Laplace+{+    technique+    {+        // Temporary textures+        texture rt0 target_width target_height PF_A8R8G8B8 shared++        target rt0+        {+            // Render output from previous compositor (or original scene)+            input previous+        }++        target_output+        {+            // Start with clear output+            input none+            // Draw a fullscreen quad with the black and white image+            pass render_quad+            {+                // Renders a fullscreen quad with a material+                material Ogre/Compositor/Laplace+                input 0 rt0+            }+        }+    }+}++// Tiling+compositor Tiling+{+    technique+    {+        // Temporary textures+        texture rt0 target_width target_height PF_A8R8G8B8 shared++        target rt0+        {+            // Render output from previous compositor (or original scene)+            input previous+        }++        target_output+        {+            // Start with clear output+            input none+            // Draw a fullscreen quad with the black and white image+            pass render_quad+            {+                // Renders a fullscreen quad with a material+                material Ogre/Compositor/Tiling+                input 0 rt0+            }+        }+    }+}++// Old Movie+compositor "Old Movie"+{+    technique+    {+        // Temporary textures+        texture rt0 target_width target_height PF_A8R8G8B8 shared++        target rt0+        {+            // Render output from previous compositor (or original scene)+            input previous+        }++        target_output+        {+            // Start with clear output+            input none+            // Draw a fullscreen quad with the black and white image+            pass render_quad+            {+                // Renders a fullscreen quad with a material+                material Ogre/Compositor/OldMovie+                input 0 rt0+            }+        }+    }+}++// HDR+compositor HDR+{+	// floating point only for now+	technique+	{+        // Temporary textures+		// Fullsize HDR render target, used as tone mapping source+        texture rt_full target_width target_height PF_FLOAT16_RGB shared+		// Targets used for luminance evaluation (3x3 downsample, point filtering)+		texture rt_lum0 1 1 PF_FLOAT16_RGB shared+		texture rt_lum1 4 4 PF_FLOAT16_RGB shared+		texture rt_lum2 16 16 PF_FLOAT16_RGB shared+		texture rt_lum3 64 64 PF_FLOAT16_RGB shared+		texture rt_lum4 128 128 PF_FLOAT16_RGB shared+		// Bright-pass filtered target (tone mapped)+		texture rt_brightpass 128 128 PF_R8G8B8 shared+		// Bloom filter targets+		texture rt_bloom0 128 128 PF_R8G8B8 shared+		texture rt_bloom1 128 128 PF_R8G8B8 shared+++		target rt_full+		{+			// No input, render differently+			input none++			// Use float target HDR material scheme (unclamped shaders)+			material_scheme HDR++			pass clear+			{+			}++			pass render_scene+			{+			}++		}++		// Downsample the original HDR scene to extract luminence value+		target rt_lum4+		{+            input none+            pass render_quad+            {+                // Downsample using a 2x2 filter and convert to greyscale+                material Ogre/Compositor/HDR/Downsample2x2Luminence+                input 0 rt_full+                identifier 994+            }+		}+		target rt_lum3+		{+            input none+            pass render_quad+            {+				// Downsample using a 3x3 filter+                material Ogre/Compositor/HDR/Downsample3x3+                input 0 rt_lum4+                identifier 993+            }+		}+		target rt_lum2+		{+            input none+            pass render_quad+            {+                // Downsample using a 3x3 filter+                material Ogre/Compositor/HDR/Downsample3x3+                input 0 rt_lum3+                identifier 992+            }+		}+		target rt_lum1+		{+            input none+            pass render_quad+            {+                // Downsample using a 3x3 filter+                material Ogre/Compositor/HDR/Downsample3x3+                input 0 rt_lum2+                identifier 991+            }+		}+		target rt_lum0+		{+            input none+            pass render_quad+            {+                // Downsample using a 3x3 filter+                material Ogre/Compositor/HDR/Downsample3x3+                input 0 rt_lum1+                identifier 990+            }+		}+++		target rt_brightpass+		{+            input none+            pass render_quad+            {+                // Downsample using a 3x3 filter, hi-pass and tone map+                material Ogre/Compositor/HDR/Downsample3x3Brightpass+                input 0 rt_full+		        input 1 rt_lum0+				identifier 800+            }+		}++		target rt_bloom1+		{+			input none+			pass render_quad+			{+				// Blur horizontally+				material Ogre/Compositor/HDR/GaussianBloom+				input 0 rt_brightpass+				identifier 701+			}+		}+		target rt_bloom0+		{+			input none+			pass render_quad+			{+				// Blur horizontally+				material Ogre/Compositor/HDR/GaussianBloom+				input 0 rt_bloom1+				identifier 700+			}+		}+++		// Final output combines tone mapping of the original scene, with an+		// exposure setting passed in as a GPU parameter, and an additive bloom+		// effect+		target_output+		{+			input none+			pass render_quad+			{+				material Ogre/Compositor/HDR/ToneMapping+				input 0 rt_full+				input 1 rt_bloom0+				input 2 rt_lum0+			}+		}+++	}++}+++// Gaussian blur effect+compositor "Gaussian Blur"+{+    technique+    {+        // Temporary textures+        texture rt0 target_width target_height PF_A8R8G8B8 shared+        texture rt1 target_width target_height PF_A8R8G8B8 shared++        target rt0+        {+            // Render output from previous compositor (or original scene)+            input previous+        }++        target rt1+        {+            // Blur horizontally+            input none+			pass render_quad+			{+				material Ogre/Compositor/HDR/GaussianBloom+				input 0 rt0+				identifier 700+			}+        }++		target_output+        {+            // Start with clear output+            input none+            // Blur vertically+            pass render_quad+            {+                // Renders a fullscreen quad with a material+				material Ogre/Compositor/HDR/GaussianBloom+                input 0 rt1+				identifier 701+            }+        }+    }+}++// Testing MRT+compositor TestMRT+{+	technique+	{+		// temporary texture (MRT!)+		// 4 sub-surfaces, all 32-bit+		texture mrt0 target_width target_height PF_A8R8G8B8 PF_A8R8G8B8 PF_A8R8G8B8 PF_A8R8G8B8++        target mrt0+        {+            // Render scene using MRT-compatible material scheme+          input none+			material_scheme MRT			+			pass clear+			{+				+			}+			pass render_scene+			{+			}+        }++		target_output+		{+			input none+            pass render_quad+            {+                // Renders a fullscreen quad +				material Ogre/MRTtest/quad+				// bind 4 MRT surfaces as texture inputs+                input 0 mrt0 0+                input 1 mrt0 1+				input 2 mrt0 2+                input 3 mrt0 3+          }+			+		}++	}+}++//Radial blur effect+compositor "Radial Blur"+{+    technique+    {+        // Temporary textures+        texture rt0 target_width target_height PF_A8R8G8B8 shared++        target rt0+        {+            // Render output from previous compositor (or original scene)+            input previous+        }++		target_output+        {+            // Start with clear output+            input none+            // Blur vertically+            pass render_quad+            {+                // Renders a fullscreen quad with a material+				material Ogre/Compositor/Radial_Blur+                input 0 rt0+            }+        }+    }+}++// ASCII effect+compositor ASCII+{+    technique+    {+        // Temporary textures+        texture rt0 target_width target_height PF_A8R8G8B8 shared+        target rt0+        {+            // Render output from previous compositor (or original scene)+            input previous+        }++        target_output+        {+            // Start with clear output+            input none+            // Draw a fullscreen quad with the black and white image+            pass render_quad+            {+                // Renders a fullscreen quad with a material+                material Ogre/Compositor/ASCII+                input 0 rt0+            }+        }+    }+}++// Halftone effect+compositor Halftone+{+    technique+    {+        // Temporary textures+        texture rt0 target_width target_height PF_A8R8G8B8 shared++        target rt0+        {+            // Render output from previous compositor (or original scene)+            input previous+        }++        target_output+        {+            // Start with clear output+            input none+            // Draw a fullscreen quad with the black and white image+            pass render_quad+            {+                // Renders a fullscreen quad with a material+                material Ogre/Compositor/Halftone+                input 0 rt0+            }+        }+    }+}++//Night Vision effect+compositor "Night Vision"+{+    technique+    {+        texture rt0 target_width target_height PF_A8R8G8B8 shared+	+	target rt0+	{+	    input previous+	}+	+	target_output+	{+	    input none+	   +	    pass render_quad+	    {+	    	material Ogre/Compositor/NightVision+	    	input 0 rt0+	    }+	}+    }+}++//Dither effect+compositor Dither+{+    technique+    {+        texture rt0 target_width target_height PF_A8R8G8B8 shared+	+	target rt0+	{+	    input previous+	}+	+	target_output+	{+	    input none+	   +	    pass render_quad+	    {+	    	material Ogre/Compositor/Dither+	    	input 0 rt0+	    }+	}+    }+}+
+ media/GlassFP.frag view
@@ -0,0 +1,20 @@+//sampler RT : register(s0);+//sampler NormalMap : register(s1);++//float4 main_ps(float2 iTexCoord : TEXCOORD0) : COLOR+//{+//	float4 normal = 2 * (tex2D(NormalMap, iTexCoord * 2.5) - 0.5);++//	return tex2D(RT, iTexCoord + normal.xy * 0.05);+//}+uniform sampler2D tex0;+uniform sampler2D tex1;+//varying vec2 uv;++void main()+{+    vec2 uv = gl_TexCoord[0].xy;+    vec4 normal = 2.0 * (texture2D(tex1, uv * 2.5) - 0.5);+    gl_FragColor = texture2D(tex0, uv + normal.xy * 0.05);+//    gl_FragColor = vec4(1,0,0,1);+}
+ media/GreenSkin.jpg view

binary file changed (absent → 38602 bytes)

+ media/Ground.mesh.xml view
@@ -0,0 +1,34 @@+<mesh>+	<submeshes>+		<submesh material="MyGroundMaterial" usesharedvertices="false">+			<faces count="2">+				<face v1="0" v2="1" v3="2"/>+				<face v1="0" v2="2" v3="3"/>+			</faces>+			<geometry vertexcount="4">+				<vertexbuffer positions="true" normals="true" texture_coord_dimensions_0="2" texture_coords="1">+					<vertex>+						<position x="1.000000"  z="1.000000"    y="0.000000"/>+						<normal x="0.000000" y="1.000000" z="0.000000"/>+                        <texcoord u="50.000000"  v="50.000000" />+					</vertex>+					<vertex>+						<position x="1.000000"  z="-1.000000"   y="0.000000"/>+						<normal x="0.000000" y="1.000000" z="0.000000"/>+                        <texcoord u="50.000000"  v="0.000000" />+					</vertex>+					<vertex>+						<position x="-1.000000" z="-1.000000"   y="0.000000"/>+						<normal x="0.000000" y="1.000000" z="0.000000"/>+                        <texcoord u="0.000000" v="0.000000" />+					</vertex>+					<vertex>+						<position x="-1.000000" z="1.000000"    y="0.000000"/>+						<normal x="0.000000" y="1.000000" z="0.000000"/>+                        <texcoord u="0.000000" v="50.000000" />+					</vertex>+				</vertexbuffer>+			</geometry>+		</submesh>+	</submeshes>+</mesh>
+ media/Ogre.material view
@@ -0,0 +1,139 @@++material Ogre/Earring+{+	technique+	{+		pass+		{+//			lighting off+//			specular 0.5 0.5 0.5 0+			ambient 0.5 0.5 0+			diffuse 1 1 0++			texture_unit+			{+				texture spheremap.png+				colour_op_ex add src_texture src_current+				colour_op_multipass_fallback one one+				env_map spherical+			}+		}+	}+}+material Ogre/Skin+{+	technique+	{+		pass+		{+//			lighting off+			ambient 0.7 0.7 0.7+//			cull_hardware none++			texture_unit+			{+				texture GreenSkin.jpg+				tex_address_mode mirror+			}++//			texture_unit+//			{+//				cubic_texture cloudy_noon.jpg combinedUVW+//				tex_address_mode clamp+//				env_map spherical+//			}++//			texture_unit+//			{+//				texture RZR-002.png+//			}++//			texture_unit+//			{+//				texture r2skin.jpg+//			}+		}+	}+}+material Ogre/Tusks+{+	technique+	{+		pass+		{+			ambient 0.5 0.5 0.4+			diffuse 1 1 0.8++			texture_unit+			{+				texture dirt01.jpg+				colour_op_ex add src_texture src_current+				colour_op_multipass_fallback one one+			}+		}+	}+}+material Ogre/Eyes+{+	technique+	{+		pass+		{++			texture_unit+			{+				texture WeirdEye.png+			}+		}+	}+}+material Cursor/default+{+	technique+	{+		pass+		{+			scene_blend alpha_blend++			texture_unit+			{+				texture cursor.png+				tex_address_mode clamp+			}+		}+	}+}+material Core/StatsBlockBorder/Down+{+	technique+	{+		pass+		{+			lighting off+			scene_blend alpha_blend+			depth_check off++			texture_unit+			{+				texture ogreborder.png+			}+		}+	}+}+material Core/StatsBlockBorder/Up+{+	technique+	{+		pass+		{+			lighting off+			scene_blend alpha_blend+			depth_check off++			texture_unit+			{+				texture ogreborderUp.png+			}+		}+	}+}
+ media/Quad.mesh.xml view
@@ -0,0 +1,30 @@+<mesh>+	<submeshes>+		<submesh material="QuadMaterial" usesharedvertices="false">+			<faces count="2">+				<face v1="0" v2="1" v3="2"/>+				<face v1="0" v2="2" v3="3"/>+			</faces>+			<geometry vertexcount="4">+				<vertexbuffer positions="true" texture_coord_dimensions_0="2" texture_coords="1">+					<vertex>+						<position x="1.000000"  y="1.000000"    z="0.000000"/>+                        <texcoord u="1.000000"  v="1.000000" />+					</vertex>+					<vertex>+						<position x="-1.000000" y="1.000000"    z="0.000000"/>+                        <texcoord u="0.000000" v="1.000000" />+					</vertex>+					<vertex>+						<position x="-1.000000" y="-1.000000"   z="0.000000"/>+                        <texcoord u="0.000000" v="0.000000" />+					</vertex>+					<vertex>+						<position x="1.000000"  y="-1.000000"   z="0.000000"/>+                        <texcoord u="1.000000"  v="0.000000" />+					</vertex>+				</vertexbuffer>+			</geometry>+		</submesh>+	</submeshes>+</mesh>
+ media/Robot.material view
@@ -0,0 +1,64 @@+vertex_program Examples/AmbientShadingVP  glsl+{+	//source ambient.vert+	//source diffuse.vert+	source toonf2.vert+}++fragment_program Examples/AmbientShadingFP  glsl+{+	//source ambient.frag+	//source diffuse.frag+	source toonf2.frag+}++material Examples/Robot+{++	// Software blending technique+	technique+	{+		pass+		{+			vertex_program_ref Examples/AmbientShadingVP+			{+				// map shininess from custom renderable param 1+				//param_named_auto shininess custom 1+			}+                        +			fragment_program_ref Examples/AmbientShadingFP+			{+				// map shininess from custom renderable param 1+				//param_named_auto shininess custom 1+			}+                        +  //          scene_blend modulate+//            depth_check off+//            depth_write off+//            cull_hardware none+//            cull_software none+			texture_unit+			{+				texture r2skin.jpg+                colour_op modulate+			}+//			texture_unit+//			{+//                colour_op modulate+//				texture GreenSkin.jpg+//			}+		}+	}++	technique+	{+		pass+		{+            lighting on+			texture_unit+			{+				texture r2skin.jpg+			}+		}+	}+}
+ media/Water01.jpg view

binary file changed (absent → 270916 bytes)

+ media/WaterNormal1.tga view

binary file changed (absent → 196652 bytes)

+ media/WeirdEye.png view

binary file changed (absent → 85471 bytes)

+ media/cloudy_noon_bk.jpg view

binary file changed (absent → 19870 bytes)

+ media/cloudy_noon_dn.jpg view

binary file changed (absent → 7873 bytes)

+ media/cloudy_noon_fr.jpg view

binary file changed (absent → 18217 bytes)

+ media/cloudy_noon_lf.jpg view

binary file changed (absent → 23249 bytes)

+ media/cloudy_noon_rt.jpg view

binary file changed (absent → 18901 bytes)

+ media/cloudy_noon_up.jpg view

binary file changed (absent → 28937 bytes)

+ media/knot.mesh.xml view
@@ -0,0 +1,19836 @@+<mesh>+    <sharedgeometry vertexcount="1834">+        <vertexbuffer positions="true" normals="true" texture_coord_dimensions_0="2" texture_coords="1">+            <vertex>+                <position x="61.4732" y="-0.00846273" z="38.8556" />+                <normal x="0.685546" y="0.0375416" z="-0.72706" />+                <texcoord u="0" v="1" />+            </vertex>+            <vertex>+                <position x="64.0767" y="-5.65613" z="44.5495" />+                <normal x="0.862376" y="-0.323183" z="-0.389692" />+                <texcoord u="0" v="0.916667" />+            </vertex>+            <vertex>+                <position x="62.8963" y="-9.78824" z="51.8039" />+                <normal x="0.802048" y="-0.595646" z="0.0438725" />+                <texcoord u="0" v="0.833333" />+            </vertex>+            <vertex>+                <position x="58.2484" y="-11.2976" z="58.6751" />+                <normal x="0.528668" y="-0.711669" z="0.462642" />+                <texcoord u="0" v="0.75" />+            </vertex>+            <vertex>+                <position x="51.3783" y="-9.77978" z="63.3219" />+                <normal x="0.115672" y="-0.642511" z="0.757496" />+                <texcoord u="0" v="0.666667" />+            </vertex>+            <vertex>+                <position x="44.1269" y="-5.64147" z="64.4992" />+                <normal x="-0.328209" y="-0.406608" z="0.852613" />+                <texcoord u="0" v="0.583333" />+            </vertex>+            <vertex>+                <position x="38.4372" y="0.00846095" z="61.8916" />+                <normal x="-0.686839" y="-0.0648621" z="0.723909" />+                <texcoord u="0" v="0.5" />+            </vertex>+            <vertex>+                <position x="35.8337" y="5.65613" z="56.1977" />+                <normal x="-0.865917" y="0.294453" z="0.404334" />+                <texcoord u="0" v="0.416667" />+            </vertex>+            <vertex>+                <position x="37.014" y="9.78824" z="48.9433" />+                <normal x="-0.816446" y="0.576897" z="-0.0246079" />+                <texcoord u="0" v="0.333333" />+            </vertex>+            <vertex>+                <position x="41.662" y="11.2976" z="42.0721" />+                <normal x="-0.547487" y="0.704359" z="-0.451815" />+                <texcoord u="0" v="0.25" />+            </vertex>+            <vertex>+                <position x="48.532" y="9.77978" z="37.4253" />+                <normal x="-0.127341" y="0.636474" z="-0.760714" />+                <texcoord u="0" v="0.166667" />+            </vertex>+            <vertex>+                <position x="55.7834" y="5.64148" z="36.248" />+                <normal x="0.328211" y="0.389661" z="-0.860489" />+                <texcoord u="0" v="0.0833335" />+            </vertex>+            <vertex>+                <position x="64.9637" y="4.07805" z="42.0792" />+                <normal x="0.639465" y="-0.00418207" z="-0.768809" />+                <texcoord u="0.0833333" v="1" />+            </vertex>+            <vertex>+                <position x="67.7679" y="-0.462438" z="48.6072" />+                <normal x="0.885571" y="-0.370398" z="-0.280301" />+                <texcoord u="0.0833333" v="0.916667" />+            </vertex>+            <vertex>+                <position x="66.737" y="-3.38537" z="56.4486" />+                <normal x="0.817293" y="-0.540808" z="0.198894" />+                <texcoord u="0.0833333" v="0.833333" />+            </vertex>+            <vertex>+                <position x="62.1473" y="-3.90754" z="63.5024" />+                <normal x="0.534267" y="-0.570546" z="0.623728" />+                <texcoord u="0.0833333" v="0.75" />+            </vertex>+            <vertex>+                <position x="55.2284" y="-1.88904" z="67.8785" />+                <normal x="0.111456" y="-0.452791" z="0.884623" />+                <texcoord u="0.0833333" v="0.666667" />+            </vertex>+            <vertex>+                <position x="47.8344" y="2.12927" z="68.4043" />+                <normal x="-0.340353" y="-0.217442" z="0.91481" />+                <texcoord u="0.0833333" v="0.583333" />+            </vertex>+            <vertex>+                <position x="41.9465" y="7.0707" z="64.9389" />+                <normal x="-0.702982" y="0.0758381" z="0.707153" />+                <texcoord u="0.0833333" v="0.5" />+            </vertex>+            <vertex>+                <position x="39.1422" y="11.6112" z="58.4109" />+                <normal x="-0.881285" y="0.352352" z="0.314937" />+                <texcoord u="0.0833333" v="0.416667" />+            </vertex>+            <vertex>+                <position x="40.1731" y="14.5341" z="50.5695" />+                <normal x="-0.82615" y="0.539362" z="-0.162984" />+                <texcoord u="0.0833333" v="0.333333" />+            </vertex>+            <vertex>+                <position x="44.7629" y="15.0563" z="43.5157" />+                <normal x="-0.545804" y="0.580885" z="-0.60388" />+                <texcoord u="0.0833333" v="0.25" />+            </vertex>+            <vertex>+                <position x="51.6817" y="13.0378" z="39.1396" />+                <normal x="-0.110666" y="0.456319" z="-0.882908" />+                <texcoord u="0.0833333" v="0.166667" />+            </vertex>+            <vertex>+                <position x="59.0757" y="9.01949" z="38.6138" />+                <normal x="0.354947" y="0.202639" z="-0.912661" />+                <texcoord u="0.0833333" v="0.0833335" />+            </vertex>+            <vertex>+                <position x="68.2778" y="9.11383" z="44.4609" />+                <normal x="0.634612" y="-0.110212" z="-0.764932" />+                <texcoord u="0.166667" v="1" />+            </vertex>+            <vertex>+                <position x="71.425" y="6.04596" z="51.6566" />+                <normal x="0.906709" y="-0.357947" z="-0.223055" />+                <texcoord u="0.166667" v="0.916667" />+            </vertex>+            <vertex>+                <position x="70.651" y="4.56875" z="59.9218" />+                <normal x="0.853353" y="-0.440333" z="0.279098" />+                <texcoord u="0.166667" v="0.833333" />+            </vertex>+            <vertex>+                <position x="66.1631" y="5.078" z="67.0418" />+                <normal x="0.576443" y="-0.410079" z="0.706787" />+                <texcoord u="0.166667" v="0.75" />+            </vertex>+            <vertex>+                <position x="59.164" y="7.43726" z="71.1089" />+                <normal x="0.148996" y="-0.274782" z="0.949892" />+                <texcoord u="0.166667" v="0.666667" />+            </vertex>+            <vertex>+                <position x="51.529" y="11.0144" z="71.0332" />+                <normal x="-0.31712" y="-0.0680698" z="0.945939" />+                <texcoord u="0.166667" v="0.583333" />+            </vertex>+            <vertex>+                <position x="45.304" y="14.8509" z="66.8351" />+                <normal x="-0.700129" y="0.158289" z="0.69625" />+                <texcoord u="0.166667" v="0.5" />+            </vertex>+            <vertex>+                <position x="42.1568" y="17.9187" z="59.6393" />+                <normal x="-0.899859" y="0.34692" z="0.264386" />+                <texcoord u="0.166667" v="0.416667" />+            </vertex>+            <vertex>+                <position x="42.9308" y="19.3959" z="51.3742" />+                <normal x="-0.861436" y="0.446809" z="-0.241433" />+                <texcoord u="0.166667" v="0.333333" />+            </vertex>+            <vertex>+                <position x="47.4186" y="18.8867" z="44.2542" />+                <normal x="-0.586913" y="0.422665" z="-0.690571" />+                <texcoord u="0.166667" v="0.25" />+            </vertex>+            <vertex>+                <position x="54.4178" y="16.5274" z="40.1871" />+                <normal x="-0.144111" y="0.272817" z="-0.951211" />+                <texcoord u="0.166667" v="0.166667" />+            </vertex>+            <vertex>+                <position x="62.0527" y="12.9503" z="40.2628" />+                <normal x="0.337384" y="0.0475325" z="-0.940166" />+                <texcoord u="0.166667" v="0.0833335" />+            </vertex>+            <vertex>+                <position x="71.2484" y="15.2452" z="45.6123" />+                <normal x="0.628554" y="-0.208562" z="-0.749281" />+                <texcoord u="0.25" v="1" />+            </vertex>+            <vertex>+                <position x="74.8245" y="13.9894" z="53.1442" />+                <normal x="0.932474" y="-0.311731" z="-0.182528" />+                <texcoord u="0.25" v="0.916667" />+            </vertex>+            <vertex>+                <position x="74.3697" y="14.1534" z="61.562" />+                <normal x="0.89746" y="-0.296416" z="0.326655" />+                <texcoord u="0.25" v="0.833333" />+            </vertex>+            <vertex>+                <position x="70.0057" y="15.6931" z="68.6104" />+                <normal x="0.627949" y="-0.206936" z="0.750238" />+                <texcoord u="0.25" v="0.75" />+            </vertex>+            <vertex>+                <position x="62.9019" y="18.1961" z="72.4006" />+                <normal x="0.194679" y="-0.0650805" z="0.978706" />+                <texcoord u="0.25" v="0.666667" />+            </vertex>+            <vertex>+                <position x="54.9618" y="20.9916" z="71.9171" />+                <normal x="-0.289143" y="0.0942986" z="0.95263" />+                <texcoord u="0.25" v="0.583333" />+            </vertex>+            <vertex>+                <position x="48.3128" y="23.3307" z="67.2895" />+                <normal x="-0.697319" y="0.231576" z="0.67832" />+                <texcoord u="0.25" v="0.5" />+            </vertex>+            <vertex>+                <position x="44.7367" y="24.5865" z="59.7576" />+                <normal x="-0.923254" y="0.311414" z="0.224998" />+                <texcoord u="0.25" v="0.416667" />+            </vertex>+            <vertex>+                <position x="45.1916" y="24.4225" z="51.3397" />+                <normal x="-0.904646" y="0.308946" z="-0.293544" />+                <texcoord u="0.25" v="0.333333" />+            </vertex>+            <vertex>+                <position x="49.5555" y="22.8828" z="44.2914" />+                <normal x="-0.636445" y="0.215244" z="-0.740681" />+                <texcoord u="0.25" v="0.25" />+            </vertex>+            <vertex>+                <position x="56.6593" y="20.3798" z="40.5012" />+                <normal x="-0.184721" y="0.0537399" z="-0.981321" />+                <texcoord u="0.25" v="0.166667" />+            </vertex>+            <vertex>+                <position x="64.5995" y="17.5843" z="40.9846" />+                <normal x="0.315367" y="-0.117463" z="-0.941672" />+                <texcoord u="0.25" v="0.0833335" />+            </vertex>+            <vertex>+                <position x="73.6371" y="22.5136" z="45.0808" />+                <normal x="0.623073" y="-0.294178" z="-0.724734" />+                <texcoord u="0.333333" v="1" />+            </vertex>+            <vertex>+                <position x="77.6055" y="23.2677" z="52.482" />+                <normal x="0.955529" y="-0.240508" z="-0.170648" />+                <texcoord u="0.333333" v="0.916667" />+            </vertex>+            <vertex>+                <position x="77.4383" y="25.1542" z="60.6983" />+                <normal x="0.937216" y="-0.124019" z="0.325954" />+                <texcoord u="0.333333" v="0.833333" />+            </vertex>+            <vertex>+                <position x="73.1803" y="27.6678" z="67.5281" />+                <normal x="0.674306" y="0.0218157" z="0.73813" />+                <texcoord u="0.333333" v="0.75" />+            </vertex>+            <vertex>+                <position x="65.9725" y="30.1349" z="71.1414" />+                <normal x="0.235478" y="0.161217" z="0.958415" />+                <texcoord u="0.333333" v="0.666667" />+            </vertex>+            <vertex>+                <position x="57.7462" y="31.8943" z="70.5701" />+                <normal x="-0.264859" y="0.259812" z="0.928627" />+                <texcoord u="0.333333" v="0.583333" />+            </vertex>+            <vertex>+                <position x="50.7056" y="32.4748" z="65.9671" />+                <normal x="-0.696329" y="0.292809" z="0.655278" />+                <texcoord u="0.333333" v="0.5" />+            </vertex>+            <vertex>+                <position x="46.7372" y="31.7207" z="58.5659" />+                <normal x="-0.945832" y="0.249985" z="0.207146" />+                <texcoord u="0.333333" v="0.416667" />+            </vertex>+            <vertex>+                <position x="46.9044" y="29.8341" z="50.3496" />+                <normal x="-0.943579" y="0.136682" z="-0.301622" />+                <texcoord u="0.333333" v="0.333333" />+            </vertex>+            <vertex>+                <position x="51.1624" y="27.3206" z="43.5198" />+                <normal x="-0.679401" y="-0.0233712" z="-0.733395" />+                <texcoord u="0.333333" v="0.25" />+            </vertex>+            <vertex>+                <position x="58.3702" y="24.8535" z="39.9065" />+                <normal x="-0.220538" y="-0.180419" z="-0.958547" />+                <texcoord u="0.333333" v="0.166667" />+            </vertex>+            <vertex>+                <position x="66.5965" y="23.094" z="40.4778" />+                <normal x="0.295044" y="-0.279677" z="-0.913636" />+                <texcoord u="0.333333" v="0.0833335" />+            </vertex>+            <vertex>+                <position x="75.1267" y="30.8158" z="42.4041" />+                <normal x="0.619847" y="-0.36476" z="-0.694795" />+                <texcoord u="0.416667" v="1" />+            </vertex>+            <vertex>+                <position x="79.3198" y="33.5375" z="49.1941" />+                <normal x="0.968606" y="-0.160571" z="-0.189787" />+                <texcoord u="0.416667" v="0.916667" />+            </vertex>+            <vertex>+                <position x="79.311" y="37.0529" z="56.8581" />+                <normal x="0.960065" y="0.0519267" z="0.274917" />+                <texcoord u="0.416667" v="0.833333" />+            </vertex>+            <vertex>+                <position x="75.1026" y="40.4202" z="63.3424" />+                <normal x="0.700694" y="0.248535" z="0.668773" />+                <texcoord u="0.416667" v="0.75" />+            </vertex>+            <vertex>+                <position x="67.8223" y="42.737" z="66.9095" />+                <normal x="0.258027" y="0.380124" z="0.888216" />+                <texcoord u="0.416667" v="0.666667" />+            </vertex>+            <vertex>+                <position x="59.4209" y="43.3826" z="66.6037" />+                <normal x="-0.252679" y="0.413656" z="0.874667" />+                <texcoord u="0.416667" v="0.583333" />+            </vertex>+            <vertex>+                <position x="52.1494" y="42.184" z="62.5069" />+                <normal x="-0.698118" y="0.33999" z="0.630109" />+                <texcoord u="0.416667" v="0.5" />+            </vertex>+            <vertex>+                <position x="47.9564" y="39.4623" z="55.7168" />+                <normal x="-0.960424" y="0.175243" z="0.216509" />+                <texcoord u="0.416667" v="0.416667" />+            </vertex>+            <vertex>+                <position x="47.9652" y="35.9469" z="48.0528" />+                <normal x="-0.965057" y="-0.0426281" z="-0.258551" />+                <texcoord u="0.416667" v="0.333333" />+            </vertex>+            <vertex>+                <position x="52.1736" y="32.5796" z="41.5686" />+                <normal x="-0.701501" y="-0.256656" z="-0.664849" />+                <texcoord u="0.416667" v="0.25" />+            </vertex>+            <vertex>+                <position x="59.4538" y="30.2628" z="38.0014" />+                <normal x="-0.240118" y="-0.399242" z="-0.884844" />+                <texcoord u="0.416667" v="0.166667" />+            </vertex>+            <vertex>+                <position x="67.8553" y="29.6172" z="38.3073" />+                <normal x="0.282783" y="-0.425367" z="-0.859707" />+                <texcoord u="0.416667" v="0.0833335" />+            </vertex>+            <vertex>+                <position x="75.339" y="39.8757" z="37.1875" />+                <normal x="0.620002" y="-0.420073" z="-0.662673" />+                <texcoord u="0.5" v="1" />+            </vertex>+            <vertex>+                <position x="79.5278" y="44.3023" z="43.0144" />+                <normal x="0.968682" y="-0.0866747" z="-0.232686" />+                <texcoord u="0.5" v="0.916667" />+            </vertex>+            <vertex>+                <position x="79.5033" y="49.1978" z="49.8794" />+                <normal x="0.960211" y="0.208519" z="0.185784" />+                <texcoord u="0.5" v="0.833333" />+            </vertex>+            <vertex>+                <position x="75.272" y="53.2503" z="55.9431" />+                <normal x="0.700121" y="0.447424" z="0.556455" />+                <texcoord u="0.5" v="0.75" />+            </vertex>+            <vertex>+                <position x="67.9677" y="55.374" z="59.5806" />+                <normal x="0.256146" y="0.569189" z="0.78129" />+                <texcoord u="0.5" v="0.666667" />+            </vertex>+            <vertex>+                <position x="59.5475" y="54.9998" z="59.8173" />+                <normal x="-0.255996" y="0.542512" z="0.800092" />+                <texcoord u="0.5" v="0.583333" />+            </vertex>+            <vertex>+                <position x="52.2678" y="52.2281" z="56.5899" />+                <normal x="-0.702039" y="0.373155" z="0.606545" />+                <texcoord u="0.5" v="0.5" />+            </vertex>+            <vertex>+                <position x="48.0789" y="47.8014" z="50.763" />+                <normal x="-0.962773" y="0.102316" z="0.250197" />+                <texcoord u="0.5" v="0.416667" />+            </vertex>+            <vertex>+                <position x="48.1035" y="42.9059" z="43.898" />+                <normal x="-0.963705" y="-0.201677" z="-0.174926" />+                <texcoord u="0.5" v="0.333333" />+            </vertex>+            <vertex>+                <position x="52.3348" y="38.8534" z="37.8343" />+                <normal x="-0.698038" y="-0.455418" z="-0.552572" />+                <texcoord u="0.5" v="0.25" />+            </vertex>+            <vertex>+                <position x="59.639" y="36.7297" z="34.1968" />+                <normal x="-0.238617" y="-0.582336" z="-0.77714" />+                <texcoord u="0.5" v="0.166667" />+            </vertex>+            <vertex>+                <position x="68.0592" y="37.1039" z="33.96" />+                <normal x="0.282241" y="-0.545864" z="-0.788906" />+                <texcoord u="0.5" v="0.0833335" />+            </vertex>+            <vertex>+                <position x="73.8878" y="49.215" z="29.2194" />+                <normal x="0.623743" y="-0.461159" z="-0.631092" />+                <texcoord u="0.583333" v="1" />+            </vertex>+            <vertex>+                <position x="77.8611" y="54.987" z="33.9089" />+                <normal x="0.956959" y="-0.0259507" z="-0.289059" />+                <texcoord u="0.583333" v="0.916667" />+            </vertex>+            <vertex>+                <position x="77.6619" y="60.9525" z="39.8644" />+                <normal x="0.939335" y="0.334476" z="0.0760046" />+                <texcoord u="0.583333" v="0.833333" />+            </vertex>+            <vertex>+                <position x="73.3437" y="65.5129" z="45.4903" />+                <normal x="0.674685" y="0.605748" z="0.421747" />+                <texcoord u="0.583333" v="0.75" />+            </vertex>+            <vertex>+                <position x="66.0635" y="67.4463" z="49.279" />+                <normal x="0.232158" y="0.71776" z="0.656448" />+                <texcoord u="0.583333" v="0.666667" />+            </vertex>+            <vertex>+                <position x="57.7719" y="66.2346" z="50.2154" />+                <normal x="-0.272571" y="0.641169" z="0.717362" />+                <texcoord u="0.583333" v="0.583333" />+            </vertex>+            <vertex>+                <position x="50.6908" y="62.2026" z="48.0486" />+                <normal x="-0.706561" y="0.394658" z="0.587381" />+                <texcoord u="0.583333" v="0.5" />+            </vertex>+            <vertex>+                <position x="46.7175" y="56.4306" z="43.3592" />+                <normal x="-0.953106" y="0.0406114" z="0.299899" />+                <texcoord u="0.583333" v="0.416667" />+            </vertex>+            <vertex>+                <position x="46.9166" y="50.4651" z="37.4036" />+                <normal x="-0.941992" y="-0.328493" z="-0.0688696" />+                <texcoord u="0.583333" v="0.333333" />+            </vertex>+            <vertex>+                <position x="51.2349" y="45.9047" z="31.7778" />+                <normal x="-0.671904" y="-0.610866" z="-0.418794" />+                <texcoord u="0.583333" v="0.25" />+            </vertex>+            <vertex>+                <position x="58.5151" y="43.9713" z="27.989" />+                <normal x="-0.217293" y="-0.724816" z="-0.653778" />+                <texcoord u="0.583333" v="0.166667" />+            </vertex>+            <vertex>+                <position x="66.8066" y="45.183" z="27.0526" />+                <normal x="0.293565" y="-0.639141" z="-0.710858" />+                <texcoord u="0.583333" v="0.0833335" />+            </vertex>+            <vertex>+                <position x="70.4695" y="58.1713" z="18.596" />+                <normal x="0.630294" y="-0.489963" z="-0.602217" />+                <texcoord u="0.666667" v="1" />+            </vertex>+            <vertex>+                <position x="74.0659" y="64.9424" z="22.1049" />+                <normal x="0.935916" y="0.0209868" z="-0.351598" />+                <texcoord u="0.666667" v="0.916667" />+            </vertex>+            <vertex>+                <position x="73.5732" y="71.6876" z="27.1402" />+                <normal x="0.90205" y="0.429646" z="-0.0413587" />+                <texcoord u="0.666667" v="0.833333" />+            </vertex>+            <vertex>+                <position x="69.1237" y="76.5996" z="32.3525" />+                <normal x="0.630259" y="0.724026" z="0.280285" />+                <texcoord u="0.666667" v="0.75" />+            </vertex>+            <vertex>+                <position x="61.9094" y="78.362" z="36.3454" />+                <normal x="0.191861" y="0.827356" z="0.527893" />+                <texcoord u="0.666667" v="0.666667" />+            </vertex>+            <vertex>+                <position x="53.8635" y="76.5028" z="38.0488" />+                <normal x="-0.298189" y="0.712277" z="0.635409" />+                <texcoord u="0.666667" v="0.583333" />+            </vertex>+            <vertex>+                <position x="47.1419" y="71.5201" z="37.0064" />+                <normal x="-0.7104" y="0.407779" z="0.573628" />+                <texcoord u="0.666667" v="0.5" />+            </vertex>+            <vertex>+                <position x="43.5456" y="64.749" z="33.4974" />+                <normal x="-0.933638" y="-0.00755301" z="0.358138" />+                <texcoord u="0.666667" v="0.416667" />+            </vertex>+            <vertex>+                <position x="44.0382" y="58.0037" z="28.4622" />+                <normal x="-0.904603" y="-0.423767" z="0.0459824" />+                <texcoord u="0.666667" v="0.333333" />+            </vertex>+            <vertex>+                <position x="48.4878" y="53.0918" z="23.2498" />+                <normal x="-0.6281" y="-0.726554" z="-0.278584" />+                <texcoord u="0.666667" v="0.25" />+            </vertex>+            <vertex>+                <position x="55.702" y="51.3293" z="19.257" />+                <normal x="-0.180119" y="-0.83048" z="-0.527125" />+                <texcoord u="0.666667" v="0.166667" />+            </vertex>+            <vertex>+                <position x="63.7479" y="53.1885" z="17.5535" />+                <normal x="0.314551" y="-0.707669" z="-0.632663" />+                <texcoord u="0.666667" v="0.0833335" />+            </vertex>+            <vertex>+                <position x="64.9734" y="65.9698" z="5.8216" />+                <normal x="0.638474" y="-0.508947" z="-0.577342" />+                <texcoord u="0.75" v="1" />+            </vertex>+            <vertex>+                <position x="68.0714" y="73.4533" z="8.16556" />+                <normal x="0.907077" y="0.0560444" z="-0.417217" />+                <texcoord u="0.75" v="0.916667" />+            </vertex>+            <vertex>+                <position x="67.2" y="80.7421" z="12.3139" />+                <normal x="0.851806" y="0.498706" z="-0.160369" />+                <texcoord u="0.75" v="0.833333" />+            </vertex>+            <vertex>+                <position x="62.5927" y="85.8832" z="17.155" />+                <normal x="0.571469" y="0.808717" z="0.139288" />+                <texcoord u="0.75" v="0.75" />+            </vertex>+            <vertex>+                <position x="55.484" y="87.499" z="21.3918" />+                <normal x="0.139869" y="0.904853" z="0.402092" />+                <texcoord u="0.75" v="0.666667" />+            </vertex>+            <vertex>+                <position x="47.7787" y="85.1565" z="23.889" />+                <normal x="-0.329591" y="0.761552" z="0.55804" />+                <texcoord u="0.75" v="0.583333" />+            </vertex>+            <vertex>+                <position x="41.5414" y="79.4835" z="23.9774" />+                <normal x="-0.71268" y="0.415469" z="0.565219" />+                <texcoord u="0.75" v="0.5" />+            </vertex>+            <vertex>+                <position x="38.4434" y="72" z="21.6334" />+                <normal x="-0.906032" y="-0.0432509" z="0.420994" />+                <texcoord u="0.75" v="0.416667" />+            </vertex>+            <vertex>+                <position x="39.3149" y="64.7112" z="17.4851" />+                <normal x="-0.854808" y="-0.492585" z="0.163289" />+                <texcoord u="0.75" v="0.333333" />+            </vertex>+            <vertex>+                <position x="43.9222" y="59.5702" z="12.644" />+                <normal x="-0.570376" y="-0.809596" z="-0.138654" />+                <texcoord u="0.75" v="0.25" />+            </vertex>+            <vertex>+                <position x="51.0309" y="57.9544" z="8.40723" />+                <normal x="-0.130623" y="-0.905894" z="-0.402857" />+                <texcoord u="0.75" v="0.166667" />+            </vertex>+            <vertex>+                <position x="58.7362" y="60.2968" z="5.91006" />+                <normal x="0.342743" y="-0.755821" z="-0.557909" />+                <texcoord u="0.75" v="0.0833335" />+            </vertex>+            <vertex>+                <position x="57.5643" y="71.8737" z="-8.19897" />+                <normal x="0.647113" y="-0.520564" z="-0.557008" />+                <texcoord u="0.833333" v="1" />+            </vertex>+            <vertex>+                <position x="60.0602" y="79.8371" z="-6.9951" />+                <normal x="0.870381" y="0.0807958" z="-0.485705" />+                <texcoord u="0.833333" v="0.916667" />+            </vertex>+            <vertex>+                <position x="58.7423" y="87.4825" z="-3.69268" />+                <normal x="0.789503" y="0.546059" z="-0.280188" />+                <texcoord u="0.833333" v="0.833333" />+            </vertex>+            <vertex>+                <position x="53.9638" y="92.7612" z="0.823414" />+                <normal x="0.499941" y="0.86606" z="-0.000115944" />+                <texcoord u="0.833333" v="0.75" />+            </vertex>+            <vertex>+                <position x="47.0051" y="94.259" z="5.3431" />+                <normal x="0.0780608" y="0.956819" z="0.280008" />+                <texcoord u="0.833333" v="0.666667" />+            </vertex>+            <vertex>+                <position x="39.7307" y="91.5743" z="8.65533" />+                <normal x="-0.365254" y="0.794197" z="0.485635" />+                <texcoord u="0.833333" v="0.583333" />+            </vertex>+            <vertex>+                <position x="34.0899" y="85.4267" z="9.8726" />+                <normal x="-0.712719" y="0.420078" z="0.561752" />+                <texcoord u="0.833333" v="0.5" />+            </vertex>+            <vertex>+                <position x="31.594" y="77.4633" z="8.66874" />+                <normal x="-0.870528" y="-0.0677612" z="0.487431" />+                <texcoord u="0.833333" v="0.416667" />+            </vertex>+            <vertex>+                <position x="32.9119" y="69.8179" z="5.36632" />+                <normal x="-0.793504" y="-0.539385" z="0.281807" />+                <texcoord u="0.833333" v="0.333333" />+            </vertex>+            <vertex>+                <position x="37.6904" y="64.5391" z="0.850222" />+                <normal x="-0.500096" y="-0.86597" z="-0.000145612" />+                <texcoord u="0.833333" v="0.25" />+            </vertex>+            <vertex>+                <position x="44.6491" y="63.0414" z="-3.66946" />+                <normal x="-0.0705126" y="-0.956812" z="-0.282026" />+                <texcoord u="0.833333" v="0.166667" />+            </vertex>+            <vertex>+                <position x="51.9235" y="65.726" z="-6.9817" />+                <normal x="0.376532" y="-0.787754" z="-0.487511" />+                <texcoord u="0.833333" v="0.0833335" />+            </vertex>+            <vertex>+                <position x="48.6911" y="75.3554" z="-22.3046" />+                <normal x="0.655222" y="-0.526904" z="-0.541347" />+                <texcoord u="0.916667" v="1" />+            </vertex>+            <vertex>+                <position x="50.4763" y="83.5957" z="-22.2295" />+                <normal x="0.824261" y="0.0953534" z="-0.558123" />+                <texcoord u="0.916667" v="0.916667" />+            </vertex>+            <vertex>+                <position x="48.6457" y="91.4414" z="-19.7419" />+                <normal x="0.713562" y="0.573579" z="-0.402288" />+                <texcoord u="0.916667" v="0.833333" />+            </vertex>+            <vertex>+                <position x="43.6899" y="96.7904" z="-15.5084" />+                <normal x="0.414483" y="0.899296" z="-0.139533" />+                <texcoord u="0.916667" v="0.75" />+            </vertex>+            <vertex>+                <position x="36.9367" y="98.2093" z="-10.6632" />+                <normal x="0.00588274" y="0.98707" z="0.160183" />+                <texcoord u="0.916667" v="0.666667" />+            </vertex>+            <vertex>+                <position x="30.1956" y="95.3179" z="-6.50473" />+                <normal x="-0.405038" y="0.813592" z="0.417147" />+                <texcoord u="0.916667" v="0.583333" />+            </vertex>+            <vertex>+                <position x="25.273" y="88.8911" z="-4.14718" />+                <normal x="-0.709794" y="0.423591" z="0.562817" />+                <texcoord u="0.916667" v="0.5" />+            </vertex>+            <vertex>+                <position x="23.4878" y="80.6508" z="-4.22225" />+                <normal x="-0.825999" y="-0.0810634" z="0.557812" />+                <texcoord u="0.916667" v="0.416667" />+            </vertex>+            <vertex>+                <position x="25.3184" y="72.8051" z="-6.70983" />+                <normal x="-0.7194" y="-0.566013" z="0.402608" />+                <texcoord u="0.916667" v="0.333333" />+            </vertex>+            <vertex>+                <position x="30.2742" y="67.4562" z="-10.9434" />+                <normal x="-0.416187" y="-0.898694" z="0.138341" />+                <texcoord u="0.916667" v="0.25" />+            </vertex>+            <vertex>+                <position x="37.0274" y="66.0373" z="-15.7885" />+                <normal x="0.000639608" y="-0.986541" z="-0.163511" />+                <texcoord u="0.916667" v="0.166667" />+            </vertex>+            <vertex>+                <position x="43.7685" y="68.9286" z="-19.947" />+                <normal x="0.415507" y="-0.80626" z="-0.421068" />+                <texcoord u="0.916667" v="0.0833335" />+            </vertex>+            <vertex>+                <position x="38.9935" y="76.2237" z="-35.3344" />+                <normal x="0.661897" y="-0.529616" z="-0.530471" />+                <texcoord u="1" v="1" />+            </vertex>+            <vertex>+                <position x="39.9368" y="84.5357" z="-36.3905" />+                <normal x="0.765853" y="0.0978999" z="-0.635519" />+                <texcoord u="1" v="0.916667" />+            </vertex>+            <vertex>+                <position x="37.5162" y="92.4329" z="-34.6967" />+                <normal x="0.620394" y="0.579819" z="-0.52813" />+                <texcoord u="1" v="0.833333" />+            </vertex>+            <vertex>+                <position x="32.3804" y="97.7993" z="-30.7068" />+                <normal x="0.311689" y="0.907816" z="-0.280571" />+                <texcoord u="1" v="0.75" />+            </vertex>+            <vertex>+                <position x="25.9054" y="99.197" z="-25.4898" />+                <normal x="-0.0790728" y="0.996019" z="0.0411482" />+                <texcoord u="1" v="0.666667" />+            </vertex>+            <vertex>+                <position x="19.8264" y="96.2514" z="-20.4438" />+                <normal x="-0.449818" y="0.821035" z="0.35152" />+                <texcoord u="1" v="0.583333" />+            </vertex>+            <vertex>+                <position x="15.772" y="89.7518" z="-16.9207" />+                <normal x="-0.703113" y="0.427788" z="0.568005" />+                <texcoord u="1" v="0.5" />+            </vertex>+            <vertex>+                <position x="14.8288" y="81.4398" z="-15.8645" />+                <normal x="-0.770248" y="-0.0814157" z="0.632526" />+                <texcoord u="1" v="0.416667" />+            </vertex>+            <vertex>+                <position x="17.2493" y="73.5426" z="-17.5584" />+                <normal x="-0.629437" y="-0.571218" z="0.526801" />+                <texcoord u="1" v="0.333333" />+            </vertex>+            <vertex>+                <position x="22.3851" y="68.1762" z="-21.5483" />+                <normal x="-0.315508" y="-0.907226" z="0.278202" />+                <texcoord u="1" v="0.25" />+            </vertex>+            <vertex>+                <position x="28.8601" y="66.7785" z="-26.7652" />+                <normal x="0.0850853" y="-0.9953" z="-0.0462348" />+                <texcoord u="1" v="0.166667" />+            </vertex>+            <vertex>+                <position x="34.9392" y="69.7241" z="-31.8113" />+                <normal x="0.460221" y="-0.812328" z="-0.358218" />+                <texcoord u="1" v="0.0833335" />+            </vertex>+            <vertex>+                <position x="29.1475" y="74.6375" z="-46.3788" />+                <normal x="0.666111" y="-0.530003" z="-0.52478" />+                <texcoord u="1.08333" v="1" />+            </vertex>+            <vertex>+                <position x="29.0853" y="82.7822" z="-48.5592" />+                <normal x="0.691418" y="0.0844908" z="-0.717498" />+                <texcoord u="1.08333" v="0.916667" />+            </vertex>+            <vertex>+                <position x="25.9799" y="90.5663" z="-47.6318" />+                <normal x="0.505253" y="0.559845" z="-0.656729" />+                <texcoord u="1.08333" v="0.833333" />+            </vertex>+            <vertex>+                <position x="20.6635" y="95.9039" z="-43.845" />+                <normal x="0.186957" y="0.887074" z="-0.422075" />+                <texcoord u="1.08333" v="0.75" />+            </vertex>+            <vertex>+                <position x="14.5606" y="97.3649" z="-38.2134" />+                <normal x="-0.180198" y="0.980671" z="-0.07624" />+                <texcoord u="1.08333" v="0.666667" />+            </vertex>+            <vertex>+                <position x="9.30643" y="94.5578" z="-32.2461" />+                <normal x="-0.501014" y="0.815767" z="0.288979" />+                <texcoord u="1.08333" v="0.583333" />+            </vertex>+            <vertex>+                <position x="6.30888" y="88.2348" z="-27.542" />+                <normal x="-0.691851" y="0.434251" z="0.57686" />+                <texcoord u="1.08333" v="0.5" />+            </vertex>+            <vertex>+                <position x="6.37112" y="80.0901" z="-25.3615" />+                <normal x="-0.700472" y="-0.0653996" z="0.710677" />+                <texcoord u="1.08333" v="0.416667" />+            </vertex>+            <vertex>+                <position x="9.47649" y="72.3061" z="-26.289" />+                <normal x="-0.519483" y="-0.550703" z="0.653348" />+                <texcoord u="1.08333" v="0.333333" />+            </vertex>+            <vertex>+                <position x="14.7929" y="66.9684" z="-30.0758" />+                <normal x="-0.193578" y="-0.887442" z="0.4183" />+                <texcoord u="1.08333" v="0.25" />+            </vertex>+            <vertex>+                <position x="20.8958" y="65.5074" z="-35.7074" />+                <normal x="0.186196" y="-0.980118" z="0.0685592" />+                <texcoord u="1.08333" v="0.166667" />+            </vertex>+            <vertex>+                <position x="26.15" y="68.3145" z="-41.6747" />+                <normal x="0.511644" y="-0.805125" z="-0.29999" />+                <texcoord u="1.08333" v="0.0833335" />+            </vertex>+            <vertex>+                <position x="19.7202" y="71.0151" z="-54.92" />+                <normal x="0.666352" y="-0.529335" z="-0.525148" />+                <texcoord u="1.16667" v="1" />+            </vertex>+            <vertex>+                <position x="18.4654" y="78.698" z="-58.1593" />+                <normal x="0.597601" y="0.0494842" z="-0.800265" />+                <texcoord u="1.16667" v="0.916667" />+            </vertex>+            <vertex>+                <position x="14.5693" y="86.1721" z="-57.9302" />+                <normal x="0.364445" y="0.506241" z="-0.781601" />+                <texcoord u="1.16667" v="0.833333" />+            </vertex>+            <vertex>+                <position x="9.07587" y="91.4348" z="-54.2941" />+                <normal x="0.0369769" y="0.829826" z="-0.556796" />+                <texcoord u="1.16667" v="0.75" />+            </vertex>+            <vertex>+                <position x="3.4571" y="93.0759" z="-48.2253" />+                <normal x="-0.299815" y="0.935687" z="-0.186012" />+                <texcoord u="1.16667" v="0.666667" />+            </vertex>+            <vertex>+                <position x="-0.781492" y="90.6557" z="-41.3499" />+                <normal x="-0.559494" y="0.795521" z="0.232622" />+                <texcoord u="1.16667" v="0.583333" />+            </vertex>+            <vertex>+                <position x="-2.50417" y="84.8227" z="-35.5101" />+                <normal x="-0.675163" y="0.444202" z="0.58893" />+                <texcoord u="1.16667" v="0.5" />+            </vertex>+            <vertex>+                <position x="-1.24935" y="77.1398" z="-32.2708" />+                <normal x="-0.614151" y="-0.028683" z="0.788667" />+                <texcoord u="1.16667" v="0.416667" />+            </vertex>+            <vertex>+                <position x="2.64674" y="69.6657" z="-32.4999" />+                <normal x="-0.385701" y="-0.498162" z="0.776576" />+                <texcoord u="1.16667" v="0.333333" />+            </vertex>+            <vertex>+                <position x="8.14015" y="64.403" z="-36.136" />+                <normal x="-0.0461791" y="-0.832602" z="0.551943" />+                <texcoord u="1.16667" v="0.25" />+            </vertex>+            <vertex>+                <position x="13.7589" y="62.7619" z="-42.2048" />+                <normal x="0.306743" y="-0.935651" z="0.174543" />+                <texcoord u="1.16667" v="0.166667" />+            </vertex>+            <vertex>+                <position x="17.9975" y="65.1821" z="-49.0802" />+                <normal x="0.569901" y="-0.782657" z="-0.250323" />+                <texcoord u="1.16667" v="0.0833335" />+            </vertex>+            <vertex>+                <position x="11.0789" y="65.8892" z="-60.8377" />+                <normal x="0.660283" y="-0.529527" z="-0.532567" />+                <texcoord u="1.25" v="1" />+            </vertex>+            <vertex>+                <position x="8.46434" y="72.7743" z="-64.943" />+                <normal x="0.484259" y="-0.0121253" z="-0.874841" />+                <texcoord u="1.25" v="0.916667" />+            </vertex>+            <vertex>+                <position x="3.69389" y="79.7199" z="-65.2539" />+                <normal x="0.199635" y="0.413216" z="-0.888481" />+                <texcoord u="1.25" v="0.833333" />+            </vertex>+            <vertex>+                <position x="-1.95423" y="84.8648" z="-61.6869" />+                <normal x="-0.13569" y="0.730738" z="-0.669037" />+                <texcoord u="1.25" v="0.75" />+            </vertex>+            <vertex>+                <position x="-6.9666" y="86.8305" z="-55.198" />+                <normal x="-0.435448" y="0.857161" z="-0.275064" />+                <texcoord u="1.25" v="0.666667" />+            </vertex>+            <vertex>+                <position x="-10.0002" y="85.0902" z="-47.5257" />+                <normal x="-0.623483" y="0.75845" z="0.189794" />+                <texcoord u="1.25" v="0.583333" />+            </vertex>+            <vertex>+                <position x="-10.2421" y="80.1104" z="-40.7259" />+                <normal x="-0.651903" y="0.458181" z="0.604229" />+                <texcoord u="1.25" v="0.5" />+            </vertex>+            <vertex>+                <position x="-7.62753" y="73.2253" z="-36.6206" />+                <normal x="-0.510165" y="0.0317962" z="0.859489" />+                <texcoord u="1.25" v="0.416667" />+            </vertex>+            <vertex>+                <position x="-2.85708" y="66.2797" z="-36.3098" />+                <normal x="-0.226657" y="-0.408352" z="0.884237" />+                <texcoord u="1.25" v="0.333333" />+            </vertex>+            <vertex>+                <position x="2.79104" y="61.1348" z="-39.8767" />+                <normal x="0.127389" y="-0.736658" z="0.664159" />+                <texcoord u="1.25" v="0.25" />+            </vertex>+            <vertex>+                <position x="7.80341" y="59.1691" z="-46.3657" />+                <normal x="0.445028" y="-0.857511" z="0.258117" />+                <texcoord u="1.25" v="0.166667" />+            </vertex>+            <vertex>+                <position x="10.837" y="60.9093" z="-54.0379" />+                <normal x="0.631859" y="-0.744178" z="-0.216687" />+                <texcoord u="1.25" v="0.0833335" />+            </vertex>+            <vertex>+                <position x="3.39092" y="59.783" z="-64.2979" />+                <normal x="0.644988" y="-0.533441" z="-0.547204" />+                <texcoord u="1.33333" v="1" />+            </vertex>+            <vertex>+                <position x="-0.648891" y="65.5757" z="-68.9042" />+                <normal x="0.357001" y="-0.099637" z="-0.928775" />+                <texcoord u="1.33333" v="0.916667" />+            </vertex>+            <vertex>+                <position x="-6.296" y="71.8108" z="-69.4769" />+                <normal x="0.0212071" y="0.284141" z="-0.958548" />+                <texcoord u="1.33333" v="0.833333" />+            </vertex>+            <vertex>+                <position x="-12.0373" y="76.8176" z="-65.8625" />+                <normal x="-0.318935" y="0.594421" z="-0.738203" />+                <texcoord u="1.33333" v="0.75" />+            </vertex>+            <vertex>+                <position x="-16.3343" y="79.2546" z="-59.0294" />+                <normal x="-0.576441" y="0.749327" z="-0.325921" />+                <texcoord u="1.33333" v="0.666667" />+            </vertex>+            <vertex>+                <position x="-18.0358" y="78.4686" z="-50.8085" />+                <normal x="-0.686163" y="0.707115" z="0.170786" />+                <texcoord u="1.33333" v="0.583333" />+            </vertex>+            <vertex>+                <position x="-16.6857" y="74.6704" z="-43.4028" />+                <normal x="-0.619887" y="0.47658" z="0.623388" />+                <texcoord u="1.33333" v="0.5" />+            </vertex>+            <vertex>+                <position x="-12.6459" y="68.8777" z="-38.7964" />+                <normal x="-0.390166" y="0.114969" z="0.913538" />+                <texcoord u="1.33333" v="0.416667" />+            </vertex>+            <vertex>+                <position x="-6.99882" y="62.6426" z="-38.2237" />+                <normal x="-0.0471135" y="-0.282528" z="0.958101" />+                <texcoord u="1.33333" v="0.333333" />+            </vertex>+            <vertex>+                <position x="-1.25755" y="57.6358" z="-41.8382" />+                <normal x="0.318212" y="-0.601402" z="0.732842" />+                <texcoord u="1.33333" v="0.25" />+            </vertex>+            <vertex>+                <position x="3.03951" y="55.1988" z="-48.6712" />+                <normal x="0.589535" y="-0.749485" z="0.3012" />+                <texcoord u="1.33333" v="0.166667" />+            </vertex>+            <vertex>+                <position x="4.74097" y="55.9848" z="-56.8921" />+                <normal x="0.689265" y="-0.694187" z="-0.207407" />+                <texcoord u="1.33333" v="0.0833335" />+            </vertex>+            <vertex>+                <position x="-3.33487" y="53.1366" z="-65.6204" />+                <normal x="0.617937" y="-0.544147" z="-0.567502" />+                <texcoord u="1.41667" v="1" />+            </vertex>+            <vertex>+                <position x="-8.69957" y="57.7109" z="-70.2454" />+                <normal x="0.225693" y="-0.203406" z="-0.952727" />+                <texcoord u="1.41667" v="0.916667" />+            </vertex>+            <vertex>+                <position x="-15.0984" y="63.1807" z="-70.7257" />+                <normal x="-0.154448" y="0.135684" z="-0.97864" />+                <texcoord u="1.41667" v="0.833333" />+            </vertex>+            <vertex>+                <position x="-20.8167" y="68.0805" z="-66.9326" />+                <normal x="-0.493885" y="0.43993" z="-0.750026" />+                <texcoord u="1.41667" v="0.75" />+            </vertex>+            <vertex>+                <position x="-24.3223" y="71.0973" z="-59.8825" />+                <normal x="-0.705835" y="0.628729" z="-0.326338" />+                <texcoord u="1.41667" v="0.666667" />+            </vertex>+            <vertex>+                <position x="-24.676" y="71.4228" z="-51.4645" />+                <normal x="-0.736239" y="0.65154" z="0.18289" />+                <texcoord u="1.41667" v="0.583333" />+            </vertex>+            <vertex>+                <position x="-21.7828" y="68.9697" z="-43.9341" />+                <normal x="-0.575796" y="0.500696" z="0.646345" />+                <texcoord u="1.41667" v="0.5" />+            </vertex>+            <vertex>+                <position x="-16.4181" y="64.3954" z="-39.3091" />+                <normal x="-0.259677" y="0.213453" z="0.94181" />+                <texcoord u="1.41667" v="0.416667" />+            </vertex>+            <vertex>+                <position x="-10.0193" y="58.9256" z="-38.8288" />+                <normal x="0.137961" y="-0.134781" z="0.981224" />+                <texcoord u="1.41667" v="0.333333" />+            </vertex>+            <vertex>+                <position x="-4.301" y="54.0258" z="-42.6219" />+                <normal x="0.503581" y="-0.44518" z="0.740419" />+                <texcoord u="1.41667" v="0.25" />+            </vertex>+            <vertex>+                <position x="-0.795356" y="51.009" z="-49.672" />+                <normal x="0.719352" y="-0.629744" z="0.29318" />+                <texcoord u="1.41667" v="0.166667" />+            </vertex>+            <vertex>+                <position x="-0.441724" y="50.6835" z="-58.09" />+                <normal x="0.73114" y="-0.643933" z="-0.225355" />+                <texcoord u="1.41667" v="0.0833335" />+            </vertex>+            <vertex>+                <position x="-9.17704" y="46.2891" z="-65.1652" />+                <normal x="0.577869" y="-0.563471" z="-0.590397" />+                <texcoord u="1.5" v="1" />+            </vertex>+            <vertex>+                <position x="-15.6234" y="49.75" z="-69.3558" />+                <normal x="0.0989568" y="-0.30875" z="-0.945982" />+                <texcoord u="1.5" v="0.916667" />+            </vertex>+            <vertex>+                <position x="-22.5433" y="54.5671" z="-69.4249" />+                <normal x="-0.313236" y="-0.00858656" z="-0.949637" />+                <texcoord u="1.5" v="0.833333" />+            </vertex>+            <vertex>+                <position x="-28.0827" y="59.4496" z="-65.3541" />+                <normal x="-0.643996" y="0.293933" z="-0.706309" />+                <texcoord u="1.5" v="0.75" />+            </vertex>+            <vertex>+                <position x="-30.7571" y="63.0892" z="-58.234" />+                <normal x="-0.808298" y="0.518732" z="-0.278517" />+                <texcoord u="1.5" v="0.666667" />+            </vertex>+            <vertex>+                <position x="-29.8501" y="64.5107" z="-49.9726" />+                <normal x="-0.763223" y="0.606203" z="0.223625" />+                <texcoord u="1.5" v="0.583333" />+            </vertex>+            <vertex>+                <position x="-25.6046" y="63.3332" z="-42.7835" />+                <normal x="-0.517297" y="0.532409" z="0.670034" />+                <texcoord u="1.5" v="0.5" />+            </vertex>+            <vertex>+                <position x="-19.1582" y="59.8723" z="-38.5929" />+                <normal x="-0.127466" y="0.314987" z="0.940498" />+                <texcoord u="1.5" v="0.416667" />+            </vertex>+            <vertex>+                <position x="-12.2383" y="55.0552" z="-38.5238" />+                <normal x="0.307875" y="0.00998323" z="0.951374" />+                <texcoord u="1.5" v="0.333333" />+            </vertex>+            <vertex>+                <position x="-6.69898" y="50.1728" z="-42.5946" />+                <normal x="0.658916" y="-0.298442" z="0.690479" />+                <texcoord u="1.5" v="0.25" />+            </vertex>+            <vertex>+                <position x="-4.02452" y="46.5332" z="-49.7147" />+                <normal x="0.817328" y="-0.523325" z="0.241051" />+                <texcoord u="1.5" v="0.166667" />+            </vertex>+            <vertex>+                <position x="-4.93155" y="45.1116" z="-57.9761" />+                <normal x="0.750134" y="-0.605929" z="-0.264858" />+                <texcoord u="1.5" v="0.0833335" />+            </vertex>+            <vertex>+                <position x="-14.2373" y="39.4908" z="-63.2673" />+                <normal x="0.525283" y="-0.591258" z="-0.611957" />+                <texcoord u="1.58333" v="1" />+            </vertex>+            <vertex>+                <position x="-21.4683" y="42.1111" z="-66.7228" />+                <normal x="-0.018867" y="-0.403484" z="-0.914792" />+                <texcoord u="1.58333" v="0.916667" />+            </vertex>+            <vertex>+                <position x="-28.6469" y="46.5018" z="-66.1892" />+                <normal x="-0.448605" y="-0.129925" z="-0.884236" />+                <texcoord u="1.58333" v="0.833333" />+            </vertex>+            <vertex>+                <position x="-33.8494" y="51.4864" z="-61.8095" />+                <normal x="-0.761768" y="0.177401" z="-0.623088" />+                <texcoord u="1.58333" v="0.75" />+            </vertex>+            <vertex>+                <position x="-35.682" y="55.7293" z="-54.7573" />+                <normal x="-0.877127" y="0.437466" z="-0.198172" />+                <texcoord u="1.58333" v="0.666667" />+            </vertex>+            <vertex>+                <position x="-33.6535" y="58.0936" z="-46.9221" />+                <normal x="-0.763271" y="0.581789" z="0.28096" />+                <texcoord u="1.58333" v="0.583333" />+            </vertex>+            <vertex>+                <position x="-28.3075" y="57.9458" z="-40.4035" />+                <normal x="-0.445678" y="0.571739" z="0.688829" />+                <texcoord u="1.58333" v="0.5" />+            </vertex>+            <vertex>+                <position x="-21.0764" y="55.3255" z="-36.948" />+                <normal x="-0.00164534" y="0.407874" z="0.913037" />+                <texcoord u="1.58333" v="0.416667" />+            </vertex>+            <vertex>+                <position x="-13.8978" y="50.9348" z="-37.4816" />+                <normal x="0.450492" y="0.131" z="0.883117" />+                <texcoord u="1.58333" v="0.333333" />+            </vertex>+            <vertex>+                <position x="-8.6953" y="45.9502" z="-41.8613" />+                <normal x="0.775759" y="-0.183415" z="0.603786" />+                <texcoord u="1.58333" v="0.25" />+            </vertex>+            <vertex>+                <position x="-6.86276" y="41.7073" z="-48.9135" />+                <normal x="0.879957" y="-0.446378" z="0.162553" />+                <texcoord u="1.58333" v="0.166667" />+            </vertex>+            <vertex>+                <position x="-8.89126" y="39.343" z="-56.7487" />+                <normal x="0.745465" y="-0.587163" z="-0.315469" />+                <texcoord u="1.58333" v="0.0833335" />+            </vertex>+            <vertex>+                <position x="-18.5988" y="32.9207" z="-60.2179" />+                <normal x="0.462968" y="-0.625346" z="-0.628174" />+                <texcoord u="1.66667" v="1" />+            </vertex>+            <vertex>+                <position x="-26.3414" y="35.0185" z="-62.8153" />+                <normal x="-0.125984" y="-0.481533" z="-0.867326" />+                <texcoord u="1.66667" v="0.916667" />+            </vertex>+            <vertex>+                <position x="-33.5503" y="39.2282" z="-61.6305" />+                <normal x="-0.560007" y="-0.22048" z="-0.798612" />+                <texcoord u="1.66667" v="0.833333" />+            </vertex>+            <vertex>+                <position x="-38.2941" y="44.4218" z="-56.9809" />+                <normal x="-0.848017" y="0.0981346" z="-0.520804" />+                <texcoord u="1.66667" v="0.75" />+            </vertex>+            <vertex>+                <position x="-39.3015" y="49.2076" z="-50.1125" />+                <normal x="-0.914526" y="0.390612" z="-0.105187" />+                <texcoord u="1.66667" v="0.666667" />+            </vertex>+            <vertex>+                <position x="-36.3027" y="52.3033" z="-42.8656" />+                <normal x="-0.740008" y="0.580085" z="0.340425" />+                <texcoord u="1.66667" v="0.583333" />+            </vertex>+            <vertex>+                <position x="-30.1012" y="52.8795" z="-37.182" />+                <normal x="-0.365889" y="0.61575" z="0.697837" />+                <texcoord u="1.66667" v="0.5" />+            </vertex>+            <vertex>+                <position x="-22.3586" y="50.7817" z="-34.5846" />+                <normal x="0.112961" y="0.485414" z="0.866956" />+                <texcoord u="1.66667" v="0.416667" />+            </vertex>+            <vertex>+                <position x="-15.1496" y="46.572" z="-35.7694" />+                <normal x="0.565263" y="0.22075" z="0.794825" />+                <texcoord u="1.66667" v="0.333333" />+            </vertex>+            <vertex>+                <position x="-10.4059" y="41.3784" z="-40.4189" />+                <normal x="0.858735" y="-0.105769" z="0.501385" />+                <texcoord u="1.66667" v="0.25" />+            </vertex>+            <vertex>+                <position x="-9.39844" y="36.5926" z="-47.2874" />+                <normal x="0.912611" y="-0.401901" z="0.0749445" />+                <texcoord u="1.66667" v="0.166667" />+            </vertex>+            <vertex>+                <position x="-12.3973" y="33.4969" z="-54.5343" />+                <normal x="0.721223" y="-0.587673" z="-0.366711" />+                <texcoord u="1.66667" v="0.0833335" />+            </vertex>+            <vertex>+                <position x="-22.3074" y="26.7006" z="-56.2718" />+                <normal x="0.39595" y="-0.662267" z="-0.636102" />+                <texcoord u="1.75" v="1" />+            </vertex>+            <vertex>+                <position x="-30.345" y="28.5468" z="-58.0277" />+                <normal x="-0.220717" y="-0.542094" z="-0.810813" />+                <texcoord u="1.75" v="0.916667" />+            </vertex>+            <vertex>+                <position x="-37.4235" y="32.7695" z="-56.2504" />+                <normal x="-0.649185" y="-0.281822" z="-0.706495" />+                <texcoord u="1.75" v="0.833333" />+            </vertex>+            <vertex>+                <position x="-41.6462" y="38.237" z="-51.4163" />+                <normal x="-0.907645" y="0.0524902" z="-0.416444" />+                <texcoord u="1.75" v="0.75" />+            </vertex>+            <vertex>+                <position x="-41.8817" y="43.4845" z="-44.8206" />+                <normal x="-0.927649" y="0.37313" z="-0.0155555" />+                <texcoord u="1.75" v="0.666667" />+            </vertex>+            <vertex>+                <position x="-38.0669" y="47.1058" z="-38.2306" />+                <normal x="-0.701466" y="0.595647" z="0.391344" />+                <texcoord u="1.75" v="0.583333" />+            </vertex>+            <vertex>+                <position x="-31.2239" y="48.1306" z="-33.4122" />+                <normal x="-0.28492" y="0.659984" z="0.695156" />+                <texcoord u="1.75" v="0.5" />+            </vertex>+            <vertex>+                <position x="-23.1863" y="46.2844" z="-31.6563" />+                <normal x="0.213327" y="0.545945" z="0.810207" />+                <texcoord u="1.75" v="0.416667" />+            </vertex>+            <vertex>+                <position x="-16.1078" y="42.0617" z="-33.4336" />+                <normal x="0.655401" y="0.281421" z="0.700893" />+                <texcoord u="1.75" v="0.333333" />+            </vertex>+            <vertex>+                <position x="-11.885" y="36.5942" z="-38.2677" />+                <normal x="0.915073" y="-0.0606733" z="0.398699" />+                <texcoord u="1.75" v="0.25" />+            </vertex>+            <vertex>+                <position x="-11.6495" y="31.3467" z="-44.8634" />+                <normal x="0.923091" y="-0.384482" z="-0.00871817" />+                <texcoord u="1.75" v="0.166667" />+            </vertex>+            <vertex>+                <position x="-15.4643" y="27.7254" z="-51.4534" />+                <normal x="0.68414" y="-0.6028" z="-0.41059" />+                <texcoord u="1.75" v="0.0833335" />+            </vertex>+            <vertex>+                <position x="-25.3859" y="20.8971" z="-51.6602" />+                <normal x="0.330367" y="-0.698417" z="-0.634879" />+                <texcoord u="1.83333" v="1" />+            </vertex>+            <vertex>+                <position x="-33.5651" y="22.676" z="-52.6759" />+                <normal x="-0.301092" y="-0.587395" z="-0.751206" />+                <texcoord u="1.83333" v="0.916667" />+            </vertex>+            <vertex>+                <position x="-40.4261" y="27.028" z="-50.4218" />+                <normal x="-0.718276" y="-0.320429" z="-0.61758" />+                <texcoord u="1.83333" v="0.833333" />+            </vertex>+            <vertex>+                <position x="-44.1306" y="32.7871" z="-45.5019" />+                <normal x="-0.94656" y="0.0312024" z="-0.321014" />+                <texcoord u="1.83333" v="0.75" />+            </vertex>+            <vertex>+                <position x="-43.6859" y="38.41" z="-39.2346" />+                <normal x="-0.924933" y="0.375144" z="0.0613693" />+                <texcoord u="1.83333" v="0.666667" />+            </vertex>+            <vertex>+                <position x="-39.2112" y="42.3901" z="-33.2991" />+                <normal x="-0.656627" y="0.620445" z="0.428822" />+                <texcoord u="1.83333" v="0.583333" />+            </vertex>+            <vertex>+                <position x="-31.9055" y="43.661" z="-29.2858" />+                <normal x="-0.209687" y="0.70054" z="0.682111" />+                <texcoord u="1.83333" v="0.5" />+            </vertex>+            <vertex>+                <position x="-23.7264" y="41.882" z="-28.2701" />+                <normal x="0.297318" y="0.591085" z="0.749814" />+                <texcoord u="1.83333" v="0.416667" />+            </vertex>+            <vertex>+                <position x="-16.8654" y="37.53" z="-30.5242" />+                <normal x="0.724168" y="0.319561" z="0.611115" />+                <texcoord u="1.83333" v="0.333333" />+            </vertex>+            <vertex>+                <position x="-13.1609" y="31.771" z="-35.444" />+                <normal x="0.951357" y="-0.0390563" z="0.305606" />+                <texcoord u="1.83333" v="0.25" />+            </vertex>+            <vertex>+                <position x="-13.6056" y="26.1481" z="-41.7114" />+                <normal x="0.919297" y="-0.385261" z="-0.0804132" />+                <texcoord u="1.83333" v="0.166667" />+            </vertex>+            <vertex>+                <position x="-18.0803" y="22.1679" z="-47.6469" />+                <normal x="0.641748" y="-0.626107" z="-0.442888" />+                <texcoord u="1.83333" v="0.0833335" />+            </vertex>+            <vertex>+                <position x="-27.8638" y="15.5243" z="-46.5895" />+                <normal x="0.271659" y="-0.731065" z="-0.625896" />+                <texcoord u="1.91667" v="1" />+            </vertex>+            <vertex>+                <position x="-36.0883" y="17.3354" z="-47.002" />+                <normal x="-0.365891" y="-0.620828" z="-0.693322" />+                <texcoord u="1.91667" v="0.916667" />+            </vertex>+            <vertex>+                <position x="-42.7077" y="21.8639" z="-44.3997" />+                <normal x="-0.76978" y="-0.343829" z="-0.537792" />+                <texcoord u="1.91667" v="0.833333" />+            </vertex>+            <vertex>+                <position x="-45.9481" y="27.8963" z="-39.4799" />+                <normal x="-0.970477" y="0.0244253" z="-0.239954" />+                <texcoord u="1.91667" v="0.75" />+            </vertex>+            <vertex>+                <position x="-44.9413" y="33.8162" z="-33.5608" />+                <normal x="-0.913953" y="0.386976" z="0.12223" />+                <texcoord u="1.91667" v="0.666667" />+            </vertex>+            <vertex>+                <position x="-39.9571" y="38.0374" z="-28.2285" />+                <normal x="-0.612925" y="0.647559" z="0.452758" />+                <texcoord u="1.91667" v="0.583333" />+            </vertex>+            <vertex>+                <position x="-32.331" y="39.4288" z="-24.9117" />+                <normal x="-0.145162" y="0.735274" z="0.662042" />+                <texcoord u="1.91667" v="0.5" />+            </vertex>+            <vertex>+                <position x="-24.1064" y="37.6176" z="-24.4992" />+                <normal x="0.364152" y="0.624092" z="0.691305" />+                <texcoord u="1.91667" v="0.416667" />+            </vertex>+            <vertex>+                <position x="-17.4871" y="33.0892" z="-27.1015" />+                <normal x="0.774782" y="0.34266" z="0.531316" />+                <texcoord u="1.91667" v="0.333333" />+            </vertex>+            <vertex>+                <position x="-14.2467" y="27.0568" z="-32.0213" />+                <normal x="0.973372" y="-0.0314996" z="0.227057" />+                <texcoord u="1.91667" v="0.25" />+            </vertex>+            <vertex>+                <position x="-15.2535" y="21.1369" z="-37.9404" />+                <normal x="0.908207" y="-0.39546" z="-0.137011" />+                <texcoord u="1.91667" v="0.166667" />+            </vertex>+            <vertex>+                <position x="-20.2376" y="16.9157" z="-43.2727" />+                <normal x="0.600633" y="-0.651703" z="-0.463167" />+                <texcoord u="1.91667" v="0.0833335" />+            </vertex>+            <vertex>+                <position x="-29.7893" y="10.5574" z="-41.2321" />+                <normal x="0.223326" y="-0.758734" z="-0.611922" />+                <texcoord u="2" v="1" />+            </vertex>+            <vertex>+                <position x="-38.009" y="12.4357" z="-41.1788" />+                <normal x="-0.41525" y="-0.645825" z="-0.640685" />+                <texcoord u="2" v="0.916667" />+            </vertex>+            <vertex>+                <position x="-44.4064" y="17.1388" z="-38.3416" />+                <normal x="-0.806571" y="-0.358511" z="-0.470014" />+                <texcoord u="2" v="0.833333" />+            </vertex>+            <vertex>+                <position x="-47.2672" y="23.4065" z="-33.4809" />+                <normal x="-0.984328" y="0.0242659" z="-0.17467" />+                <texcoord u="2" v="0.75" />+            </vertex>+            <vertex>+                <position x="-45.825" y="29.5593" z="-27.899" />+                <normal x="-0.900424" y="0.401427" z="0.16761" />+                <texcoord u="2" v="0.666667" />+            </vertex>+            <vertex>+                <position x="-40.4661" y="33.9486" z="-23.0916" />+                <normal x="-0.575216" y="0.672493" z="0.465704" />+                <texcoord u="2" v="0.583333" />+            </vertex>+            <vertex>+                <position x="-32.6265" y="35.3984" z="-20.3469" />+                <normal x="-0.0937563" y="0.763699" z="0.638728" />+                <texcoord u="2" v="0.5" />+            </vertex>+            <vertex>+                <position x="-24.4068" y="33.52" z="-20.4003" />+                <normal x="0.414587" y="0.648535" z="0.638373" />+                <texcoord u="2" v="0.416667" />+            </vertex>+            <vertex>+                <position x="-18.0094" y="28.817" z="-23.2374" />+                <normal x="0.810588" y="0.357212" z="0.464054" />+                <texcoord u="2" v="0.333333" />+            </vertex>+            <vertex>+                <position x="-15.1486" y="22.5493" z="-28.0982" />+                <normal x="0.985967" y="-0.0303684" z="0.164153" />+                <texcoord u="2" v="0.25" />+            </vertex>+            <vertex>+                <position x="-16.5908" y="16.3965" z="-33.68" />+                <normal x="0.895122" y="-0.408303" z="-0.179014" />+                <texcoord u="2" v="0.166667" />+            </vertex>+            <vertex>+                <position x="-21.9497" y="12.0072" z="-38.4874" />+                <normal x="0.565319" y="-0.675423" z="-0.473517" />+                <texcoord u="2" v="0.0833335" />+            </vertex>+            <vertex>+                <position x="-31.2247" y="5.95273" z="-35.7228" />+                <normal x="0.186659" y="-0.781111" z="-0.595839" />+                <texcoord u="2.08333" v="1" />+            </vertex>+            <vertex>+                <position x="-39.4208" y="7.8914" z="-35.3239" />+                <normal x="-0.450645" y="-0.665271" z="-0.595259" />+                <texcoord u="2.08333" v="0.916667" />+            </vertex>+            <vertex>+                <position x="-45.6411" y="12.738" z="-32.3385" />+                <normal x="-0.831684" y="-0.369193" z="-0.414727" />+                <texcoord u="2.08333" v="0.833333" />+            </vertex>+            <vertex>+                <position x="-48.2189" y="19.1939" z="-27.5665" />+                <normal x="-0.991961" y="0.0253829" z="-0.123974" />+                <texcoord u="2.08333" v="0.75" />+            </vertex>+            <vertex>+                <position x="-46.4634" y="25.5292" z="-22.2867" />+                <normal x="-0.888016" y="0.413969" z="0.200145" />+                <texcoord u="2.08333" v="0.666667" />+            </vertex>+            <vertex>+                <position x="-40.845" y="30.0464" z="-17.9137" />+                <normal x="-0.545941" y="0.692817" z="0.471118" />+                <texcoord u="2.08333" v="0.583333" />+            </vertex>+            <vertex>+                <position x="-32.8692" y="31.5351" z="-15.6193" />+                <normal x="-0.0558977" y="0.786169" z="0.615478" />+                <texcoord u="2.08333" v="0.5" />+            </vertex>+            <vertex>+                <position x="-24.673" y="29.5964" z="-16.0182" />+                <normal x="0.450301" y="0.667376" z="0.59316" />+                <texcoord u="2.08333" v="0.416667" />+            </vertex>+            <vertex>+                <position x="-18.4527" y="24.7498" z="-19.0036" />+                <normal x="0.834696" y="0.367896" z="0.409799" />+                <texcoord u="2.08333" v="0.333333" />+            </vertex>+            <vertex>+                <position x="-15.8749" y="18.2939" z="-23.7756" />+                <normal x="0.992806" y="-0.0305232" z="0.115776" />+                <texcoord u="2.08333" v="0.25" />+            </vertex>+            <vertex>+                <position x="-17.6305" y="11.9586" z="-29.0554" />+                <normal x="0.8834" y="-0.419544" z="-0.208777" />+                <texcoord u="2.08333" v="0.166667" />+            </vertex>+            <vertex>+                <position x="-23.2488" y="7.44144" z="-33.4284" />+                <normal x="0.538009" y="-0.695028" z="-0.476951" />+                <texcoord u="2.08333" v="0.0833335" />+            </vertex>+            <vertex>+                <position x="-32.2503" y="1.65234" z="-30.152" />+                <normal x="0.161144" y="-0.798335" z="-0.580253" />+                <texcoord u="2.16667" v="1" />+            </vertex>+            <vertex>+                <position x="-40.422" y="3.62568" z="-29.5003" />+                <normal x="-0.474294" y="-0.681008" z="-0.557919" />+                <texcoord u="2.16667" v="0.916667" />+            </vertex>+            <vertex>+                <position x="-46.5161" y="8.57474" z="-26.4241" />+                <normal x="-0.847934" y="-0.378538" z="-0.371102" />+                <texcoord u="2.16667" v="0.833333" />+            </vertex>+            <vertex>+                <position x="-48.8997" y="15.1734" z="-21.7476" />+                <normal x="-0.996023" y="0.025055" z="-0.0854987" />+                <texcoord u="2.16667" v="0.75" />+            </vertex>+            <vertex>+                <position x="-46.9342" y="21.6537" z="-16.7238" />+                <normal x="-0.878408" y="0.422624" z="0.223134" />+                <texcoord u="2.16667" v="0.666667" />+            </vertex>+            <vertex>+                <position x="-41.1462" y="26.279" z="-12.6989" />+                <normal x="-0.525214" y="0.707881" z="0.472287" />+                <texcoord u="2.16667" v="0.583333" />+            </vertex>+            <vertex>+                <position x="-33.0866" y="27.8102" z="-10.7514" />+                <normal x="-0.0300107" y="0.803516" z="0.594527" />+                <texcoord u="2.16667" v="0.5" />+            </vertex>+            <vertex>+                <position x="-24.915" y="25.8368" z="-11.403" />+                <normal x="0.474028" y="0.682653" z="0.556132" />+                <texcoord u="2.16667" v="0.416667" />+            </vertex>+            <vertex>+                <position x="-18.8209" y="20.8878" z="-14.4793" />+                <normal x="0.850112" y="0.37745" z="0.367208" />+                <texcoord u="2.16667" v="0.333333" />+            </vertex>+            <vertex>+                <position x="-16.4372" y="14.2891" z="-19.1558" />+                <normal x="0.996427" y="-0.0291529" z="0.0792716" />+                <texcoord u="2.16667" v="0.25" />+            </vertex>+            <vertex>+                <position x="-18.4027" y="7.80886" z="-24.1795" />+                <normal x="0.874624" y="-0.426995" z="-0.229584" />+                <texcoord u="2.16667" v="0.166667" />+            </vertex>+            <vertex>+                <position x="-24.1907" y="3.1835" z="-28.2044" />+                <normal x="0.519005" y="-0.709538" z="-0.476645" />+                <texcoord u="2.16667" v="0.0833335" />+            </vertex>+            <vertex>+                <position x="-32.9375" y="-2.39581" z="-24.585" />+                <normal x="0.145144" y="-0.810917" z="-0.566874" />+                <texcoord u="2.25" v="1" />+            </vertex>+            <vertex>+                <position x="-41.0921" y="-0.422096" z="-23.7481" />+                <normal x="-0.48874" y="-0.694176" z="-0.528444" />+                <texcoord u="2.25" v="0.916667" />+            </vertex>+            <vertex>+                <position x="-47.1089" y="4.58407" z="-20.6126" />+                <normal x="-0.85772" y="-0.387913" z="-0.337401" />+                <texcoord u="2.25" v="0.833333" />+            </vertex>+            <vertex>+                <position x="-49.3756" y="11.2813" z="-16.0187" />+                <normal x="-0.998164" y="0.0220259" z="-0.056428" />+                <texcoord u="2.25" v="0.75" />+            </vertex>+            <vertex>+                <position x="-47.2848" y="17.8751" z="-11.1973" />+                <normal x="-0.872088" y="0.42659" z="0.239759" />+                <texcoord u="2.25" v="0.666667" />+            </vertex>+            <vertex>+                <position x="-41.3968" y="22.5986" z="-7.44034" />+                <normal x="-0.51222" y="0.71757" z="0.471937" />+                <texcoord u="2.25" v="0.583333" />+            </vertex>+            <vertex>+                <position x="-33.2893" y="24.1861" z="-5.75448" />+                <normal x="-0.0141896" y="0.816332" z="0.577408" />+                <texcoord u="2.25" v="0.5" />+            </vertex>+            <vertex>+                <position x="-25.1346" y="22.2124" z="-6.59143" />+                <normal x="0.488214" y="0.695469" z="0.527229" />+                <texcoord u="2.25" v="0.416667" />+            </vertex>+            <vertex>+                <position x="-19.1179" y="17.2063" z="-9.72694" />+                <normal x="0.859115" y="0.387163" z="0.334703" />+                <texcoord u="2.25" v="0.333333" />+            </vertex>+            <vertex>+                <position x="-16.8512" y="10.509" z="-14.3208" />+                <normal x="0.998329" y="-0.0251369" z="0.0520237" />+                <texcoord u="2.25" v="0.25" />+            </vertex>+            <vertex>+                <position x="-18.942" y="3.91529" z="-19.1422" />+                <normal x="0.869117" y="-0.430014" z="-0.244384" />+                <texcoord u="2.25" v="0.166667" />+            </vertex>+            <vertex>+                <position x="-24.8299" y="-0.808216" z="-22.8992" />+                <normal x="0.507339" y="-0.718959" z="-0.475084" />+                <texcoord u="2.25" v="0.0833335" />+            </vertex>+            <vertex>+                <position x="-33.3595" y="-6.24744" z="-19.0562" />+                <normal x="0.136516" y="-0.819252" z="-0.556946" />+                <texcoord u="2.33333" v="1" />+            </vertex>+            <vertex>+                <position x="-41.5057" y="-4.30394" z="-18.0776" />+                <normal x="-0.496462" y="-0.705126" z="-0.506284" />+                <texcoord u="2.33333" v="0.916667" />+            </vertex>+            <vertex>+                <position x="-47.4829" y="0.71956" z="-14.8947" />+                <normal x="-0.863016" y="-0.397491" z="-0.311775" />+                <texcoord u="2.33333" v="0.833333" />+            </vertex>+            <vertex>+                <position x="-49.6897" y="7.47701" z="-10.3602" />+                <normal x="-0.999285" y="0.016397" z="-0.0340802" />+                <texcoord u="2.33333" v="0.75" />+            </vertex>+            <vertex>+                <position x="-47.5347" y="14.1578" z="-5.68923" />+                <normal x="-0.868564" y="0.426246" z="0.252806" />+                <texcoord u="2.33333" v="0.666667" />+            </vertex>+            <vertex>+                <position x="-41.5954" y="18.9717" z="-2.13332" />+                <normal x="-0.505139" y="0.722437" z="0.472144" />+                <texcoord u="2.33333" v="0.583333" />+            </vertex>+            <vertex>+                <position x="-33.4631" y="20.629" z="-0.645279" />+                <normal x="-0.00577099" y="0.825168" z="0.564858" />+                <texcoord u="2.33333" v="0.5" />+            </vertex>+            <vertex>+                <position x="-25.317" y="18.6855" z="-1.62383" />+                <normal x="0.495573" y="0.706217" z="0.505633" />+                <texcoord u="2.33333" v="0.416667" />+            </vertex>+            <vertex>+                <position x="-19.3397" y="13.662" z="-4.80677" />+                <normal x="0.863707" y="0.397233" z="0.310189" />+                <texcoord u="2.33333" v="0.333333" />+            </vertex>+            <vertex>+                <position x="-17.1329" y="6.90452" z="-9.34123" />+                <normal x="0.999341" y="-0.0184604" z="0.0312626" />+                <texcoord u="2.33333" v="0.25" />+            </vertex>+            <vertex>+                <position x="-19.2879" y="0.223764" z="-14.0122" />+                <normal x="0.866412" y="-0.428761" z="-0.255917" />+                <texcoord u="2.33333" v="0.166667" />+            </vertex>+            <vertex>+                <position x="-25.2272" y="-4.59019" z="-17.5681" />+                <normal x="0.501414" y="-0.723604" z="-0.474322" />+                <texcoord u="2.33333" v="0.0833335" />+            </vertex>+            <vertex>+                <position x="-33.5759" y="-9.95096" z="-13.5896" />+                <normal x="0.132863" y="-0.823739" z="-0.551182" />+                <texcoord u="2.41667" v="1" />+            </vertex>+            <vertex>+                <position x="-41.72" y="-8.06325" z="-12.492" />+                <normal x="-0.499821" y="-0.713829" z="-0.490538" />+                <texcoord u="2.41667" v="0.916667" />+            </vertex>+            <vertex>+                <position x="-47.6836" y="-3.05745" z="-9.25601" />+                <normal x="-0.865432" y="-0.406927" z="-0.292299" />+                <texcoord u="2.41667" v="0.833333" />+            </vertex>+            <vertex>+                <position x="-49.8688" y="3.72516" z="-4.74873" />+                <normal x="-0.999834" y="0.00872771" z="-0.0160111" />+                <texcoord u="2.41667" v="0.75" />+            </vertex>+            <vertex>+                <position x="-47.6901" y="10.4672" z="-0.177853" />+                <normal x="-0.867015" y="0.422223" z="0.264598" />+                <texcoord u="2.41667" v="0.666667" />+            </vertex>+            <vertex>+                <position x="-41.7312" y="15.3621" z="3.23184" />+                <normal x="-0.502091" y="0.723017" z="0.474501" />+                <texcoord u="2.41667" v="0.583333" />+            </vertex>+            <vertex>+                <position x="-33.5888" y="17.0983" z="4.56674" />+                <normal x="-0.00232316" y="0.830299" z="0.557313" />+                <texcoord u="2.41667" v="0.5" />+            </vertex>+            <vertex>+                <position x="-25.4447" y="15.2106" z="3.46915" />+                <normal x="0.498422" y="0.714823" z="0.490513" />+                <texcoord u="2.41667" v="0.416667" />+            </vertex>+            <vertex>+                <position x="-19.4811" y="10.2048" z="0.233173" />+                <normal x="0.865448" y="0.407239" z="0.291814" />+                <texcoord u="2.41667" v="0.333333" />+            </vertex>+            <vertex>+                <position x="-17.2959" y="3.42216" z="-4.27411" />+                <normal x="0.999845" y="-0.00978384" z="0.0146257" />+                <texcoord u="2.41667" v="0.25" />+            </vertex>+            <vertex>+                <position x="-19.4746" y="-3.31985" z="-8.84499" />+                <normal x="0.865606" y="-0.423963" z="-0.266422" />+                <texcoord u="2.41667" v="0.166667" />+            </vertex>+            <vertex>+                <position x="-25.4335" y="-8.21475" z="-12.2547" />+                <normal x="0.49927" y="-0.724074" z="-0.475865" />+                <texcoord u="2.41667" v="0.0833335" />+            </vertex>+            <vertex>+                <position x="-33.6381" y="-13.5539" z="-8.19752" />+                <normal x="0.131882" y="-0.824655" z="-0.550047" />+                <texcoord u="2.5" v="1" />+            </vertex>+            <vertex>+                <position x="-41.7826" y="-11.7385" z="-6.98648" />+                <normal x="-0.500974" y="-0.719969" z="-0.480281" />+                <texcoord u="2.5" v="0.916667" />+            </vertex>+            <vertex>+                <position x="-47.7447" y="-6.77773" z="-3.67922" />+                <normal x="-0.866347" y="-0.415481" z="-0.277163" />+                <texcoord u="2.5" v="0.833333" />+            </vertex>+            <vertex>+                <position x="-49.927" y="-0.000856817" z="0.838095" />+                <normal x="-1" y="2.24779e-06" z="8.21183e-06" />+                <texcoord u="2.5" v="0.75" />+            </vertex>+            <vertex>+                <position x="-47.7447" y="6.77625" z="5.35505" />+                <normal x="-0.866341" y="0.415484" z="0.277176" />+                <texcoord u="2.5" v="0.666667" />+            </vertex>+            <vertex>+                <position x="-41.7826" y="11.7377" z="8.66133" />+                <normal x="-0.500967" y="0.719969" z="0.480288" />+                <texcoord u="2.5" v="0.583333" />+            </vertex>+            <vertex>+                <position x="-33.6381" y="13.554" z="9.87103" />+                <normal x="-0.00132004" y="0.831893" z="0.554935" />+                <texcoord u="2.5" v="0.5" />+            </vertex>+            <vertex>+                <position x="-25.4937" y="11.7386" z="8.66" />+                <normal x="0.498986" y="0.720933" z="0.480904" />+                <texcoord u="2.5" v="0.416667" />+            </vertex>+            <vertex>+                <position x="-19.5315" y="6.7778" z="5.35274" />+                <normal x="0.865681" y="0.416447" z="0.277792" />+                <texcoord u="2.5" v="0.333333" />+            </vertex>+            <vertex>+                <position x="-17.3492" y="0.000938881" z="0.835421" />+                <normal x="1" y="-1.30049e-06" z="6.80853e-06" />+                <texcoord u="2.5" v="0.25" />+            </vertex>+            <vertex>+                <position x="-19.5315" y="-6.77617" z="-3.68154" />+                <normal x="0.865683" y="-0.41645" z="-0.277782" />+                <texcoord u="2.5" v="0.166667" />+            </vertex>+            <vertex>+                <position x="-25.4937" y="-11.7376" z="-6.98782" />+                <normal x="0.498986" y="-0.720936" z="-0.480899" />+                <texcoord u="2.5" v="0.0833335" />+            </vertex>+            <vertex>+                <position x="-33.5891" y="-17.0975" z="-2.89424" />+                <normal x="0.131119" y="-0.822217" z="-0.553866" />+                <texcoord u="2.58333" v="1" />+            </vertex>+            <vertex>+                <position x="-41.7314" y="-15.3622" z="-1.55781" />+                <normal x="-0.502114" y="-0.723009" z="-0.474489" />+                <texcoord u="2.58333" v="0.916667" />+            </vertex>+            <vertex>+                <position x="-47.6902" y="-10.4681" z="1.85328" />+                <normal x="-0.86703" y="-0.422207" z="-0.264576" />+                <texcoord u="2.58333" v="0.833333" />+            </vertex>+            <vertex>+                <position x="-49.8688" y="-3.7267" z="6.42503" />+                <normal x="-0.999833" y="-0.00870959" z="0.0160382" />+                <texcoord u="2.58333" v="0.75" />+            </vertex>+            <vertex>+                <position x="-47.6835" y="3.05578" z="10.9325" />+                <normal x="-0.865418" y="0.40694" z="0.292322" />+                <texcoord u="2.58333" v="0.666667" />+            </vertex>+            <vertex>+                <position x="-41.7198" y="8.06193" z="14.1678" />+                <normal x="-0.499802" y="0.713834" z="0.49055" />+                <texcoord u="2.58333" v="0.583333" />+            </vertex>+            <vertex>+                <position x="-33.5757" y="9.95035" z="15.2641" />+                <normal x="-0.000479097" y="0.829989" z="0.55778" />+                <texcoord u="2.58333" v="0.5" />+            </vertex>+            <vertex>+                <position x="-25.4334" y="8.21504" z="13.9277" />+                <normal x="0.499276" y="0.724069" z="0.475865" />+                <texcoord u="2.58333" v="0.416667" />+            </vertex>+            <vertex>+                <position x="-19.4746" y="3.32098" z="10.5166" />+                <normal x="0.865608" y="0.423957" z="0.266427" />+                <texcoord u="2.58333" v="0.333333" />+            </vertex>+            <vertex>+                <position x="-17.296" y="-3.42047" z="5.94487" />+                <normal x="0.999845" y="0.00977394" z="-0.0146152" />+                <texcoord u="2.58333" v="0.25" />+            </vertex>+            <vertex>+                <position x="-19.4813" y="-10.2029" z="1.43744" />+                <normal x="0.865446" y="-0.407252" z="-0.291803" />+                <texcoord u="2.58333" v="0.166667" />+            </vertex>+            <vertex>+                <position x="-25.445" y="-15.2091" z="-1.79789" />+                <normal x="0.498412" y="-0.714835" z="-0.490507" />+                <texcoord u="2.58333" v="0.0833335" />+            </vertex>+            <vertex>+                <position x="-33.4641" y="-20.6275" z="2.31681" />+                <normal x="0.128288" y="-0.816537" z="-0.562859" />+                <texcoord u="2.66667" v="1" />+            </vertex>+            <vertex>+                <position x="-41.5961" y="-18.9712" z="3.807" />+                <normal x="-0.505198" y="-0.722412" z="-0.472119" />+                <texcoord u="2.66667" v="0.916667" />+            </vertex>+            <vertex>+                <position x="-47.5351" y="-14.1583" z="7.36502" />+                <normal x="-0.868599" y="-0.426201" z="-0.252763" />+                <texcoord u="2.66667" v="0.833333" />+            </vertex>+            <vertex>+                <position x="-49.6896" y="-7.47848" z="12.0375" />+                <normal x="-0.999284" y="-0.0163497" z="0.0341322" />+                <texcoord u="2.66667" v="0.75" />+            </vertex>+            <vertex>+                <position x="-47.4823" y="-0.721514" z="16.5725" />+                <normal x="-0.862984" y="0.397526" z="0.311821" />+                <texcoord u="2.66667" v="0.666667" />+            </vertex>+            <vertex>+                <position x="-41.5048" y="4.30205" z="19.7548" />+                <normal x="-0.496413" y="0.705141" z="0.506311" />+                <texcoord u="2.66667" v="0.583333" />+            </vertex>+            <vertex>+                <position x="-33.3586" y="6.24614" z="20.7317" />+                <normal x="0.00272367" y="0.82453" z="0.565812" />+                <texcoord u="2.66667" v="0.5" />+            </vertex>+            <vertex>+                <position x="-25.2265" y="4.58985" z="19.2415" />+                <normal x="0.501451" y="0.723585" z="0.474311" />+                <texcoord u="2.66667" v="0.416667" />+            </vertex>+            <vertex>+                <position x="-19.2876" y="-0.223028" z="15.6835" />+                <normal x="0.866432" y="0.428729" z="0.255905" />+                <texcoord u="2.66667" v="0.333333" />+            </vertex>+            <vertex>+                <position x="-17.1331" y="-6.90288" z="11.011" />+                <normal x="0.999341" y="0.0184165" z="-0.0312702" />+                <texcoord u="2.66667" v="0.25" />+            </vertex>+            <vertex>+                <position x="-19.3403" y="-13.6598" z="6.47606" />+                <normal x="0.863684" y="-0.39728" z="-0.310191" />+                <texcoord u="2.66667" v="0.166667" />+            </vertex>+            <vertex>+                <position x="-25.3179" y="-18.6834" z="3.29376" />+                <normal x="0.495526" y="-0.706251" z="-0.505632" />+                <texcoord u="2.66667" v="0.0833335" />+            </vertex>+            <vertex>+                <position x="-33.2914" y="-24.1839" z="7.42505" />+                <normal x="0.120913" y="-0.807615" z="-0.577182" />+                <texcoord u="2.75" v="1" />+            </vertex>+            <vertex>+                <position x="-41.3985" y="-22.5975" z="9.1141" />+                <normal x="-0.512327" y="-0.717523" z="-0.471891" />+                <texcoord u="2.75" v="0.916667" />+            </vertex>+            <vertex>+                <position x="-47.2856" y="-17.8753" z="12.8742" />+                <normal x="-0.872147" y="-0.426508" z="-0.239689" />+                <texcoord u="2.75" v="0.833333" />+            </vertex>+            <vertex>+                <position x="-49.3752" y="-11.2828" z="17.6978" />+                <normal x="-0.998161" y="-0.0219393" z="0.0565127" />+                <texcoord u="2.75" v="0.75" />+            </vertex>+            <vertex>+                <position x="-47.1076" y="-4.58647" z="22.2924" />+                <normal x="-0.857659" y="0.387981" z="0.337479" />+                <texcoord u="2.75" v="0.666667" />+            </vertex>+            <vertex>+                <position x="-41.0901" y="0.419516" z="25.4269" />+                <normal x="-0.488638" y="0.694211" z="0.528493" />+                <texcoord u="2.75" v="0.583333" />+            </vertex>+            <vertex>+                <position x="-32.9354" y="2.39377" z="26.2615" />+                <normal x="0.0106398" y="0.81536" z="0.578857" />+                <texcoord u="2.75" v="0.5" />+            </vertex>+            <vertex>+                <position x="-24.8283" y="0.807281" z="24.5725" />+                <normal x="0.50744" y="0.718912" z="0.475048" />+                <texcoord u="2.75" v="0.416667" />+            </vertex>+            <vertex>+                <position x="-18.9412" y="-3.91484" z="20.8124" />+                <normal x="0.869175" y="0.429928" z="0.244329" />+                <texcoord u="2.75" v="0.333333" />+            </vertex>+            <vertex>+                <position x="-16.8515" y="-10.5073" z="15.9888" />+                <normal x="0.99833" y="0.0250263" z="-0.0520751" />+                <texcoord u="2.75" v="0.25" />+            </vertex>+            <vertex>+                <position x="-19.1192" y="-17.2037" z="11.3942" />+                <normal x="0.859055" y="-0.387269" z="-0.334734" />+                <texcoord u="2.75" v="0.166667" />+            </vertex>+            <vertex>+                <position x="-25.1366" y="-22.2097" z="8.25961" />+                <normal x="0.488107" y="-0.695538" z="-0.527236" />+                <texcoord u="2.75" v="0.0833335" />+            </vertex>+            <vertex>+                <position x="-33.0904" y="-27.8072" z="12.4211" />+                <normal x="0.106556" y="-0.795312" z="-0.596762" />+                <texcoord u="2.83333" v="1" />+            </vertex>+            <vertex>+                <position x="-41.1492" y="-26.2767" z="14.3724" />+                <normal x="-0.525399" y="-0.707803" z="-0.472199" />+                <texcoord u="2.83333" v="0.916667" />+            </vertex>+            <vertex>+                <position x="-46.9356" y="-21.6526" z="18.401" />+                <normal x="-0.878512" y="-0.422477" z="-0.223" />+                <texcoord u="2.83333" v="0.833333" />+            </vertex>+            <vertex>+                <position x="-48.8992" y="-15.1739" z="23.4275" />+                <normal x="-0.996014" y="-0.0248912" z="0.0856539" />+                <texcoord u="2.83333" v="0.75" />+            </vertex>+            <vertex>+                <position x="-46.5138" y="-8.57663" z="28.105" />+                <normal x="-0.847815" y="0.37867" z="0.37124" />+                <texcoord u="2.83333" v="0.666667" />+            </vertex>+            <vertex>+                <position x="-40.4185" y="-3.62842" z="31.1803" />+                <normal x="-0.474102" y="0.681076" z="0.557999" />+                <texcoord u="2.83333" v="0.583333" />+            </vertex>+            <vertex>+                <position x="-32.2466" y="-1.65519" z="31.8293" />+                <normal x="0.0257546" y="0.802159" z="0.596555" />+                <texcoord u="2.83333" v="0.5" />+            </vertex>+            <vertex>+                <position x="-24.1878" y="-3.18565" z="29.878" />+                <normal x="0.519176" y="0.709458" z="0.476576" />+                <texcoord u="2.83333" v="0.416667" />+            </vertex>+            <vertex>+                <position x="-18.4013" y="-7.80973" z="25.8494" />+                <normal x="0.874718" y="0.426856" z="0.229484" />+                <texcoord u="2.83333" v="0.333333" />+            </vertex>+            <vertex>+                <position x="-16.4378" y="-14.2884" z="20.8229" />+                <normal x="0.996425" y="0.0289794" z="-0.0793606" />+                <texcoord u="2.83333" v="0.25" />+            </vertex>+            <vertex>+                <position x="-18.8232" y="-20.8857" z="16.1454" />+                <normal x="0.850015" y="-0.377619" z="-0.367259" />+                <texcoord u="2.83333" v="0.166667" />+            </vertex>+            <vertex>+                <position x="-24.9185" y="-25.8339" z="13.0701" />+                <normal x="0.473855" y="-0.682768" z="-0.556138" />+                <texcoord u="2.83333" v="0.0833335" />+            </vertex>+            <vertex>+                <position x="-32.8751" y="-31.5311" z="17.2883" />+                <normal x="0.0824778" y="-0.77916" z="-0.621375" />+                <texcoord u="2.91667" v="1" />+            </vertex>+            <vertex>+                <position x="-40.8497" y="-30.0428" z="19.5874" />+                <normal x="-0.546229" y="-0.692699" z="-0.470958" />+                <texcoord u="2.91667" v="0.916667" />+            </vertex>+            <vertex>+                <position x="-46.4656" y="-25.5269" z="23.9651" />+                <normal x="-0.888172" y="-0.413743" z="-0.199919" />+                <texcoord u="2.91667" v="0.833333" />+            </vertex>+            <vertex>+                <position x="-48.218" y="-19.1936" z="29.2482" />+                <normal x="-0.991935" y="-0.0251323" z="0.124227" />+                <texcoord u="2.91667" v="0.75" />+            </vertex>+            <vertex>+                <position x="-45.6374" y="-12.7397" z="34.0213" />+                <normal x="-0.831486" y="0.369394" z="0.414945" />+                <texcoord u="2.91667" v="0.666667" />+            </vertex>+            <vertex>+                <position x="-39.4152" y="-7.89459" z="37.0054" />+                <normal x="-0.450335" y="0.665374" z="0.595379" />+                <texcoord u="2.91667" v="0.583333" />+            </vertex>+            <vertex>+                <position x="-31.2188" y="-5.95655" z="37.4008" />+                <normal x="0.0504044" y="0.78453" z="0.618039" />+                <texcoord u="2.91667" v="0.5" />+            </vertex>+            <vertex>+                <position x="-23.2442" y="-7.44485" z="35.1017" />+                <normal x="0.538279" y="0.694903" z="0.47683" />+                <texcoord u="2.91667" v="0.416667" />+            </vertex>+            <vertex>+                <position x="-17.6283" y="-11.9607" z="30.7241" />+                <normal x="0.883544" y="0.419326" z="0.208605" />+                <texcoord u="2.91667" v="0.333333" />+            </vertex>+            <vertex>+                <position x="-15.8759" y="-18.2941" z="25.4409" />+                <normal x="0.992797" y="0.0302477" z="-0.115925" />+                <texcoord u="2.91667" v="0.25" />+            </vertex>+            <vertex>+                <position x="-18.4565" y="-24.7479" z="20.6678" />+                <normal x="0.834537" y="-0.368167" z="-0.409879" />+                <texcoord u="2.91667" v="0.166667" />+            </vertex>+            <vertex>+                <position x="-24.6786" y="-29.593" z="17.6838" />+                <normal x="0.450024" y="-0.667563" z="-0.593159" />+                <texcoord u="2.91667" v="0.0833335" />+            </vertex>+            <vertex>+                <position x="-32.6361" y="-35.3926" z="22.015" />+                <normal x="0.0464634" y="-0.758408" z="-0.650122" />+                <texcoord u="3" v="1" />+            </vertex>+            <vertex>+                <position x="-40.4734" y="-33.9431" z="24.7663" />+                <normal x="-0.575637" y="-0.672299" z="-0.465463" />+                <texcoord u="3" v="0.916667" />+            </vertex>+            <vertex>+                <position x="-45.8281" y="-29.5555" z="29.5799" />+                <normal x="-0.900633" y="-0.401094" z="-0.167283" />+                <texcoord u="3" v="0.833333" />+            </vertex>+            <vertex>+                <position x="-47.2653" y="-23.4054" z="35.1661" />+                <normal x="-0.984276" y="-0.0239108" z="0.175014" />+                <texcoord u="3" v="0.75" />+            </vertex>+            <vertex>+                <position x="-44.3999" y="-17.1407" z="40.028" />+                <normal x="-0.806286" y="0.358792" z="0.470289" />+                <texcoord u="3" v="0.666667" />+            </vertex>+            <vertex>+                <position x="-37.9998" y="-12.4401" z="42.8628" />+                <normal x="-0.41482" y="0.645976" z="0.640812" />+                <texcoord u="3" v="0.583333" />+            </vertex>+            <vertex>+                <position x="-29.7798" y="-10.563" z="42.9111" />+                <normal x="0.0865812" y="0.761845" z="0.641947" />+                <texcoord u="3" v="0.5" />+            </vertex>+            <vertex>+                <position x="-21.9424" y="-12.0125" z="40.1598" />+                <normal x="0.565692" y="0.675266" z="0.473295" />+                <texcoord u="3" v="0.416667" />+            </vertex>+            <vertex>+                <position x="-16.5878" y="-16.4001" z="35.3462" />+                <normal x="0.895318" y="0.408005" z="0.178713" />+                <texcoord u="3" v="0.333333" />+            </vertex>+            <vertex>+                <position x="-15.1506" y="-22.5502" z="29.76" />+                <normal x="0.985934" y="0.0299735" z="-0.164427" />+                <texcoord u="3" v="0.25" />+            </vertex>+            <vertex>+                <position x="-18.0159" y="-28.8149" z="24.8982" />+                <normal x="0.810319" y="-0.357606" z="-0.464221" />+                <texcoord u="3" v="0.166667" />+            </vertex>+            <vertex>+                <position x="-24.4161" y="-33.5155" z="22.0633" />+                <normal x="0.414138" y="-0.648796" z="-0.638399" />+                <texcoord u="3" v="0.0833335" />+            </vertex>+            <vertex>+                <position x="-32.3416" y="-39.4228" z="26.5809" />+                <normal x="-0.00333613" y="-0.731881" z="-0.681424" />+                <texcoord u="3.08333" v="1" />+            </vertex>+            <vertex>+                <position x="-39.9647" y="-38.0323" z="29.905" />+                <normal x="-0.61337" y="-0.647366" z="-0.452431" />+                <texcoord u="3.08333" v="0.916667" />+            </vertex>+            <vertex>+                <position x="-44.9438" y="-33.8134" z="35.2438" />+                <normal x="-0.914155" y="-0.386632" z="-0.121805" />+                <texcoord u="3.08333" v="0.833333" />+            </vertex>+            <vertex>+                <position x="-45.9449" y="-27.8965" z="41.1669" />+                <normal x="-0.970376" y="-0.0240625" z="0.240398" />+                <texcoord u="3.08333" v="0.75" />+            </vertex>+            <vertex>+                <position x="-42.6996" y="-21.8671" z="46.0871" />+                <normal x="-0.76941" y="0.344108" z="0.538143" />+                <texcoord u="3.08333" v="0.666667" />+            </vertex>+            <vertex>+                <position x="-36.0776" y="-17.3407" z="48.6861" />+                <normal x="-0.365359" y="0.620968" z="0.693478" />+                <texcoord u="3.08333" v="0.583333" />+            </vertex>+            <vertex>+                <position x="-27.8532" y="-15.5301" z="48.2674" />+                <normal x="0.13532" y="0.733553" z="0.666024" />+                <texcoord u="3.08333" v="0.5" />+            </vertex>+            <vertex>+                <position x="-20.2301" y="-16.9206" z="44.9433" />+                <normal x="0.60106" y="0.651508" z="0.462888" />+                <texcoord u="3.08333" v="0.416667" />+            </vertex>+            <vertex>+                <position x="-15.2509" y="-21.1395" z="39.6045" />+                <normal x="0.908416" y="0.395101" z="0.13666" />+                <texcoord u="3.08333" v="0.333333" />+            </vertex>+            <vertex>+                <position x="-14.2499" y="-27.0563" z="33.6814" />+                <normal x="0.973322" y="0.0310197" z="-0.227336" />+                <texcoord u="3.08333" v="0.25" />+            </vertex>+            <vertex>+                <position x="-17.4951" y="-33.0858" z="28.7612" />+                <normal x="0.774483" y="-0.343146" z="-0.531438" />+                <texcoord u="3.08333" v="0.166667" />+            </vertex>+            <vertex>+                <position x="-24.1172" y="-37.6122" z="26.1622" />+                <normal x="0.363665" y="-0.624424" z="-0.691261" />+                <texcoord u="3.08333" v="0.0833335" />+            </vertex>+            <vertex>+                <position x="-31.9178" y="-43.6541" z="30.956" />+                <normal x="-0.0675289" y="-0.69829" z="-0.712623" />+                <texcoord u="3.16666" v="1" />+            </vertex>+            <vertex>+                <position x="-39.2191" y="-42.3856" z="34.978" />+                <normal x="-0.657104" y="-0.620245" z="-0.428382" />+                <texcoord u="3.16666" v="0.916667" />+            </vertex>+            <vertex>+                <position x="-43.6873" y="-38.409" z="40.9207" />+                <normal x="-0.925113" y="-0.374789" z="-0.0608209" />+                <texcoord u="3.16666" v="0.833333" />+            </vertex>+            <vertex>+                <position x="-44.1251" y="-32.7898" z="47.1919" />+                <normal x="-0.946384" y="-0.0308442" z="0.321568" />+                <texcoord u="3.16666" v="0.75" />+            </vertex>+            <vertex>+                <position x="-40.4153" y="-27.0338" z="52.1112" />+                <normal x="-0.717799" y="0.320692" z="0.617998" />+                <texcoord u="3.16666" v="0.666667" />+            </vertex>+            <vertex>+                <position x="-33.5518" y="-22.6832" z="54.3605" />+                <normal x="-0.300454" y="0.587519" z="0.751365" />+                <texcoord u="3.16666" v="0.583333" />+            </vertex>+            <vertex>+                <position x="-25.3737" y="-20.9037" z="53.337" />+                <normal x="0.196209" y="0.699346" z="0.687326" />+                <texcoord u="3.16666" v="0.5" />+            </vertex>+            <vertex>+                <position x="-18.0724" y="-22.1723" z="49.3151" />+                <normal x="0.642212" y="0.625891" z="0.44252" />+                <texcoord u="3.16666" v="0.416667" />+            </vertex>+            <vertex>+                <position x="-13.6042" y="-26.1488" z="43.3723" />+                <normal x="0.919509" y="0.384843" z="0.0799965" />+                <texcoord u="3.16666" v="0.333333" />+            </vertex>+            <vertex>+                <position x="-13.1664" y="-31.768" z="37.1011" />+                <normal x="0.95129" y="0.0384662" z="-0.30589" />+                <texcoord u="3.16666" v="0.25" />+            </vertex>+            <vertex>+                <position x="-16.8763" y="-37.524" z="32.1818" />+                <normal x="0.723836" y="-0.320181" z="-0.611184" />+                <texcoord u="3.16666" v="0.166667" />+            </vertex>+            <vertex>+                <position x="-23.7397" y="-41.8746" z="29.9325" />+                <normal x="0.296778" y="-0.591516" z="-0.749688" />+                <texcoord u="3.16666" v="0.0833335" />+            </vertex>+            <vertex>+                <position x="-31.2399" y="-48.1215" z="35.0836" />+                <normal x="-0.145021" y="-0.656588" z="-0.740177" />+                <texcoord u="3.25" v="1" />+            </vertex>+            <vertex>+                <position x="-38.076" y="-47.1007" z="39.9126" />+                <normal x="-0.702" y="-0.595403" z="-0.390757" />+                <texcoord u="3.25" v="0.916667" />+            </vertex>+            <vertex>+                <position x="-41.8816" y="-43.4848" z="46.5109" />+                <normal x="-0.927793" y="-0.372742" z="0.0162504" />+                <texcoord u="3.25" v="0.833333" />+            </vertex>+            <vertex>+                <position x="-41.6368" y="-38.2426" z="53.1104" />+                <normal x="-0.907363" y="-0.0521253" z="0.417104" />+                <texcoord u="3.25" v="0.75" />+            </vertex>+            <vertex>+                <position x="-37.4074" y="-32.7788" z="57.9429" />+                <normal x="-0.64858" y="0.282083" z="0.706947" />+                <texcoord u="3.25" v="0.666667" />+            </vertex>+            <vertex>+                <position x="-30.3265" y="-28.5573" z="59.7134" />+                <normal x="-0.219973" y="0.542232" z="0.810924" />+                <texcoord u="3.25" v="0.583333" />+            </vertex>+            <vertex>+                <position x="-22.2914" y="-26.7095" z="57.9476" />+                <normal x="0.266682" y="0.65971" z="0.702612" />+                <texcoord u="3.25" v="0.5" />+            </vertex>+            <vertex>+                <position x="-15.4553" y="-27.7302" z="53.1185" />+                <normal x="0.684617" y="0.602607" z="0.410078" />+                <texcoord u="3.25" v="0.416667" />+            </vertex>+            <vertex>+                <position x="-11.6497" y="-31.3462" z="46.5203" />+                <normal x="0.923289" y="0.384018" z="0.00817823" />+                <texcoord u="3.25" v="0.333333" />+            </vertex>+            <vertex>+                <position x="-11.8945" y="-36.5884" z="39.9207" />+                <normal x="0.914971" y="0.0599387" z="-0.399043" />+                <texcoord u="3.25" v="0.25" />+            </vertex>+            <vertex>+                <position x="-16.1239" y="-42.0522" z="35.0883" />+                <normal x="0.654993" y="-0.282221" z="-0.700954" />+                <texcoord u="3.25" v="0.166667" />+            </vertex>+            <vertex>+                <position x="-23.2048" y="-46.2736" z="33.3177" />+                <normal x="0.212659" y="-0.546484" z="-0.810019" />+                <texcoord u="3.25" v="0.0833335" />+            </vertex>+            <vertex>+                <position x="-30.1171" y="-52.8702" z="38.8555" />+                <normal x="-0.232072" y="-0.607052" z="-0.76002" />+                <texcoord u="3.33333" v="1" />+            </vertex>+            <vertex>+                <position x="-36.3096" y="-52.301" z="44.5496" />+                <normal x="-0.74044" y="-0.579924" z="-0.339761" />+                <texcoord u="3.33333" v="0.916667" />+            </vertex>+            <vertex>+                <position x="-39.2976" y="-49.2128" z="51.8042" />+                <normal x="-0.914548" y="-0.390354" z="0.105947" />+                <texcoord u="3.33333" v="0.833333" />+            </vertex>+            <vertex>+                <position x="-38.2804" y="-44.433" z="58.6755" />+                <normal x="-0.847607" y="-0.0979282" z="0.521509" />+                <texcoord u="3.33333" v="0.75" />+            </vertex>+            <vertex>+                <position x="-33.5306" y="-39.2425" z="63.3222" />+                <normal x="-0.559299" y="0.220604" z="0.799074" />+                <texcoord u="3.33333" v="0.666667" />+            </vertex>+            <vertex>+                <position x="-26.3208" y="-35.032" z="64.4994" />+                <normal x="-0.125192" y="0.481598" z="0.867404" />+                <texcoord u="3.33333" v="0.583333" />+            </vertex>+            <vertex>+                <position x="-18.583" y="-32.9297" z="61.8915" />+                <normal x="0.342166" y="0.616048" z="0.709512" />+                <texcoord u="3.33333" v="0.5" />+            </vertex>+            <vertex>+                <position x="-12.3905" y="-33.499" z="56.1974" />+                <normal x="0.721656" y="0.587492" z="0.366151" />+                <texcoord u="3.33333" v="0.416667" />+            </vertex>+            <vertex>+                <position x="-9.40245" y="-36.5872" z="48.9428" />+                <normal x="0.912802" y="0.401369" z="-0.0754635" />+                <texcoord u="3.33333" v="0.333333" />+            </vertex>+            <vertex>+                <position x="-10.4196" y="-41.3669" z="42.0716" />+                <normal x="0.85872" y="0.104833" z="-0.501608" />+                <texcoord u="3.33333" v="0.25" />+            </vertex>+            <vertex>+                <position x="-15.1695" y="-46.5574" z="37.4248" />+                <normal x="0.565002" y="-0.221799" z="-0.794719" />+                <texcoord u="3.33333" v="0.166667" />+            </vertex>+            <vertex>+                <position x="-22.3792" y="-50.7679" z="36.2477" />+                <normal x="0.112424" y="-0.48612" z="-0.866631" />+                <texcoord u="3.33333" v="0.0833335" />+            </vertex>+            <vertex>+                <position x="-28.3231" y="-57.9364" z="42.0792" />+                <normal x="-0.323368" y="-0.551719" z="-0.768791" />+                <texcoord u="3.41666" v="1" />+            </vertex>+            <vertex>+                <position x="-33.6572" y="-58.0947" z="48.6074" />+                <normal x="-0.76357" y="-0.581726" z="-0.280277" />+                <texcoord u="3.41666" v="0.916667" />+            </vertex>+            <vertex>+                <position x="-35.6728" y="-55.7406" z="56.4489" />+                <normal x="-0.877" y="-0.437382" z="0.198919" />+                <texcoord u="3.41666" v="0.833333" />+            </vertex>+            <vertex>+                <position x="-33.8298" y="-51.5048" z="63.5027" />+                <normal x="-0.761227" y="-0.177404" z="0.623748" />+                <texcoord u="3.41666" v="0.75" />+            </vertex>+            <vertex>+                <position x="-28.6221" y="-46.5224" z="67.8787" />+                <normal x="-0.447832" y="0.12988" z="0.884634" />+                <texcoord u="3.41666" v="0.666667" />+            </vertex>+            <vertex>+                <position x="-21.4451" y="-42.1282" z="68.4044" />+                <normal x="-0.0181059" y="0.403481" z="0.914809" />+                <texcoord u="3.41666" v="0.583333" />+            </vertex>+            <vertex>+                <position x="-14.2218" y="-39.4999" z="64.9388" />+                <normal x="0.417192" y="0.570882" z="0.707138" />+                <texcoord u="3.41666" v="0.5" />+            </vertex>+            <vertex>+                <position x="-8.88771" y="-39.3415" z="58.4106" />+                <normal x="0.745802" y="0.587034" z="0.314915" />+                <texcoord u="3.41666" v="0.416667" />+            </vertex>+            <vertex>+                <position x="-6.8721" y="-41.6957" z="50.5691" />+                <normal x="0.880181" y="0.44577" z="-0.163004" />+                <texcoord u="3.41666" v="0.333333" />+            </vertex>+            <vertex>+                <position x="-8.71505" y="-45.9314" z="43.5153" />+                <normal x="0.775963" y="0.182207" z="-0.603889" />+                <texcoord u="3.41666" v="0.25" />+            </vertex>+            <vertex>+                <position x="-13.9227" y="-50.9139" z="39.1393" />+                <normal x="0.450514" y="-0.132359" z="-0.882903" />+                <texcoord u="3.41666" v="0.166667" />+            </vertex>+            <vertex>+                <position x="-21.0998" y="-55.3081" z="38.6136" />+                <normal x="-0.00199152" y="-0.408743" z="-0.912647" />+                <texcoord u="3.41666" v="0.0833335" />+            </vertex>+            <vertex>+                <position x="-25.6194" y="-63.3243" z="44.4611" />+                <normal x="-0.412779" y="-0.49449" z="-0.764914" />+                <texcoord u="3.5" v="1" />+            </vertex>+            <vertex>+                <position x="-29.8494" y="-64.516" z="51.657" />+                <normal x="-0.763356" y="-0.606253" z="-0.223035" />+                <texcoord u="3.5" v="0.916667" />+            </vertex>+            <vertex>+                <position x="-30.7412" y="-63.1073" z="59.9223" />+                <normal x="-0.80802" y="-0.518846" z="0.279112" />+                <texcoord u="3.5" v="0.833333" />+            </vertex>+            <vertex>+                <position x="-28.0558" y="-59.4756" z="67.0423" />+                <normal x="-0.64336" y="-0.294159" z="0.706795" />+                <texcoord u="3.5" v="0.75" />+            </vertex>+            <vertex>+                <position x="-22.5128" y="-54.5941" z="71.1091" />+                <normal x="-0.312463" y="0.00837236" z="0.949893" />+                <texcoord u="3.5" v="0.666667" />+            </vertex>+            <vertex>+                <position x="-15.5973" y="-49.7706" z="71.0332" />+                <normal x="0.0996159" y="0.308682" z="0.945934" />+                <texcoord u="3.5" v="0.583333" />+            </vertex>+            <vertex>+                <position x="-9.16249" y="-46.2978" z="66.8348" />+                <normal x="0.487153" y="0.527194" z="0.696239" />+                <texcoord u="3.5" v="0.5" />+            </vertex>+            <vertex>+                <position x="-4.93245" y="-45.106" z="59.6389" />+                <normal x="0.750375" y="0.605845" z="0.264365" />+                <texcoord u="3.5" v="0.416667" />+            </vertex>+            <vertex>+                <position x="-4.04065" y="-46.5147" z="51.3736" />+                <normal x="0.81766" y="0.522617" z="-0.241462" />+                <texcoord u="3.5" v="0.333333" />+            </vertex>+            <vertex>+                <position x="-6.72604" y="-50.1464" z="44.2537" />+                <normal x="0.65947" y="0.296936" z="-0.6906" />+                <texcoord u="3.5" v="0.25" />+            </vertex>+            <vertex>+                <position x="-12.2691" y="-55.028" z="40.1868" />+                <normal x="0.308285" y="-0.0116236" z="-0.951223" />+                <texcoord u="3.5" v="0.166667" />+            </vertex>+            <vertex>+                <position x="-19.1845" y="-59.8514" z="40.2627" />+                <normal x="-0.12756" y="-0.315964" z="-0.940157" />+                <texcoord u="3.5" v="0.0833335" />+            </vertex>+            <vertex>+                <position x="-21.7935" y="-68.9633" z="45.6121" />+                <normal x="-0.494883" y="-0.44006" z="-0.749292" />+                <texcoord u="3.58333" v="1" />+            </vertex>+            <vertex>+                <position x="-24.6693" y="-71.4324" z="53.1439" />+                <normal x="-0.736201" y="-0.651679" z="-0.182547" />+                <texcoord u="3.58333" v="0.916667" />+            </vertex>+            <vertex>+                <position x="-24.3002" y="-71.1203" z="61.5618" />+                <normal x="-0.705441" y="-0.629015" z="0.32664" />+                <texcoord u="3.58333" v="0.833333" />+            </vertex>+            <vertex>+                <position x="-20.7851" y="-68.1106" z="68.6102" />+                <normal x="-0.493197" y="-0.440354" z="0.75023" />+                <texcoord u="3.58333" v="0.75" />+            </vertex>+            <vertex>+                <position x="-15.0658" y="-63.2099" z="72.4006" />+                <normal x="-0.153708" y="-0.136059" z="0.978704" />+                <texcoord u="3.58333" v="0.666667" />+            </vertex>+            <vertex>+                <position x="-8.67472" y="-57.7313" z="71.9172" />+                <normal x="0.226235" y="0.203252" z="0.952631" />+                <texcoord u="3.58333" v="0.583333" />+            </vertex>+            <vertex>+                <position x="-3.32448" y="-53.1427" z="67.2897" />+                <normal x="0.549213" y="0.488104" z="0.678321" />+                <texcoord u="3.58333" v="0.5" />+            </vertex>+            <vertex>+                <position x="-0.448607" y="-50.6736" z="59.7579" />+                <normal x="0.731324" y="0.643849" z="0.224997" />+                <texcoord u="3.58333" v="0.416667" />+            </vertex>+            <vertex>+                <position x="-0.817697" y="-50.9858" z="51.34" />+                <normal x="0.719881" y="0.62897" z="-0.293543" />+                <texcoord u="3.58333" v="0.333333" />+            </vertex>+            <vertex>+                <position x="-4.33285" y="-53.9954" z="44.2916" />+                <normal x="0.504636" y="0.443556" z="-0.740676" />+                <texcoord u="3.58333" v="0.25" />+            </vertex>+            <vertex>+                <position x="-10.0522" y="-58.8961" z="40.5012" />+                <normal x="0.138921" y="0.133106" z="-0.981317" />+                <texcoord u="3.58333" v="0.166667" />+            </vertex>+            <vertex>+                <position x="-16.4432" y="-64.3747" z="40.9846" />+                <normal x="-0.259384" y="-0.214381" z="-0.94168" />+                <texcoord u="3.58333" v="0.0833335" />+            </vertex>+            <vertex>+                <position x="-16.6931" y="-74.6662" z="45.0805" />+                <normal x="-0.56629" y="-0.3925" z="-0.724748" />+                <texcoord u="3.66666" v="1" />+            </vertex>+            <vertex>+                <position x="-18.0247" y="-78.4797" z="52.4818" />+                <normal x="-0.68605" y="-0.707256" z="-0.170657" />+                <texcoord u="3.66666" v="0.916667" />+            </vertex>+            <vertex>+                <position x="-16.3078" y="-79.2779" z="60.6982" />+                <normal x="-0.576012" y="-0.749643" z="0.325952" />+                <texcoord u="3.66666" v="0.833333" />+            </vertex>+            <vertex>+                <position x="-12.0024" y="-76.847" z="67.5282" />+                <normal x="-0.318259" y="-0.594876" z="0.738129" />+                <texcoord u="3.66666" v="0.75" />+            </vertex>+            <vertex>+                <position x="-6.26224" y="-71.8383" z="71.1417" />+                <normal x="0.0218808" y="-0.28454" z="0.958415" />+                <texcoord u="3.66666" v="0.666667" />+            </vertex>+            <vertex>+                <position x="-0.625283" y="-65.5938" z="70.5704" />+                <normal x="0.357434" y="0.099467" z="0.928627" />+                <texcoord u="3.66666" v="0.583333" />+            </vertex>+            <vertex>+                <position x="3.398" y="-59.7869" z="65.9675" />+                <normal x="0.601743" y="0.456631" z="0.655281" />+                <texcoord u="3.66666" v="0.5" />+            </vertex>+            <vertex>+                <position x="4.72958" y="-55.9734" z="58.5662" />+                <normal x="0.689412" y="0.694117" z="0.207156" />+                <texcoord u="3.66666" v="0.416667" />+            </vertex>+            <vertex>+                <position x="3.01267" y="-55.1752" z="50.3498" />+                <normal x="0.590177" y="0.748816" z="-0.301606" />+                <texcoord u="3.66666" v="0.333333" />+            </vertex>+            <vertex>+                <position x="-1.2927" y="-57.6061" z="43.5198" />+                <normal x="0.319497" y="0.600061" z="-0.733382" />+                <texcoord u="3.66666" v="0.25" />+            </vertex>+            <vertex>+                <position x="-7.0329" y="-62.6148" z="39.9063" />+                <normal x="-0.0459394" y="0.281207" z="-0.958547" />+                <texcoord u="3.66666" v="0.166667" />+            </vertex>+            <vertex>+                <position x="-12.6699" y="-68.8592" z="40.4776" />+                <normal x="-0.389705" y="-0.115667" z="-0.913647" />+                <texcoord u="3.66666" v="0.0833335" />+            </vertex>+            <vertex>+                <position x="-10.2495" y="-80.1066" z="42.4048" />+                <normal x="-0.625819" y="-0.354436" z="-0.694785" />+                <texcoord u="3.75" v="1" />+            </vertex>+            <vertex>+                <position x="-9.98864" y="-85.0989" z="49.1947" />+                <normal x="-0.62336" y="-0.758557" z="-0.189771" />+                <texcoord u="3.75" v="0.916667" />+            </vertex>+            <vertex>+                <position x="-6.93923" y="-86.8493" z="56.8584" />+                <normal x="-0.435059" y="-0.857401" z="0.27493" />+                <texcoord u="3.75" v="0.833333" />+            </vertex>+            <vertex>+                <position x="-1.9184" y="-84.8886" z="63.3424" />+                <normal x="-0.135109" y="-0.73108" z="0.66878" />+                <texcoord u="3.75" v="0.75" />+            </vertex>+            <vertex>+                <position x="3.72852" y="-79.7423" z="66.9092" />+                <normal x="0.200181" y="-0.413514" z="0.88822" />+                <texcoord u="3.75" v="0.666667" />+            </vertex>+            <vertex>+                <position x="8.48844" y="-72.7893" z="66.6032" />+                <normal x="0.48457" y="0.0120019" z="0.87467" />+                <texcoord u="3.75" v="0.583333" />+            </vertex>+            <vertex>+                <position x="11.0859" y="-65.8927" z="62.5064" />+                <normal x="0.643495" y="0.434594" z="0.630113" />+                <texcoord u="3.75" v="0.5" />+            </vertex>+            <vertex>+                <position x="10.825" y="-60.9003" z="55.7164" />+                <normal x="0.631978" y="0.744129" z="0.216511" />+                <texcoord u="3.75" v="0.416667" />+            </vertex>+            <vertex>+                <position x="7.77563" y="-59.15" z="48.0528" />+                <normal x="0.445615" y="0.857074" z="-0.258556" />+                <texcoord u="3.75" v="0.333333" />+            </vertex>+            <vertex>+                <position x="2.75481" y="-61.1107" z="41.5688" />+                <normal x="0.128479" y="0.735836" z="-0.66486" />+                <texcoord u="3.75" v="0.25" />+            </vertex>+            <vertex>+                <position x="-2.89211" y="-66.257" z="38.002" />+                <normal x="-0.225704" y="0.407552" z="-0.88485" />+                <texcoord u="3.75" v="0.166667" />+            </vertex>+            <vertex>+                <position x="-7.65203" y="-73.21" z="38.308" />+                <normal x="-0.509781" y="-0.0322335" z="-0.8597" />+                <texcoord u="3.75" v="0.0833335" />+            </vertex>+            <vertex>+                <position x="-2.50946" y="-84.8205" z="37.1883" />+                <normal x="-0.673794" y="-0.32691" z="-0.66267" />+                <texcoord u="3.83333" v="1" />+            </vertex>+            <vertex>+                <position x="-0.769848" y="-90.6617" z="43.0149" />+                <normal x="-0.559406" y="-0.795564" z="-0.232684" />+                <texcoord u="3.83333" v="0.916667" />+            </vertex>+            <vertex>+                <position x="3.48249" y="-93.0884" z="49.8796" />+                <normal x="-0.299533" y="-0.935822" z="0.185786" />+                <texcoord u="3.83333" v="0.833333" />+            </vertex>+            <vertex>+                <position x="9.10814" y="-91.4504" z="55.9429" />+                <normal x="0.0374056" y="-0.830033" z="0.556459" />+                <texcoord u="3.83333" v="0.75" />+            </vertex>+            <vertex>+                <position x="14.5997" y="-86.1866" z="59.5801" />+                <normal x="0.364847" y="-0.506425" z="0.781294" />+                <texcoord u="3.83333" v="0.666667" />+            </vertex>+            <vertex>+                <position x="18.4858" y="-78.7075" z="59.8168" />+                <normal x="0.597822" y="-0.0495593" z="0.800096" />+                <texcoord u="3.83333" v="0.583333" />+            </vertex>+            <vertex>+                <position x="19.725" y="-71.0171" z="56.5895" />+                <normal x="0.674181" y="0.421407" z="0.606544" />+                <texcoord u="3.83333" v="0.5" />+            </vertex>+            <vertex>+                <position x="17.9854" y="-65.1759" z="50.7629" />+                <normal x="0.569994" y="0.782631" z="0.250191" />+                <texcoord u="3.83333" v="0.416667" />+            </vertex>+            <vertex>+                <position x="13.7331" y="-62.7492" z="43.8982" />+                <normal x="0.307185" y="0.935433" z="-0.174935" />+                <texcoord u="3.83333" v="0.333333" />+            </vertex>+            <vertex>+                <position x="8.10741" y="-64.3872" z="37.8349" />+                <normal x="-0.0454007" y="0.832222" z="-0.552581" />+                <texcoord u="3.83333" v="0.25" />+            </vertex>+            <vertex>+                <position x="2.61583" y="-69.651" z="34.1976" />+                <normal x="-0.385021" y="0.497801" z="-0.777144" />+                <texcoord u="3.83333" v="0.166667" />+            </vertex>+            <vertex>+                <position x="-1.27022" y="-77.1301" z="33.961" />+                <normal x="-0.613855" y="0.0284887" z="-0.788905" />+                <texcoord u="3.83333" v="0.0833335" />+            </vertex>+            <vertex>+                <position x="6.30601" y="-88.234" z="29.2186" />+                <normal x="-0.711246" y="-0.309589" z="-0.631097" />+                <texcoord u="3.91666" v="1" />+            </vertex>+            <vertex>+                <position x="9.31744" y="-94.5609" z="33.9086" />+                <normal x="-0.500961" y="-0.815771" z="-0.289062" />+                <texcoord u="3.91666" v="0.916667" />+            </vertex>+            <vertex>+                <position x="14.5824" y="-97.3709" z="39.865" />+                <normal x="-0.180009" y="-0.980724" z="0.0760069" />+                <texcoord u="3.91666" v="0.833333" />+            </vertex>+            <vertex>+                <position x="20.6903" y="-95.9113" z="45.4915" />+                <normal x="0.187249" y="-0.887166" z="0.421752" />+                <texcoord u="3.91666" v="0.75" />+            </vertex>+            <vertex>+                <position x="26.0044" y="-90.573" z="49.2807" />+                <normal x="0.505522" y="-0.559927" z="0.656452" />+                <texcoord u="3.91666" v="0.666667" />+            </vertex>+            <vertex>+                <position x="29.1008" y="-82.7865" z="50.2172" />+                <normal x="0.691556" y="-0.08452" z="0.717361" />+                <texcoord u="3.91666" v="0.583333" />+            </vertex>+            <vertex>+                <position x="29.1498" y="-74.6381" z="48.05" />+                <normal x="0.695063" y="0.414581" z="0.587375" />+                <texcoord u="3.91666" v="0.5" />+            </vertex>+            <vertex>+                <position x="26.1384" y="-68.3113" z="43.36" />+                <normal x="0.51172" y="0.805113" z="0.299892" />+                <texcoord u="3.91666" v="0.416667" />+            </vertex>+            <vertex>+                <position x="20.8734" y="-65.5012" z="37.4036" />+                <normal x="0.186514" y="0.980035" z="-0.0688717" />+                <texcoord u="3.91666" v="0.333333" />+            </vertex>+            <vertex>+                <position x="14.7656" y="-66.9609" z="31.7771" />+                <normal x="-0.193064" y="0.887321" z="-0.418793" />+                <texcoord u="3.91666" v="0.25" />+            </vertex>+            <vertex>+                <position x="9.45149" y="-72.2992" z="27.9879" />+                <normal x="-0.51905" y="0.5506" z="-0.653779" />+                <texcoord u="3.91666" v="0.166667" />+            </vertex>+            <vertex>+                <position x="6.35508" y="-80.0857" z="27.0514" />+                <normal x="-0.700287" y="0.0653509" z="-0.710864" />+                <texcoord u="3.91666" v="0.0833335" />+            </vertex>+            <vertex>+                <position x="15.7708" y="-89.7517" z="18.5958" />+                <normal x="-0.739469" y="-0.300869" z="-0.602216" />+                <texcoord u="4" v="1" />+            </vertex>+            <vertex>+                <position x="19.8363" y="-96.2518" z="22.1051" />+                <normal x="-0.449782" y="-0.821022" z="-0.351594" />+                <texcoord u="4" v="0.916667" />+            </vertex>+            <vertex>+                <position x="25.9238" y="-99.1977" z="27.1408" />+                <normal x="-0.0789399" y="-0.996021" z="-0.0413493" />+                <texcoord u="4" v="0.833333" />+            </vertex>+            <vertex>+                <position x="32.4021" y="-97.8002" z="32.3535" />+                <normal x="0.311893" y="-0.90783" z="0.280297" />+                <texcoord u="4" v="0.75" />+            </vertex>+            <vertex>+                <position x="37.5355" y="-92.4337" z="36.3466" />+                <normal x="0.620577" y="-0.57983" z="0.527903" />+                <texcoord u="4" v="0.666667" />+            </vertex>+            <vertex>+                <position x="39.9483" y="-84.5362" z="38.0499" />+                <normal x="0.76594" y="-0.0978956" z="0.635415" />+                <texcoord u="4" v="0.583333" />+            </vertex>+            <vertex>+                <position x="38.9941" y="-76.2237" z="37.0073" />+                <normal x="0.708344" y="0.411336" z="0.57363" />+                <texcoord u="4" v="0.5" />+            </vertex>+            <vertex>+                <position x="34.9286" y="-69.7237" z="33.4979" />+                <normal x="0.460279" y="0.812331" z="0.358137" />+                <texcoord u="4" v="0.416667" />+            </vertex>+            <vertex>+                <position x="28.8411" y="-66.7777" z="28.4622" />+                <normal x="0.0853098" y="0.995293" z="0.0459822" />+                <texcoord u="4" v="0.333333" />+            </vertex>+            <vertex>+                <position x="22.3628" y="-68.1752" z="23.2495" />+                <normal x="-0.315165" y="0.907229" z="-0.278581" />+                <texcoord u="4" v="0.25" />+            </vertex>+            <vertex>+                <position x="17.2295" y="-73.5417" z="19.2565" />+                <normal x="-0.629158" y="0.571229" z="-0.527121" />+                <texcoord u="4" v="0.166667" />+            </vertex>+            <vertex>+                <position x="14.8166" y="-81.4392" z="17.5531" />+                <normal x="-0.770136" y="0.0814272" z="-0.632661" />+                <texcoord u="4" v="0.0833335" />+            </vertex>+            <vertex>+                <position x="25.2714" y="-88.8914" z="5.82307" />+                <normal x="-0.759996" y="-0.298464" z="-0.577343" />+                <texcoord u="4.08333" v="1" />+            </vertex>+            <vertex>+                <position x="30.2034" y="-95.3161" z="8.16699" />+                <normal x="-0.405001" y="-0.813578" z="-0.417212" />+                <texcoord u="4.08333" v="0.916667" />+            </vertex>+            <vertex>+                <position x="36.9516" y="-98.2058" z="12.315" />+                <normal x="0.00598946" y="-0.98704" z="-0.16036" />+                <texcoord u="4.08333" v="0.833333" />+            </vertex>+            <vertex>+                <position x="43.7079" y="-96.7862" z="17.1556" />+                <normal x="0.414633" y="-0.899264" z="0.139295" />+                <texcoord u="4.08333" v="0.75" />+            </vertex>+            <vertex>+                <position x="48.6619" y="-91.4377" z="21.3919" />+                <normal x="0.713688" y="-0.573557" z="0.402096" />+                <texcoord u="4.08333" v="0.666667" />+            </vertex>+            <vertex>+                <position x="50.4862" y="-83.5934" z="23.8886" />+                <normal x="0.824317" y="-0.0953452" z="0.558042" />+                <texcoord u="4.08333" v="0.583333" />+            </vertex>+            <vertex>+                <position x="48.6921" y="-75.3552" z="23.9768" />+                <normal x="0.716148" y="0.409459" z="0.565221" />+                <texcoord u="4.08333" v="0.5" />+            </vertex>+            <vertex>+                <position x="43.7601" y="-68.9306" z="21.6329" />+                <normal x="0.415563" y="0.806269" z="0.420996" />+                <texcoord u="4.08333" v="0.416667" />+            </vertex>+            <vertex>+                <position x="37.0119" y="-66.0409" z="17.4849" />+                <normal x="0.000816171" y="0.986578" z="0.16329" />+                <texcoord u="4.08333" v="0.333333" />+            </vertex>+            <vertex>+                <position x="30.2556" y="-67.4605" z="12.6443" />+                <normal x="-0.415941" y="0.898759" z="-0.138657" />+                <texcoord u="4.08333" v="0.25" />+            </vertex>+            <vertex>+                <position x="25.3016" y="-72.809" z="8.40803" />+                <normal x="-0.719213" y="0.566069" z="-0.402862" />+                <texcoord u="4.08333" v="0.166667" />+            </vertex>+            <vertex>+                <position x="23.4773" y="-80.6532" z="5.9113" />+                <normal x="-0.825929" y="0.0810837" z="-0.557913" />+                <texcoord u="4.08333" v="0.0833335" />+            </vertex>+            <vertex>+                <position x="34.0889" y="-85.4273" z="-8.19717" />+                <normal x="-0.774375" y="-0.300139" z="-0.557009" />+                <texcoord u="4.16666" v="1" />+            </vertex>+            <vertex>+                <position x="39.7375" y="-91.5704" z="-6.99345" />+                <normal x="-0.365216" y="-0.794173" z="-0.485702" />+                <texcoord u="4.16666" v="0.916667" />+            </vertex>+            <vertex>+                <position x="47.0178" y="-94.2516" z="-3.69149" />+                <normal x="0.0781486" y="-0.95676" z="-0.280184" />+                <texcoord u="4.16666" v="0.833333" />+            </vertex>+            <vertex>+                <position x="53.979" y="-92.7525" z="0.823963" />+                <normal x="0.500054" y="-0.865994" z="-0.000114388" />+                <texcoord u="4.16666" v="0.75" />+            </vertex>+            <vertex>+                <position x="58.7558" y="-87.4747" z="5.34299" />+                <normal x="0.789594" y="-0.546019" z="0.280008" />+                <texcoord u="4.16666" v="0.666667" />+            </vertex>+            <vertex>+                <position x="60.0683" y="-79.8324" z="8.65472" />+                <normal x="0.870421" y="-0.0807885" z="0.485634" />+                <texcoord u="4.16666" v="0.583333" />+            </vertex>+            <vertex>+                <position x="57.5648" y="-71.8734" z="9.87178" />+                <normal x="0.720163" y="0.407186" z="0.561751" />+                <texcoord u="4.16666" v="0.5" />+            </vertex>+            <vertex>+                <position x="51.9162" y="-65.7303" z="8.66807" />+                <normal x="0.376589" y="0.787777" z="0.48743" />+                <texcoord u="4.16666" v="0.416667" />+            </vertex>+            <vertex>+                <position x="44.6359" y="-63.0491" z="5.36611" />+                <normal x="-0.0703609" y="0.956889" z="0.281803" />+                <texcoord u="4.16666" v="0.333333" />+            </vertex>+            <vertex>+                <position x="37.6747" y="-64.5482" z="0.85066" />+                <normal x="-0.4999" y="0.866083" z="-0.000151552" />+                <texcoord u="4.16666" v="0.25" />+            </vertex>+            <vertex>+                <position x="32.8979" y="-69.826" z="-3.66837" />+                <normal x="-0.793366" y="0.53947" z="-0.282033" />+                <texcoord u="4.16666" v="0.166667" />+            </vertex>+            <vertex>+                <position x="31.5854" y="-77.4682" z="-6.9801" />+                <normal x="-0.870479" y="0.0677846" z="-0.487515" />+                <texcoord u="4.16666" v="0.0833335" />+            </vertex>+            <vertex>+                <position x="41.542" y="-79.4828" z="-22.3051" />+                <normal x="-0.783926" y="-0.303981" z="-0.541346" />+                <texcoord u="4.25" v="1" />+            </vertex>+            <vertex>+                <position x="47.7858" y="-85.1489" z="-22.2302" />+                <normal x="-0.329561" y="-0.761505" z="-0.558122" />+                <texcoord u="4.25" v="0.916667" />+            </vertex>+            <vertex>+                <position x="55.4956" y="-87.4865" z="-19.7425" />+                <normal x="0.139942" y="-0.904754" z="-0.402288" />+                <texcoord u="4.25" v="0.833333" />+            </vertex>+            <vertex>+                <position x="62.6057" y="-85.8693" z="-15.5086" />+                <normal x="0.571563" y="-0.808607" z="-0.139534" />+                <texcoord u="4.25" v="0.75" />+            </vertex>+            <vertex>+                <position x="67.2108" y="-80.7306" z="-10.6629" />+                <normal x="0.851883" y="-0.498635" z="0.160183" />+                <texcoord u="4.25" v="0.666667" />+            </vertex>+            <vertex>+                <position x="68.0771" y="-73.4473" z="-6.50378" />+                <normal x="0.90711" y="-0.0560246" z="0.417148" />+                <texcoord u="4.25" v="0.583333" />+            </vertex>+            <vertex>+                <position x="64.9724" y="-65.971" z="-4.14574" />+                <normal x="0.721736" y="0.402908" z="0.562816" />+                <texcoord u="4.25" v="0.5" />+            </vertex>+            <vertex>+                <position x="58.7286" y="-60.305" z="-4.22059" />+                <normal x="0.342793" y="0.755874" z="0.557807" />+                <texcoord u="4.25" v="0.416667" />+            </vertex>+            <vertex>+                <position x="51.0188" y="-57.9674" z="-6.70827" />+                <normal x="-0.130486" y="0.906028" z="0.402599" />+                <texcoord u="4.25" v="0.333333" />+            </vertex>+            <vertex>+                <position x="43.9087" y="-59.5846" z="-10.9422" />+                <normal x="-0.570198" y="0.809777" z="0.138333" />+                <texcoord u="4.25" v="0.25" />+            </vertex>+            <vertex>+                <position x="39.3036" y="-64.7232" z="-15.7879" />+                <normal x="-0.854687" y="0.492719" z="-0.163516" />+                <texcoord u="4.25" v="0.166667" />+            </vertex>+            <vertex>+                <position x="38.4373" y="-72.0065" z="-19.947" />+                <normal x="-0.905994" y="0.0432961" z="-0.42107" />+                <texcoord u="4.25" v="0.0833335" />+            </vertex>+            <vertex>+                <position x="47.1427" y="-71.5185" z="-35.3349" />+                <normal x="-0.789617" y="-0.3084" z="-0.530466" />+                <texcoord u="4.33333" v="1" />+            </vertex>+            <vertex>+                <position x="53.8695" y="-76.4913" z="-36.3911" />+                <normal x="-0.298162" y="-0.712201" z="-0.635507" />+                <texcoord u="4.33333" v="0.916667" />+            </vertex>+            <vertex>+                <position x="61.9189" y="-78.3438" z="-34.6971" />+                <normal x="0.191927" y="-0.827198" z="-0.528117" />+                <texcoord u="4.33333" v="0.833333" />+            </vertex>+            <vertex>+                <position x="69.1341" y="-76.5795" z="-30.7068" />+                <normal x="0.630344" y="-0.723846" z="-0.280559" />+                <texcoord u="4.33333" v="0.75" />+            </vertex>+            <vertex>+                <position x="73.5818" y="-71.6712" z="-25.4894" />+                <normal x="0.902116" y="-0.429525" z="0.0411581" />+                <texcoord u="4.33333" v="0.666667" />+            </vertex>+            <vertex>+                <position x="74.0702" y="-64.9342" z="-20.4428" />+                <normal x="0.935943" y="-0.0209496" z="0.351527" />+                <texcoord u="4.33333" v="0.583333" />+            </vertex>+            <vertex>+                <position x="70.4685" y="-58.1735" z="-16.9194" />+                <normal x="0.722018" y="0.395031" z="0.568014" />+                <texcoord u="4.33333" v="0.5" />+            </vertex>+            <vertex>+                <position x="63.7417" y="-53.2006" z="-15.8631" />+                <normal x="0.314594" y="0.707762" z="0.632537" />+                <texcoord u="4.33333" v="0.416667" />+            </vertex>+            <vertex>+                <position x="55.6922" y="-51.3482" z="-17.5571" />+                <normal x="-0.179991" y="0.830707" z="0.52681" />+                <texcoord u="4.33333" v="0.333333" />+            </vertex>+            <vertex>+                <position x="48.477" y="-53.1124" z="-21.5474" />+                <normal x="-0.627933" y="0.726844" z="0.278203" />+                <texcoord u="4.33333" v="0.25" />+            </vertex>+            <vertex>+                <position x="44.0293" y="-58.0207" z="-26.7649" />+                <normal x="-0.904494" y="0.423972" z="-0.046237" />+                <texcoord u="4.33333" v="0.166667" />+            </vertex>+            <vertex>+                <position x="43.5409" y="-64.7578" z="-31.8114" />+                <normal x="-0.933608" y="0.00761887" z="-0.358216" />+                <texcoord u="4.33333" v="0.0833335" />+            </vertex>+            <vertex>+                <position x="50.691" y="-62.2019" z="-46.3756" />+                <normal x="-0.792039" y="-0.31188" z="-0.524791" />+                <texcoord u="4.41666" v="1" />+            </vertex>+            <vertex>+                <position x="57.7754" y="-66.2212" z="-48.5553" />+                <normal x="-0.272507" y="-0.641035" z="-0.717506" />+                <texcoord u="4.41666" v="0.916667" />+            </vertex>+            <vertex>+                <position x="66.0693" y="-67.4238" z="-47.628" />+                <normal x="0.232241" y="-0.717478" z="-0.656727" />+                <texcoord u="4.41666" v="0.833333" />+            </vertex>+            <vertex>+                <position x="73.3503" y="-65.4874" z="-43.8422" />+                <normal x="0.674762" y="-0.605438" z="-0.422067" />+                <texcoord u="4.41666" v="0.75" />+            </vertex>+            <vertex>+                <position x="77.6675" y="-60.931" z="-38.2123" />+                <normal x="0.939385" y="-0.334281" z="-0.0762336" />+                <texcoord u="4.41666" v="0.666667" />+            </vertex>+            <vertex>+                <position x="77.8641" y="-54.9754" z="-32.2469" />+                <normal x="0.956984" y="0.0259939" z="0.288975" />+                <texcoord u="4.41666" v="0.583333" />+            </vertex>+            <vertex>+                <position x="73.8874" y="-49.2163" z="-27.5444" />+                <normal x="0.72202" y="0.382018" z="0.576844" />+                <texcoord u="4.41666" v="0.5" />+            </vertex>+            <vertex>+                <position x="66.803" y="-45.1971" z="-25.3647" />+                <normal x="0.293644" y="0.639325" z="0.71066" />+                <texcoord u="4.41666" v="0.416667" />+            </vertex>+            <vertex>+                <position x="58.5091" y="-43.9945" z="-26.292" />+                <normal x="-0.217135" y="0.725257" z="0.653341" />+                <texcoord u="4.41666" v="0.333333" />+            </vertex>+            <vertex>+                <position x="51.2281" y="-45.9308" z="-30.0778" />+                <normal x="-0.671734" y="0.611389" z="0.418302" />+                <texcoord u="4.41666" v="0.25" />+            </vertex>+            <vertex>+                <position x="46.9109" y="-50.4873" z="-35.7076" />+                <normal x="-0.941902" y="0.328816" z="0.0685595" />+                <texcoord u="4.41666" v="0.166667" />+            </vertex>+            <vertex>+                <position x="46.7143" y="-56.4429" z="-41.6731" />+                <normal x="-0.953077" y="-0.0405458" z="-0.299999" />+                <texcoord u="4.41666" v="0.0833335" />+            </vertex>+            <vertex>+                <position x="52.2686" y="-52.2227" z="-54.9205" />+                <normal x="-0.791596" y="-0.312408" z="-0.525145" />+                <texcoord u="4.5" v="1" />+            </vertex>+            <vertex>+                <position x="59.5496" y="-54.9773" z="-58.1599" />+                <normal x="-0.255957" y="-0.542293" z="-0.800253" />+                <texcoord u="4.5" v="0.916667" />+            </vertex>+            <vertex>+                <position x="67.9704" y="-55.3404" z="-57.9307" />+                <normal x="0.256181" y="-0.568763" z="-0.781588" />+                <texcoord u="4.5" v="0.833333" />+            </vertex>+            <vertex>+                <position x="75.2747" y="-53.2147" z="-54.2942" />+                <normal x="0.700151" y="-0.446961" z="-0.55679" />+                <texcoord u="4.5" v="0.75" />+            </vertex>+            <vertex>+                <position x="79.5052" y="-49.1699" z="-48.2249" />+                <normal x="0.960233" y="-0.208212" z="-0.186012" />+                <texcoord u="4.5" v="0.666667" />+            </vertex>+            <vertex>+                <position x="79.5284" y="-44.2897" z="-41.3491" />+                <normal x="0.968688" y="0.0867741" z="0.232623" />+                <texcoord u="4.5" v="0.583333" />+            </vertex>+            <vertex>+                <position x="75.3381" y="-39.8817" z="-35.509" />+                <normal x="0.722263" y="0.362614" z="0.588938" />+                <texcoord u="4.5" v="0.5" />+            </vertex>+            <vertex>+                <position x="68.0571" y="-37.1272" z="-32.2696" />+                <normal x="0.282211" y="0.546211" z="0.788676" />+                <texcoord u="4.5" v="0.416667" />+            </vertex>+            <vertex>+                <position x="59.6363" y="-36.7641" z="-32.4989" />+                <normal x="-0.238599" y="0.583092" z="0.776579" />+                <texcoord u="4.5" v="0.333333" />+            </vertex>+            <vertex>+                <position x="52.332" y="-38.8897" z="-36.1353" />+                <normal x="-0.697984" y="0.456272" z="0.551936" />+                <texcoord u="4.5" v="0.25" />+            </vertex>+            <vertex>+                <position x="48.1015" y="-42.9346" z="-42.2046" />+                <normal x="-0.963673" y="0.202169" z="0.174532" />+                <texcoord u="4.5" v="0.166667" />+            </vertex>+            <vertex>+                <position x="48.0783" y="-47.8148" z="-49.0805" />+                <normal x="-0.96275" y="-0.102219" z="-0.250328" />+                <texcoord u="4.5" v="0.0833335" />+            </vertex>+            <vertex>+                <position x="52.1499" y="-42.1765" z="-60.838" />+                <normal x="-0.788718" y="-0.307059" z="-0.532578" />+                <texcoord u="4.58333" v="1" />+            </vertex>+            <vertex>+                <position x="59.4199" y="-43.3542" z="-64.9435" />+                <normal x="-0.252621" y="-0.413307" z="-0.874849" />+                <texcoord u="4.58333" v="0.916667" />+            </vertex>+            <vertex>+                <position x="67.8201" y="-42.6954" z="-65.2544" />+                <normal x="0.258046" y="-0.379483" z="-0.888484" />+                <texcoord u="4.58333" v="0.833333" />+            </vertex>+            <vertex>+                <position x="75.0998" y="-40.3766" z="-61.6873" />+                <normal x="0.700687" y="-0.247851" z="-0.669035" />+                <texcoord u="4.58333" v="0.75" />+            </vertex>+            <vertex>+                <position x="79.3083" y="-37.0191" z="-55.198" />+                <normal x="0.960049" y="-0.0514732" z="-0.275057" />+                <texcoord u="4.58333" v="0.666667" />+            </vertex>+            <vertex>+                <position x="79.318" y="-33.5226" z="-47.5254" />+                <normal x="0.968578" y="0.160724" z="0.189802" />+                <texcoord u="4.58333" v="0.583333" />+            </vertex>+            <vertex>+                <position x="75.1263" y="-30.824" z="-40.7253" />+                <normal x="0.722742" y="0.335484" z="0.604231" />+                <texcoord u="4.58333" v="0.5" />+            </vertex>+            <vertex>+                <position x="67.8563" y="-29.6463" z="-36.6198" />+                <normal x="0.282605" y="0.425952" z="0.859476" />+                <texcoord u="4.58333" v="0.416667" />+            </vertex>+            <vertex>+                <position x="59.4561" y="-30.3051" z="-36.309" />+                <normal x="-0.240333" y="0.400514" z="0.884211" />+                <texcoord u="4.58333" v="0.333333" />+            </vertex>+            <vertex>+                <position x="52.1764" y="-32.6239" z="-39.8761" />+                <normal x="-0.701676" y="0.258037" z="0.664129" />+                <texcoord u="4.58333" v="0.25" />+            </vertex>+            <vertex>+                <position x="47.9679" y="-35.9814" z="-46.3653" />+                <normal x="-0.965147" y="0.043353" z="0.258094" />+                <texcoord u="4.58333" v="0.166667" />+            </vertex>+            <vertex>+                <position x="47.9582" y="-39.4779" z="-54.0379" />+                <normal x="-0.960402" y="-0.175124" z="-0.216703" />+                <texcoord u="4.58333" v="0.0833335" />+            </vertex>+            <vertex>+                <position x="50.7058" y="-32.465" z="-64.2983" />+                <normal x="-0.784458" y="-0.291858" z="-0.547214" />+                <texcoord u="4.66666" v="1" />+            </vertex>+            <vertex>+                <position x="57.7425" y="-31.8625" z="-68.9046" />+                <normal x="-0.264775" y="-0.259346" z="-0.928781" />+                <texcoord u="4.66666" v="0.916667" />+            </vertex>+            <vertex>+                <position x="65.9658" y="-30.0897" z="-69.477" />+                <normal x="0.235485" y="-0.160421" z="-0.958547" />+                <texcoord u="4.66666" v="0.833333" />+            </vertex>+            <vertex>+                <position x="73.1725" y="-27.6214" z="-65.8623" />+                <normal x="0.674265" y="-0.0209894" z="-0.738191" />+                <texcoord u="4.66666" v="0.75" />+            </vertex>+            <vertex>+                <position x="77.4314" y="-25.1192" z="-59.0289" />+                <normal x="0.937163" y="0.124559" z="-0.325899" />+                <texcoord u="4.66666" v="0.666667" />+            </vertex>+            <vertex>+                <position x="77.6015" y="-23.2535" z="-50.8079" />+                <normal x="0.955456" y="0.24068" z="0.170813" />+                <texcoord u="4.66666" v="0.583333" />+            </vertex>+            <vertex>+                <position x="73.637" y="-22.5241" z="-43.4021" />+                <normal x="0.722653" y="0.298552" z="0.623409" />+                <texcoord u="4.66666" v="0.5" />+            </vertex>+            <vertex>+                <position x="66.6004" y="-23.1265" z="-38.7959" />+                <normal x="0.294618" y="0.280432" z="0.913541" />+                <texcoord u="4.66666" v="0.416667" />+            </vertex>+            <vertex>+                <position x="58.377" y="-24.8994" z="-38.2235" />+                <normal x="-0.221151" y="0.182113" z="0.958085" />+                <texcoord u="4.66666" v="0.333333" />+            </vertex>+            <vertex>+                <position x="51.1704" y="-27.3676" z="-41.8382" />+                <normal x="-0.679956" y="0.0251702" z="0.732821" />+                <texcoord u="4.66666" v="0.25" />+            </vertex>+            <vertex>+                <position x="46.9114" y="-29.8698" z="-48.6716" />+                <normal x="-0.943848" y="-0.135788" z="0.301185" />+                <texcoord u="4.66666" v="0.166667" />+            </vertex>+            <vertex>+                <position x="46.7414" y="-31.7356" z="-56.8925" />+                <normal x="-0.945814" y="-0.249827" z="-0.207418" />+                <texcoord u="4.66666" v="0.0833335" />+            </vertex>+            <vertex>+                <position x="48.3128" y="-23.3178" z="-65.6206" />+                <normal x="-0.780208" y="-0.263089" z="-0.567502" />+                <texcoord u="4.75" v="1" />+            </vertex>+            <vertex>+                <position x="54.9566" y="-20.9588" z="-70.2455" />+                <normal x="-0.289002" y="-0.0937731" z="-0.952725" />+                <texcoord u="4.75" v="0.916667" />+            </vertex>+            <vertex>+                <position x="62.893" y="-18.1521" z="-70.7257" />+                <normal x="0.194732" y="0.0658943" z="-0.97864" />+                <texcoord u="4.75" v="0.833333" />+            </vertex>+            <vertex>+                <position x="69.9955" y="-15.6499" z="-66.9325" />+                <normal x="0.627939" y="0.207737" z="-0.750026" />+                <texcoord u="4.75" v="0.75" />+            </vertex>+            <vertex>+                <position x="74.3609" y="-14.1226" z="-59.8823" />+                <normal x="0.897418" y="0.296899" z="-0.326331" />+                <texcoord u="4.75" v="0.666667" />+            </vertex>+            <vertex>+                <position x="74.8196" y="-13.9794" z="-51.4643" />+                <normal x="0.932369" y="0.311825" z="0.182904" />+                <texcoord u="4.75" v="0.583333" />+            </vertex>+            <vertex>+                <position x="71.2487" y="-15.2587" z="-43.9339" />+                <normal x="0.721504" y="0.248292" z="0.646362" />+                <texcoord u="4.75" v="0.5" />+            </vertex>+            <vertex>+                <position x="64.6049" y="-17.6178" z="-39.3091" />+                <normal x="0.314677" y="0.118132" z="0.941819" />+                <texcoord u="4.75" v="0.416667" />+            </vertex>+            <vertex>+                <position x="56.6685" y="-20.4244" z="-38.8289" />+                <normal x="-0.185718" y="-0.0521143" z="0.98122" />+                <texcoord u="4.75" v="0.333333" />+            </vertex>+            <vertex>+                <position x="49.566" y="-22.9266" z="-42.622" />+                <normal x="-0.637331" y="-0.213534" z="0.740414" />+                <texcoord u="4.75" v="0.25" />+            </vertex>+            <vertex>+                <position x="45.2005" y="-24.454" z="-49.6722" />+                <normal x="-0.90505" y="-0.308106" z="0.293182" />+                <texcoord u="4.75" v="0.166667" />+            </vertex>+            <vertex>+                <position x="44.7418" y="-24.5971" z="-58.0902" />+                <normal x="-0.923232" y="-0.311225" z="-0.225346" />+                <texcoord u="4.75" v="0.0833335" />+            </vertex>+            <vertex>+                <position x="45.3038" y="-14.8368" z="-65.1649" />+                <normal x="-0.776934" y="-0.218706" z="-0.590373" />+                <texcoord u="4.83333" v="1" />+            </vertex>+            <vertex>+                <position x="51.5242" y="-10.9852" z="-69.356" />+                <normal x="-0.316884" y="0.0686853" z="-0.945974" />+                <texcoord u="4.83333" v="0.916667" />+            </vertex>+            <vertex>+                <position x="59.1559" y="-7.40085" z="-69.4257" />+                <normal x="0.149159" y="0.275573" z="-0.949637" />+                <texcoord u="4.83333" v="0.833333" />+            </vertex>+            <vertex>+                <position x="66.1539" y="-5.04416" z="-65.3552" />+                <normal x="0.57653" y="0.410759" z="-0.706322" />+                <texcoord u="4.83333" v="0.75" />+            </vertex>+            <vertex>+                <position x="70.6431" y="-4.54663" z="-58.2353" />+                <normal x="0.853369" y="0.440652" z="-0.278545" />+                <texcoord u="4.83333" v="0.666667" />+            </vertex>+            <vertex>+                <position x="71.4206" y="-6.04157" z="-49.9736" />+                <normal x="0.9066" y="0.357895" z="0.223581" />+                <texcoord u="4.83333" v="0.583333" />+            </vertex>+            <vertex>+                <position x="68.2782" y="-9.12841" z="-42.784" />+                <normal x="0.719755" y="0.181842" z="0.66999" />+                <texcoord u="4.83333" v="0.5" />+            </vertex>+            <vertex>+                <position x="62.0578" y="-12.98" z="-38.5928" />+                <normal x="0.336573" y="-0.0470189" z="0.940483" />+                <texcoord u="4.83333" v="0.416667" />+            </vertex>+            <vertex>+                <position x="54.4262" y="-16.5644" z="-38.5231" />+                <normal x="-0.145235" y="-0.271525" z="0.95141" />+                <texcoord u="4.83333" v="0.333333" />+            </vertex>+            <vertex>+                <position x="47.4282" y="-18.9211" z="-42.5936" />+                <normal x="-0.587884" y="-0.421351" z="0.690547" />+                <texcoord u="4.83333" v="0.25" />+            </vertex>+            <vertex>+                <position x="42.939" y="-19.4186" z="-49.7135" />+                <normal x="-0.861876" y="-0.446135" z="0.24111" />+                <texcoord u="4.83333" v="0.166667" />+            </vertex>+            <vertex>+                <position x="42.1614" y="-17.9237" z="-57.9752" />+                <normal x="-0.899831" y="-0.34666" z="-0.264823" />+                <texcoord u="4.83333" v="0.0833335" />+            </vertex>+            <vertex>+                <position x="41.9464" y="-7.05276" z="-63.2675" />+                <normal x="-0.774682" y="-0.1593" z="-0.611957" />+                <texcoord u="4.91666" v="1" />+            </vertex>+            <vertex>+                <position x="47.8313" y="-2.10063" z="-66.7228" />+                <normal x="-0.339988" y="0.218047" z="-0.914803" />+                <texcoord u="4.91666" v="0.916667" />+            </vertex>+            <vertex>+                <position x="55.2231" y="1.92065" z="-66.189" />+                <normal x="0.111792" y="0.453431" z="-0.884253" />+                <texcoord u="4.91666" v="0.833333" />+            </vertex>+            <vertex>+                <position x="62.1412" y="3.93357" z="-61.8093" />+                <normal x="0.534526" y="0.570982" z="-0.623106" />+                <texcoord u="4.91666" v="0.75" />+            </vertex>+            <vertex>+                <position x="66.7319" y="3.39878" z="-54.757" />+                <normal x="0.81743" y="0.540862" z="-0.198183" />+                <texcoord u="4.91666" v="0.666667" />+            </vertex>+            <vertex>+                <position x="67.7651" y="0.459565" z="-46.922" />+                <normal x="0.885487" y="0.3701" z="0.280959" />+                <texcoord u="4.91666" v="0.583333" />+            </vertex>+            <vertex>+                <position x="64.964" y="-4.0965" z="-40.4035" />+                <normal x="0.717982" y="0.100068" z="0.688831" />+                <texcoord u="4.91666" v="0.5" />+            </vertex>+            <vertex>+                <position x="59.0791" y="-9.04864" z="-36.9482" />+                <normal x="0.354049" y="-0.202564" z="0.913027" />+                <texcoord u="4.91666" v="0.416667" />+            </vertex>+            <vertex>+                <position x="51.6873" y="-13.0699" z="-37.482" />+                <normal x="-0.111801" y="-0.455697" z="0.883086" />+                <texcoord u="4.91666" v="0.333333" />+            </vertex>+            <vertex>+                <position x="44.7692" y="-15.0828" z="-41.8618" />+                <normal x="-0.546721" y="-0.580159" z="0.603748" />+                <texcoord u="4.91666" v="0.25" />+            </vertex>+            <vertex>+                <position x="40.1785" y="-14.548" z="-48.914" />+                <normal x="-0.826546" y="-0.538892" z="0.162531" />+                <texcoord u="4.91666" v="0.166667" />+            </vertex>+            <vertex>+                <position x="39.1453" y="-11.6088" z="-56.7491" />+                <normal x="-0.881223" y="-0.352024" z="-0.315475" />+                <texcoord u="4.91666" v="0.0833335" />+            </vertex>+            <vertex>+                <position x="38.4373" y="0.00825075" z="-60.2181" />+                <normal x="-0.773054" y="-0.0882621" z="-0.628169" />+                <texcoord u="5" v="1" />+            </vertex>+            <vertex>+                <position x="44.1252" y="5.66474" z="-62.8156" />+                <normal x="-0.354033" y="0.34988" z="-0.86732" />+                <texcoord u="5" v="0.916667" />+            </vertex>+            <vertex>+                <position x="51.3753" y="9.8033" z="-61.6308" />+                <normal x="0.089055" y="0.595228" z="-0.798607" />+                <texcoord u="5" v="0.833333" />+            </vertex>+            <vertex>+                <position x="58.2448" y="11.315" z="-56.9813" />+                <normal x="0.508987" y="0.685343" z="-0.520804" />+                <texcoord u="5" v="0.75" />+            </vertex>+            <vertex>+                <position x="62.8932" y="9.79482" z="-50.1128" />+                <normal x="0.795536" y="0.596706" z="-0.105193" />+                <texcoord u="5" v="0.666667" />+            </vertex>+            <vertex>+                <position x="64.075" y="5.65005" z="-42.8658" />+                <normal x="0.872369" y="0.350841" z="0.340417" />+                <texcoord u="5" v="0.583333" />+            </vertex>+            <vertex>+                <position x="61.4733" y="-0.00870421" z="-37.1821" />+                <normal x="0.7162" y="0.00902315" z="0.697836" />+                <texcoord u="5" v="0.5" />+            </vertex>+            <vertex>+                <position x="55.7855" y="-5.66519" z="-34.5846" />+                <normal x="0.363903" y="-0.340496" z="0.86697" />+                <texcoord u="5" v="0.416667" />+            </vertex>+            <vertex>+                <position x="48.5354" y="-9.80375" z="-35.7694" />+                <normal x="-0.0914572" y="-0.599872" z="0.794852" />+                <texcoord u="5" v="0.333333" />+            </vertex>+            <vertex>+                <position x="41.6658" y="-11.3155" z="-40.4189" />+                <normal x="-0.520972" y="-0.69078" z="0.501409" />+                <texcoord u="5" v="0.25" />+            </vertex>+            <vertex>+                <position x="37.0174" y="-9.79528" z="-47.2874" />+                <normal x="-0.80437" y="-0.589382" z="0.0749577" />+                <texcoord u="5" v="0.166667" />+            </vertex>+            <vertex>+                <position x="35.8357" y="-5.65051" z="-54.5344" />+                <normal x="-0.869557" y="-0.330753" z="-0.366705" />+                <texcoord u="5" v="0.0833335" />+            </vertex>+            <vertex>+                <position x="34.9049" y="6.33092" z="-56.272" />+                <normal x="-0.77151" y="-0.0117858" z="-0.636108" />+                <texcoord u="5.08333" v="1" />+            </vertex>+            <vertex>+                <position x="40.5225" y="12.3687" z="-58.0276" />+                <normal x="-0.359109" y="0.462173" z="-0.810825" />+                <texcoord u="5.08333" v="0.916667" />+            </vertex>+            <vertex>+                <position x="47.7186" y="16.3875" z="-56.2502" />+                <normal x="0.0805271" y="0.703107" z="-0.70651" />+                <texcoord u="5.08333" v="0.833333" />+            </vertex>+            <vertex>+                <position x="54.565" y="17.3106" z="-51.416" />+                <normal x="0.499282" y="0.75979" z="-0.416458" />+                <texcoord u="5.08333" v="0.75" />+            </vertex>+            <vertex>+                <position x="59.2272" y="14.8906" z="-44.8204" />+                <normal x="0.786969" y="0.616796" z="-0.0155632" />+                <texcoord u="5.08333" v="0.666667" />+            </vertex>+            <vertex>+                <position x="60.456" y="9.77601" z="-38.2306" />+                <normal x="0.866584" y="0.309652" z="0.391342" />+                <texcoord u="5.08333" v="0.583333" />+            </vertex>+            <vertex>+                <position x="57.922" y="3.33718" z="-33.4124" />+                <normal x="0.714023" y="-0.0832642" z="0.695153" />+                <texcoord u="5.08333" v="0.5" />+            </vertex>+            <vertex>+                <position x="52.3044" y="-2.70056" z="-31.6568" />+                <normal x="0.366134" y="-0.457743" z="0.810196" />+                <texcoord u="5.08333" v="0.416667" />+            </vertex>+            <vertex>+                <position x="45.1083" y="-6.71941" z="-33.4342" />+                <normal x="-0.0839892" y="-0.70832" z="0.700877" />+                <texcoord u="5.08333" v="0.333333" />+            </vertex>+            <vertex>+                <position x="38.2619" y="-7.64252" z="-38.2684" />+                <normal x="-0.510082" y="-0.762146" z="0.398685" />+                <texcoord u="5.08333" v="0.25" />+            </vertex>+            <vertex>+                <position x="33.5997" y="-5.22255" z="-44.864" />+                <normal x="-0.794512" y="-0.607185" z="-0.00872401" />+                <texcoord u="5.08333" v="0.166667" />+            </vertex>+            <vertex>+                <position x="32.3709" y="-0.107914" z="-51.4538" />+                <normal x="-0.864105" y="-0.291096" z="-0.410593" />+                <texcoord u="5.08333" v="0.0833335" />+            </vertex>+            <vertex>+                <position x="31.4181" y="11.8977" z="-51.6606" />+                <normal x="-0.77004" y="0.0630863" z="-0.634869" />+                <texcoord u="5.16666" v="1" />+            </vertex>+            <vertex>+                <position x="37.0482" y="18.0916" z="-52.6766" />+                <normal x="-0.35817" y="0.554442" z="-0.751205" />+                <texcoord u="5.16666" v="0.916667" />+            </vertex>+            <vertex>+                <position x="44.2476" y="21.8576" z="-50.4228" />+                <normal x="0.081622" y="0.782259" z="-0.617583" />+                <texcoord u="5.16666" v="0.833333" />+            </vertex>+            <vertex>+                <position x="51.0873" y="22.1867" z="-45.5029" />+                <normal x="0.500287" y="0.804151" z="-0.32102" />+                <texcoord u="5.16666" v="0.75" />+            </vertex>+            <vertex>+                <position x="55.7346" y="18.9905" z="-39.2354" />+                <normal x="0.78734" y="0.613459" z="0.0613602" />+                <texcoord u="5.16666" v="0.666667" />+            </vertex>+            <vertex>+                <position x="56.9442" y="13.1257" z="-33.2995" />+                <normal x="0.865633" y="0.258458" z="0.428811" />+                <texcoord u="5.16666" v="0.583333" />+            </vertex>+            <vertex>+                <position x="54.3921" y="6.16355" z="-29.2858" />+                <normal x="0.711541" y="-0.168641" z="0.682107" />+                <texcoord u="5.16666" v="0.5" />+            </vertex>+            <vertex>+                <position x="48.762" y="-0.0303545" z="-28.2698" />+                <normal x="0.363262" y="-0.552992" z="0.749827" />+                <texcoord u="5.16666" v="0.416667" />+            </vertex>+            <vertex>+                <position x="41.5626" y="-3.79639" z="-30.5236" />+                <normal x="-0.0853045" y="-0.786905" z="0.611149" />+                <texcoord u="5.16666" v="0.333333" />+            </vertex>+            <vertex>+                <position x="34.7229" y="-4.12544" z="-35.4435" />+                <normal x="-0.509479" y="-0.804369" z="0.30565" />+                <texcoord u="5.16666" v="0.25" />+            </vertex>+            <vertex>+                <position x="30.0756" y="-0.929337" z="-41.711" />+                <normal x="-0.793286" y="-0.60352" z="-0.0803753" />+                <texcoord u="5.16666" v="0.166667" />+            </vertex>+            <vertex>+                <position x="28.866" y="4.93552" z="-47.6469" />+                <normal x="-0.863104" y="-0.242738" z="-0.442864" />+                <texcoord u="5.16666" v="0.0833335" />+            </vertex>+            <vertex>+                <position x="28.004" y="16.7301" z="-46.59" />+                <normal x="-0.768959" y="0.130227" z="-0.625893" />+                <texcoord u="5.25" v="1" />+            </vertex>+            <vertex>+                <position x="33.6846" y="22.9474" z="-47.0026" />+                <normal x="-0.354735" y="0.62725" z="-0.69334" />+                <texcoord u="5.25" v="0.916667" />+            </vertex>+            <vertex>+                <position x="40.9159" y="26.416" z="-44.4003" />+                <normal x="0.0870943" y="0.838547" z="-0.537823" />+                <texcoord u="5.25" v="0.833333" />+            </vertex>+            <vertex>+                <position x="47.7603" y="26.2064" z="-39.4803" />+                <normal x="0.506366" y="0.82825" z="-0.23999" />+                <texcoord u="5.25" v="0.75" />+            </vertex>+            <vertex>+                <position x="52.3837" y="22.3749" z="-33.5611" />+                <normal x="0.792097" y="0.598039" z="0.122197" />+                <texcoord u="5.25" v="0.666667" />+            </vertex>+            <vertex>+                <position x="53.5475" y="15.948" z="-28.2286" />+                <normal x="0.867272" y="0.207055" z="0.452732" />+                <texcoord u="5.25" v="0.583333" />+            </vertex>+            <vertex>+                <position x="50.9396" y="8.6479" z="-24.9117" />+                <normal x="0.709371" y="-0.241903" z="0.662024" />+                <texcoord u="5.25" v="0.5" />+            </vertex>+            <vertex>+                <position x="45.259" y="2.43059" z="-24.4991" />+                <normal x="0.358437" y="-0.6274" z="0.691298" />+                <texcoord u="5.25" v="0.416667" />+            </vertex>+            <vertex>+                <position x="38.0277" y="-1.03799" z="-27.1014" />+                <normal x="-0.0906039" y="-0.842312" z="0.531321" />+                <texcoord u="5.25" v="0.333333" />+            </vertex>+            <vertex>+                <position x="31.1834" y="-0.828423" z="-32.0213" />+                <normal x="-0.513936" y="-0.827228" z="0.227074" />+                <texcoord u="5.25" v="0.25" />+            </vertex>+            <vertex>+                <position x="26.5599" y="3.00313" z="-37.9406" />+                <normal x="-0.796565" y="-0.588828" z="-0.136988" />+                <texcoord u="5.25" v="0.166667" />+            </vertex>+            <vertex>+                <position x="25.3962" y="9.43" z="-43.2731" />+                <normal x="-0.864707" y="-0.194352" z="-0.463151" />+                <texcoord u="5.25" v="0.0833335" />+            </vertex>+            <vertex>+                <position x="24.6654" y="20.8801" z="-41.2332" />+                <normal x="-0.768772" y="0.185914" z="-0.611903" />+                <texcoord u="5.33333" v="1" />+            </vertex>+            <vertex>+                <position x="30.4015" y="27.0598" z="-41.1802" />+                <normal x="-0.351722" y="0.6825" z="-0.640691" />+                <texcoord u="5.33333" v="0.916667" />+            </vertex>+            <vertex>+                <position x="37.6729" y="30.2493" z="-38.343" />+                <normal x="0.0927534" y="0.877761" z="-0.470035" />+                <texcoord u="5.33333" v="0.833333" />+            </vertex>+            <vertex>+                <position x="44.5311" y="29.5939" z="-33.482" />+                <normal x="0.513132" y="0.840342" z="-0.174701" />+                <texcoord u="5.33333" v="0.75" />+            </vertex>+            <vertex>+                <position x="49.1386" y="25.2693" z="-27.8996" />+                <normal x="0.79783" y="0.579125" z="0.167576" />+                <texcoord u="5.33333" v="0.666667" />+            </vertex>+            <vertex>+                <position x="50.2607" y="18.4342" z="-23.0916" />+                <normal x="0.870005" y="0.161971" z="0.465678" />+                <texcoord u="5.33333" v="0.583333" />+            </vertex>+            <vertex>+                <position x="47.5969" y="10.9201" z="-20.3463" />+                <normal x="0.708295" y="-0.300587" z="0.638722" />+                <texcoord u="5.33333" v="0.5" />+            </vertex>+            <vertex>+                <position x="41.8608" y="4.74042" z="-20.3993" />+                <normal x="0.35441" y="-0.683261" z="0.638395" />+                <texcoord u="5.33333" v="0.416667" />+            </vertex>+            <vertex>+                <position x="34.5894" y="1.55093" z="-23.2364" />+                <normal x="-0.0958811" y="-0.880578" z="0.4641" />+                <texcoord u="5.33333" v="0.333333" />+            </vertex>+            <vertex>+                <position x="27.7312" y="2.20629" z="-28.0975" />+                <normal x="-0.519242" y="-0.838703" z="0.164209" />+                <texcoord u="5.33333" v="0.25" />+            </vertex>+            <vertex>+                <position x="23.1237" y="6.53091" z="-33.6799" />+                <normal x="-0.801146" y="-0.571084" z="-0.178963" />+                <texcoord u="5.33333" v="0.166667" />+            </vertex>+            <vertex>+                <position x="22.0016" y="13.366" z="-38.4879" />+                <normal x="-0.867603" y="-0.151917" z="-0.473483" />+                <texcoord u="5.33333" v="0.0833335" />+            </vertex>+            <vertex>+                <position x="21.3954" y="24.4264" z="-35.7236" />+                <normal x="-0.769811" y="0.228878" z="-0.595824" />+                <texcoord u="5.41666" v="1" />+            </vertex>+            <vertex>+                <position x="27.1721" y="30.5554" z="-35.3247" />+                <normal x="-0.350842" y="0.722891" z="-0.595263" />+                <texcoord u="5.41666" v="0.916667" />+            </vertex>+            <vertex>+                <position x="34.4794" y="33.5194" z="-32.3392" />+                <normal x="0.0960817" y="0.904852" z="-0.414742" />+                <texcoord u="5.41666" v="0.833333" />+            </vertex>+            <vertex>+                <position x="41.3591" y="32.5244" z="-27.5671" />+                <normal x="0.517933" y="0.846386" z="-0.123997" />+                <texcoord u="5.41666" v="0.75" />+            </vertex>+            <vertex>+                <position x="45.9679" y="27.8368" z="-22.2869" />+                <normal x="0.802497" y="0.562094" z="0.200122" />+                <texcoord u="5.41666" v="0.666667" />+            </vertex>+            <vertex>+                <position x="47.0709" y="20.7127" z="-17.9136" />+                <normal x="0.872969" y="0.126434" z="0.471104" />+                <texcoord u="5.41666" v="0.583333" />+            </vertex>+            <vertex>+                <position x="44.3725" y="13.0611" z="-15.619" />+                <normal x="0.70881" y="-0.344637" z="0.615479" />+                <texcoord u="5.41666" v="0.5" />+            </vertex>+            <vertex>+                <position x="38.5957" y="6.93211" z="-16.0178" />+                <normal x="0.352839" y="-0.723638" z="0.593172" />+                <texcoord u="5.41666" v="0.416667" />+            </vertex>+            <vertex>+                <position x="31.2885" y="3.96805" z="-19.0033" />+                <normal x="-0.0987204" y="-0.90681" z="0.409816" />+                <texcoord u="5.41666" v="0.333333" />+            </vertex>+            <vertex>+                <position x="24.4087" y="4.96312" z="-23.7755" />+                <normal x="-0.522826" y="-0.844538" z="0.115793" />+                <texcoord u="5.41666" v="0.25" />+            </vertex>+            <vertex>+                <position x="19.7999" y="9.65069" z="-29.0556" />+                <normal x="-0.805033" y="-0.555284" z="-0.208762" />+                <texcoord u="5.41666" v="0.166667" />+            </vertex>+            <vertex>+                <position x="18.6969" y="16.7747" z="-33.4289" />+                <normal x="-0.870921" y="-0.118429" z="-0.47694" />+                <texcoord u="5.41666" v="0.0833335" />+            </vertex>+            <vertex>+                <position x="18.1837" y="27.4668" z="-30.1513" />+                <normal x="-0.77194" y="0.259611" z="-0.580268" />+                <texcoord u="5.5" v="1" />+            </vertex>+            <vertex>+                <position x="23.9788" y="33.5567" z="-29.4994" />+                <normal x="-0.352611" y="0.751248" z="-0.557936" />+                <texcoord u="5.5" v="0.916667" />+            </vertex>+            <vertex>+                <position x="31.3121" y="36.3593" z="-26.4233" />+                <normal x="0.09616" y="0.923595" z="-0.371114" />+                <texcoord u="5.5" v="0.833333" />+            </vertex>+            <vertex>+                <position x="38.2187" y="35.1237" z="-21.7472" />+                <normal x="0.519731" y="0.85004" z="-0.085503" />+                <texcoord u="5.5" v="0.75" />+            </vertex>+            <vertex>+                <position x="42.848" y="30.1809" z="-16.724" />+                <normal x="0.805226" y="0.549382" z="0.223137" />+                <texcoord u="5.5" v="0.666667" />+            </vertex>+            <vertex>+                <position x="43.9595" y="22.8553" z="-12.6997" />+                <normal x="0.875654" y="0.100861" z="0.472289" />+                <texcoord u="5.5" v="0.583333" />+            </vertex>+            <vertex>+                <position x="41.2556" y="15.1099" z="-10.7526" />+                <normal x="0.710852" y="-0.37582" z="0.594516" />+                <texcoord u="5.5" v="0.5" />+            </vertex>+            <vertex>+                <position x="35.4605" y="9.01996" z="-11.4044" />+                <normal x="0.354147" y="-0.751884" z="0.556103" />+                <texcoord u="5.5" v="0.416667" />+            </vertex>+            <vertex>+                <position x="28.1272" y="6.21735" z="-14.4805" />+                <normal x="-0.0982069" y="-0.924955" z="0.367169" />+                <texcoord u="5.5" v="0.333333" />+            </vertex>+            <vertex>+                <position x="21.2206" y="7.45299" z="-19.1567" />+                <normal x="-0.523476" y="-0.848348" z="0.0792356" />+                <texcoord u="5.5" v="0.25" />+            </vertex>+            <vertex>+                <position x="16.5913" y="12.3958" z="-24.1799" />+                <normal x="-0.807099" y="-0.54394" z="-0.22961" />+                <texcoord u="5.5" v="0.166667" />+            </vertex>+            <vertex>+                <position x="15.4797" y="19.7214" z="-28.2042" />+                <normal x="-0.87397" y="-0.0947007" z="-0.476664" />+                <texcoord u="5.5" v="0.0833335" />+            </vertex>+            <vertex>+                <position x="15.0217" y="30.0846" z="-24.5855" />+                <normal x="-0.774844" y="0.279771" z="-0.566873" />+                <texcoord u="5.58333" v="1" />+            </vertex>+            <vertex>+                <position x="20.8084" y="36.1599" z="-23.7488" />+                <normal x="-0.356797" y="0.770358" z="-0.528436" />+                <texcoord u="5.58333" v="0.916667" />+            </vertex>+            <vertex>+                <position x="28.1524" y="38.8675" z="-20.6135" />+                <normal x="0.0929281" y="0.936768" z="-0.337389" />+                <texcoord u="5.58333" v="0.833333" />+            </vertex>+            <vertex>+                <position x="35.0857" y="37.4819" z="-16.0196" />+                <normal x="0.518164" y="0.853418" z="-0.0564146" />+                <texcoord u="5.58333" v="0.75" />+            </vertex>+            <vertex>+                <position x="39.7506" y="32.3745" z="-11.198" />+                <normal x="0.805482" y="0.541949" z="0.23977" />+                <texcoord u="5.58333" v="0.666667" />+            </vertex>+            <vertex>+                <position x="40.8972" y="24.9138" z="-7.44073" />+                <normal x="0.87754" y="0.0848104" z="0.471944" />+                <texcoord u="5.58333" v="0.583333" />+            </vertex>+            <vertex>+                <position x="38.2182" y="17.0988" z="-5.75451" />+                <normal x="0.714057" y="-0.39587" z="0.577416" />+                <texcoord u="5.58333" v="0.5" />+            </vertex>+            <vertex>+                <position x="32.4314" y="11.0235" z="-6.59116" />+                <normal x="0.358191" y="-0.77053" z="0.527241" />+                <texcoord u="5.58333" v="0.416667" />+            </vertex>+            <vertex>+                <position x="25.0875" y="8.31595" z="-9.7265" />+                <normal x="-0.0942563" y="-0.937592" z="0.334718" />+                <texcoord u="5.58333" v="0.333333" />+            </vertex>+            <vertex>+                <position x="18.1542" y="9.70148" z="-14.3204" />+                <normal x="-0.520929" y="-0.852013" z="0.0520387" />+                <texcoord u="5.58333" v="0.25" />+            </vertex>+            <vertex>+                <position x="13.4893" y="14.8089" z="-19.142" />+                <normal x="-0.806962" y="-0.537674" z="-0.244374" />+                <texcoord u="5.58333" v="0.166667" />+            </vertex>+            <vertex>+                <position x="12.3427" y="22.2696" z="-22.8992" />+                <normal x="-0.87631" y="-0.0798868" z="-0.475078" />+                <texcoord u="5.58333" v="0.0833335" />+            </vertex>+            <vertex>+                <position x="11.8972" y="32.3759" z="-19.0568" />+                <normal x="-0.77775" y="0.291414" z="-0.55694" />+                <texcoord u="5.66666" v="1" />+            </vertex>+            <vertex>+                <position x="17.6534" y="38.4589" z="-18.0784" />+                <normal x="-0.362419" y="0.782519" z="-0.506277" />+                <texcoord u="5.66666" v="0.916667" />+            </vertex>+            <vertex>+                <position x="24.9925" y="41.1237" z="-14.8954" />+                <normal x="0.0872659" y="0.946141" z="-0.311773" />+                <texcoord u="5.66666" v="0.833333" />+            </vertex>+            <vertex>+                <position x="31.9479" y="39.6563" z="-10.3608" />+                <normal x="0.513829" y="0.857215" z="-0.0340889" />+                <texcoord u="5.66666" v="0.75" />+            </vertex>+            <vertex>+                <position x="36.6561" y="34.4498" z="-5.68959" />+                <normal x="0.803411" y="0.539098" z="0.252793" />+                <texcoord u="5.66666" v="0.666667" />+            </vertex>+            <vertex>+                <position x="37.8553" y="26.8993" z="-2.13341" />+                <normal x="0.878218" y="0.0762773" z="0.472138" />+                <texcoord u="5.66666" v="0.583333" />+            </vertex>+            <vertex>+                <position x="35.2244" y="19.028" z="-0.645146" />+                <normal x="0.717512" y="-0.407559" z="0.564865" />+                <texcoord u="5.66666" v="0.5" />+            </vertex>+            <vertex>+                <position x="29.4682" y="12.9449" z="-1.62357" />+                <normal x="0.363825" y="-0.782275" z="0.505645" />+                <texcoord u="5.66666" v="0.416667" />+            </vertex>+            <vertex>+                <position x="22.1291" y="10.2801" z="-4.80652" />+                <normal x="-0.0878417" y="-0.946606" z="0.310194" />+                <texcoord u="5.66666" v="0.333333" />+            </vertex>+            <vertex>+                <position x="15.1736" y="11.7476" z="-9.34112" />+                <normal x="-0.51567" y="-0.856217" z="0.0312572" />+                <texcoord u="5.66666" v="0.25" />+            </vertex>+            <vertex>+                <position x="10.4655" y="16.9541" z="-14.0123" />+                <normal x="-0.804535" y="-0.535934" z="-0.255927" />+                <texcoord u="5.66666" v="0.166667" />+            </vertex>+            <vertex>+                <position x="9.26624" y="24.5046" z="-17.5685" />+                <normal x="-0.877366" y="-0.0724072" z="-0.474326" />+                <texcoord u="5.66666" v="0.0833335" />+            </vertex>+            <vertex>+                <position x="8.7966" y="34.4168" z="-13.587" />+                <normal x="-0.779814" y="0.296786" z="-0.551188" />+                <texcoord u="5.75" v="1" />+            </vertex>+            <vertex>+                <position x="14.5039" y="40.5256" z="-12.4898" />+                <normal x="-0.368294" y="0.789757" z="-0.490554" />+                <texcoord u="5.75" v="0.916667" />+            </vertex>+            <vertex>+                <position x="21.8216" y="43.1866" z="-9.25492" />+                <normal x="0.0803152" y="0.952946" z="-0.292306" />+                <texcoord u="5.75" v="0.833333" />+            </vertex>+            <vertex>+                <position x="28.7889" y="41.687" z="-4.74905" />+                <normal x="0.507503" y="0.861501" z="-0.0160011" />+                <texcoord u="5.75" v="0.75" />+            </vertex>+            <vertex>+                <position x="33.5389" y="36.4284" z="-0.179584" />+                <normal x="0.79919" y="0.539697" z="0.26462" />+                <texcoord u="5.75" v="0.666667" />+            </vertex>+            <vertex>+                <position x="34.7988" y="28.82" z="3.22911" />+                <normal x="0.877195" y="0.0732391" z="0.474516" />+                <texcoord u="5.75" v="0.583333" />+            </vertex>+            <vertex>+                <position x="32.231" y="20.9004" z="4.56366" />+                <normal x="0.720186" y="-0.41321" z="0.557305" />+                <texcoord u="5.75" v="0.5" />+            </vertex>+            <vertex>+                <position x="26.5237" y="14.7917" z="3.46649" />+                <normal x="0.369795" y="-0.789098" z="0.490486" />+                <texcoord u="5.75" v="0.416667" />+            </vertex>+            <vertex>+                <position x="19.206" y="12.1306" z="0.231571" />+                <normal x="-0.0800775" y="-0.953126" z="0.291784" />+                <texcoord u="5.75" v="0.333333" />+            </vertex>+            <vertex>+                <position x="12.2387" y="13.6303" z="-4.27429" />+                <normal x="-0.5084" y="-0.860997" z="0.0146117" />+                <texcoord u="5.75" v="0.25" />+            </vertex>+            <vertex>+                <position x="7.48878" y="18.8888" z="-8.84376" />+                <normal x="-0.799957" y="-0.53767" z="-0.26642" />+                <texcoord u="5.75" v="0.166667" />+            </vertex>+            <vertex>+                <position x="6.22886" y="26.4972" z="-12.2525" />+                <normal x="-0.8767" y="-0.0703767" z="-0.475862" />+                <texcoord u="5.75" v="0.0833335" />+            </vertex>+            <vertex>+                <position x="5.7099" y="36.27" z="-8.19973" />+                <normal x="-0.780096" y="0.298158" z="-0.550048" />+                <texcoord u="5.83333" v="1" />+            </vertex>+            <vertex>+                <position x="11.3542" y="42.4157" z="-6.98845" />+                <normal x="-0.372982" y="0.793873" z="-0.48026" />+                <texcoord u="5.83333" v="0.916667" />+            </vertex>+            <vertex>+                <position x="18.631" y="45.0989" z="-3.68048" />+                <normal x="0.0733921" y="0.958023" z="-0.277137" />+                <texcoord u="5.83333" v="0.833333" />+            </vertex>+            <vertex>+                <position x="25.5905" y="43.6008" z="0.837821" />+                <normal x="0.500015" y="0.866017" z="2.38506e-05" />+                <texcoord u="5.83333" v="0.75" />+            </vertex>+            <vertex>+                <position x="30.368" y="38.3226" z="5.35577" />+                <normal x="0.792987" y="0.542536" z="0.277176" />+                <texcoord u="5.83333" v="0.666667" />+            </vertex>+            <vertex>+                <position x="31.6832" y="30.6788" z="8.66279" />+                <normal x="0.873996" y="0.073893" z="0.480282" />+                <texcoord u="5.83333" v="0.583333" />+            </vertex>+            <vertex>+                <position x="29.1838" y="22.7174" z="9.87277" />+                <normal x="0.72112" y="-0.414764" z="0.554938" />+                <texcoord u="5.83333" v="0.5" />+            </vertex>+            <vertex>+                <position x="23.5395" y="16.5717" z="8.66149" />+                <normal x="0.374886" y="-0.792575" z="0.480922" />+                <texcoord u="5.83333" v="0.416667" />+            </vertex>+            <vertex>+                <position x="16.2627" y="13.8885" z="5.35352" />+                <normal x="-0.0721622" y="-0.95792" z="0.277815" />+                <texcoord u="5.83333" v="0.333333" />+            </vertex>+            <vertex>+                <position x="9.30315" y="15.3867" z="0.83522" />+                <normal x="-0.499998" y="-0.866026" z="1.73802e-05" />+                <texcoord u="5.83333" v="0.25" />+            </vertex>+            <vertex>+                <position x="4.52573" y="20.6648" z="-3.68273" />+                <normal x="-0.793507" y="-0.541462" z="-0.277787" />+                <texcoord u="5.83333" v="0.166667" />+            </vertex>+            <vertex>+                <position x="3.2105" y="28.3087" z="-6.98975" />+                <normal x="-0.873841" y="-0.0716237" z="-0.480907" />+                <texcoord u="5.83333" v="0.0833335" />+            </vertex>+            <vertex>+                <position x="2.61567" y="38" z="-2.89486" />+                <normal x="-0.777624" y="0.297552" z="-0.553863" />+                <texcoord u="5.91666" v="1" />+            </vertex>+            <vertex>+                <position x="8.18948" y="44.1838" z="-1.55808" />+                <normal x="-0.375099" y="0.796339" z="-0.474494" />+                <texcoord u="5.91666" v="0.916667" />+            </vertex>+            <vertex>+                <position x="15.4071" y="46.8974" z="1.85337" />+                <normal x="0.0678604" y="0.961972" z="-0.264585" />+                <texcoord u="5.91666" v="0.833333" />+            </vertex>+            <vertex>+                <position x="22.3345" y="45.4134" z="6.42541" />+                <normal x="0.492367" y="0.87024" z="0.0160308" />+                <texcoord u="5.91666" v="0.75" />+            </vertex>+            <vertex>+                <position x="27.1155" y="40.1296" z="10.9329" />+                <normal x="0.785128" y="0.546006" z="0.292321" />+                <texcoord u="5.91666" v="0.666667" />+            </vertex>+            <vertex>+                <position x="28.4691" y="32.4618" z="14.1682" />+                <normal x="0.868098" y="0.0759171" z="0.490554" />+                <texcoord u="5.91666" v="0.583333" />+            </vertex>+            <vertex>+                <position x="26.0326" y="24.4645" z="15.2643" />+                <normal x="0.719021" y="-0.414595" z="0.557781" />+                <texcoord u="5.91666" v="0.5" />+            </vertex>+            <vertex>+                <position x="20.4588" y="18.2807" z="13.9275" />+                <normal x="0.377404" y="-0.794434" z="0.475857" />+                <texcoord u="5.91666" v="0.416667" />+            </vertex>+            <vertex>+                <position x="13.2412" y="15.5672" z="10.5161" />+                <normal x="-0.0656699" y="-0.961619" z="0.266413" />+                <texcoord u="5.91666" v="0.333333" />+            </vertex>+            <vertex>+                <position x="6.3138" y="17.0511" z="5.94402" />+                <normal x="-0.491475" y="-0.870769" z="-0.0146277" />+                <texcoord u="5.91666" v="0.25" />+            </vertex>+            <vertex>+                <position x="1.53275" y="22.3349" z="1.43648" />+                <normal x="-0.78542" y="-0.545861" z="-0.291808" />+                <texcoord u="5.91666" v="0.166667" />+            </vertex>+            <vertex>+                <position x="0.179145" y="30.0027" z="-1.79877" />+                <normal x="-0.868272" y="-0.0742166" z="-0.490505" />+                <texcoord u="5.91666" v="0.0833335" />+            </vertex>+            <vertex>+                <position x="-0.50378" y="39.6568" z="2.31612" />+                <normal x="-0.771284" y="0.297175" z="-0.562856" />+                <texcoord u="5.99999" v="1" />+            </vertex>+            <vertex>+                <position x="4.99675" y="45.8711" z="3.80628" />+                <normal x="-0.37302" y="0.798726" z="-0.472115" />+                <texcoord u="5.99999" v="0.916667" />+            </vertex>+            <vertex>+                <position x="12.1343" y="48.6079" z="7.3644" />+                <normal x="0.0652109" y="0.96533" z="-0.252757" />+                <texcoord u="5.99999" v="0.833333" />+            </vertex>+            <vertex>+                <position x="18.9963" y="47.1338" z="12.0371" />+                <normal x="0.485495" y="0.873573" z="0.0341407" />+                <texcoord u="5.99999" v="0.75" />+            </vertex>+            <vertex>+                <position x="23.7442" y="41.8438" z="16.5723" />+                <normal x="0.775766" y="0.548589" z="0.311829" />+                <texcoord u="5.99999" v="0.666667" />+            </vertex>+            <vertex>+                <position x="25.1057" y="34.1553" z="19.7548" />+                <normal x="0.858875" y="0.0773195" z="0.506315" />+                <texcoord u="5.99999" v="0.583333" />+            </vertex>+            <vertex>+                <position x="22.716" y="26.1286" z="20.7319" />+                <normal x="0.712695" y="-0.414637" z="0.565811" />+                <texcoord u="5.99999" v="0.5" />+            </vertex>+            <vertex>+                <position x="17.2155" y="19.9142" z="19.2418" />+                <normal x="0.375909" y="-0.796069" z="0.474307" />+                <texcoord u="5.99999" v="0.416667" />+            </vertex>+            <vertex>+                <position x="10.0779" y="17.1774" z="15.6837" />+                <normal x="-0.0619333" y="-0.964717" z="0.255899" />+                <texcoord u="5.99999" v="0.333333" />+            </vertex>+            <vertex>+                <position x="3.2159" y="18.6516" z="11.011" />+                <normal x="-0.483726" y="-0.87466" z="-0.0312735" />+                <texcoord u="5.99999" v="0.25" />+            </vertex>+            <vertex>+                <position x="-1.53195" y="23.9416" z="6.47576" />+                <normal x="-0.775899" y="-0.549328" z="-0.310192" />+                <texcoord u="5.99999" v="0.166667" />+            </vertex>+            <vertex>+                <position x="-2.89346" y="31.63" z="3.29322" />+                <normal x="-0.859395" y="-0.0760064" z="-0.505631" />+                <texcoord u="5.99999" v="0.0833335" />+            </vertex>+            <vertex>+                <position x="-3.67004" y="41.2856" z="7.42442" />+                <normal x="-0.759857" y="0.299107" z="-0.577193" />+                <texcoord u="6.08333" v="1" />+            </vertex>+            <vertex>+                <position x="1.75764" y="47.5131" z="9.11335" />+                <normal x="-0.365217" y="0.802453" z="-0.471895" />+                <texcoord u="6.08333" v="0.916667" />+            </vertex>+            <vertex>+                <position x="8.79071" y="50.2503" z="12.8735" />+                <normal x="0.0667151" y="0.968553" z="-0.239695" />+                <texcoord u="6.08333" v="0.833333" />+            </vertex>+            <vertex>+                <position x="15.5447" y="48.7637" z="17.6972" />+                <normal x="0.480086" y="0.8754" z="0.0565029" />+                <texcoord u="6.08333" v="0.75" />+            </vertex>+            <vertex>+                <position x="20.2098" y="43.4516" z="22.2921" />+                <normal x="0.764836" y="0.548765" z="0.337467" />+                <texcoord u="6.08333" v="0.666667" />+            </vertex>+            <vertex>+                <position x="21.5361" y="35.7374" z="25.4269" />+                <normal x="0.84553" y="0.0760713" z="0.528482" />+                <texcoord u="6.08333" v="0.583333" />+            </vertex>+            <vertex>+                <position x="19.1681" y="27.6882" z="26.2617" />+                <normal x="0.700811" y="-0.416891" z="0.578849" />+                <texcoord u="6.08333" v="0.5" />+            </vertex>+            <vertex>+                <position x="13.7404" y="21.4606" z="24.5728" />+                <normal x="0.368883" y="-0.798912" z="0.475042" />+                <texcoord u="6.08333" v="0.416667" />+            </vertex>+            <vertex>+                <position x="6.70737" y="18.7234" z="20.8127" />+                <normal x="-0.0622561" y="-0.967694" z="0.24432" />+                <texcoord u="6.08333" v="0.333333" />+            </vertex>+            <vertex>+                <position x="-0.046581" y="20.2101" z="15.9889" />+                <normal x="-0.477492" y="-0.877091" z="-0.0520886" />+                <texcoord u="6.08333" v="0.25" />+            </vertex>+            <vertex>+                <position x="-4.7117" y="25.5221" z="11.394" />+                <normal x="-0.764911" y="-0.550321" z="-0.33475" />+                <texcoord u="6.08333" v="0.166667" />+            </vertex>+            <vertex>+                <position x="-6.03798" y="33.2363" z="8.25921" />+                <normal x="-0.8464" y="-0.0749316" z="-0.52725" />+                <texcoord u="6.08333" v="0.0833335" />+            </vertex>+            <vertex>+                <position x="-6.90989" y="42.9225" z="12.4219" />+                <normal x="-0.742069" y="0.305336" z="-0.596745" />+                <texcoord u="6.16666" v="1" />+            </vertex>+            <vertex>+                <position x="-1.55504" y="49.1366" z="14.3725" />+                <normal x="-0.350323" y="0.808888" z="-0.472202" />+                <texcoord u="6.16666" v="0.916667" />+            </vertex>+            <vertex>+                <position x="5.34306" y="51.836" z="18.4004" />+                <normal x="0.0733392" y="0.972053" z="-0.22301" />+                <texcoord u="6.16666" v="0.833333" />+            </vertex>+            <vertex>+                <position x="11.9361" y="50.2975" z="23.4263" />+                <normal x="0.476424" y="0.875034" z="0.0856481" />+                <texcoord u="6.16666" v="0.75" />+            </vertex>+            <vertex>+                <position x="16.4574" y="44.9331" z="28.1035" />+                <normal x="0.751831" y="0.544912" z="0.371242" />+                <texcoord u="6.16666" v="0.666667" />+            </vertex>+            <vertex>+                <position x="17.6956" y="37.1805" z="31.1787" />+                <normal x="0.826872" y="0.0700607" z="0.55801" />+                <texcoord u="6.16666" v="0.583333" />+            </vertex>+            <vertex>+                <position x="15.3188" y="29.1167" z="31.828" />+                <normal x="0.681806" y="-0.423372" z="0.59657" />+                <texcoord u="6.16666" v="0.5" />+            </vertex>+            <vertex>+                <position x="9.96395" y="22.9026" z="29.8774" />+                <normal x="0.354819" y="-0.804339" z="0.476595" />+                <texcoord u="6.16666" v="0.416667" />+            </vertex>+            <vertex>+                <position x="3.06585" y="20.2032" z="25.8495" />+                <normal x="-0.0676852" y="-0.97095" z="0.229508" />+                <texcoord u="6.16666" v="0.333333" />+            </vertex>+            <vertex>+                <position x="-3.52717" y="21.7418" z="20.8237" />+                <normal x="-0.473105" y="-0.877427" z="-0.0793278" />+                <texcoord u="6.16666" v="0.25" />+            </vertex>+            <vertex>+                <position x="-8.0485" y="27.1061" z="16.1465" />+                <normal x="-0.752031" y="-0.547354" z="-0.367222" />+                <texcoord u="6.16666" v="0.166667" />+            </vertex>+            <vertex>+                <position x="-9.28666" y="34.8588" z="13.0712" />+                <normal x="-0.828238" y="-0.0690303" z="-0.556109" />+                <texcoord u="6.16666" v="0.0833335" />+            </vertex>+            <vertex>+                <position x="-10.2409" y="44.5988" z="17.2877" />+                <normal x="-0.715998" y="0.318167" z="-0.621383" />+                <texcoord u="6.24999" v="1" />+            </vertex>+            <vertex>+                <position x="-4.9645" y="50.7606" z="19.5869" />+                <normal x="-0.326751" y="0.819411" z="-0.470956" />+                <texcoord u="6.24999" v="0.916667" />+            </vertex>+            <vertex>+                <position x="1.75427" y="53.366" z="23.9646" />+                <normal x="0.0858002" y="0.97605" z="-0.199913" />+                <texcoord u="6.24999" v="0.833333" />+            </vertex>+            <vertex>+                <position x="8.11516" y="51.7168" z="29.248" />+                <normal x="0.474221" y="0.871598" z="0.124227" />+                <texcoord u="6.24999" v="0.75" />+            </vertex>+            <vertex>+                <position x="12.4138" y="46.2549" z="34.0212" />+                <normal x="0.735658" y="0.535383" z="0.414937" />+                <texcoord u="6.24999" v="0.666667" />+            </vertex>+            <vertex>+                <position x="13.4983" y="38.4438" z="37.0054" />+                <normal x="0.801408" y="0.0573128" z="0.595366" />+                <texcoord u="6.24999" v="0.583333" />+            </vertex>+            <vertex>+                <position x="11.0781" y="30.3766" z="37.401" />+                <normal x="0.654234" y="-0.435913" z="0.618027" />+                <texcoord u="6.24999" v="0.5" />+            </vertex>+            <vertex>+                <position x="5.8018" y="24.2147" z="35.1018" />+                <normal x="0.33268" y="-0.813612" z="0.476823" />+                <texcoord u="6.24999" v="0.416667" />+            </vertex>+            <vertex>+                <position x="-0.916969" y="21.6093" z="30.7241" />+                <normal x="-0.0786125" y="-0.974836" z="0.208601" />+                <texcoord u="6.24999" v="0.333333" />+            </vertex>+            <vertex>+                <position x="-7.27786" y="23.2585" z="25.4407" />+                <normal x="-0.470197" y="-0.874914" z="-0.115934" />+                <texcoord u="6.24999" v="0.25" />+            </vertex>+            <vertex>+                <position x="-11.5765" y="28.7204" z="20.6675" />+                <normal x="-0.736106" y="-0.538641" z="-0.409895" />+                <texcoord u="6.24999" v="0.166667" />+            </vertex>+            <vertex>+                <position x="-12.661" y="36.5315" z="17.6833" />+                <normal x="-0.803128" y="-0.0559326" z="-0.593176" />+                <texcoord u="6.24999" v="0.0833335" />+            </vertex>+            <vertex>+                <position x="-13.705" y="46.3223" z="22.0148" />+                <normal x="-0.680005" y="0.338963" z="-0.650151" />+                <texcoord u="6.33333" v="1" />+            </vertex>+            <vertex>+                <position x="-8.53111" y="52.3849" z="24.7662" />+                <normal x="-0.294413" y="0.83465" z="-0.465488" />+                <texcoord u="6.33333" v="0.916667" />+            </vertex>+            <vertex>+                <position x="-2.05407" y="54.8284" z="29.5799" />+                <normal x="0.102945" y="0.980513" z="-0.167319" />+                <texcoord u="6.33333" v="0.833333" />+            </vertex>+            <vertex>+                <position x="3.99063" y="52.998" z="35.1661" />+                <normal x="0.47142" y="0.864378" z="0.17497" />+                <texcoord u="6.33333" v="0.75" />+            </vertex>+            <vertex>+                <position x="7.98331" y="47.3841" z="40.028" />+                <normal x="0.71387" y="0.518899" z="0.470248" />+                <texcoord u="6.33333" v="0.666667" />+            </vertex>+            <vertex>+                <position x="8.85415" y="39.4911" z="42.8628" />+                <normal x="0.766862" y="0.0362905" z="0.640785" />+                <texcoord u="6.33333" v="0.583333" />+            </vertex>+            <vertex>+                <position x="6.3698" y="31.4338" z="42.9109" />+                <normal x="0.616515" y="-0.455881" z="0.641936" />+                <texcoord u="6.33333" v="0.5" />+            </vertex>+            <vertex>+                <position x="1.19594" y="25.3712" z="40.1595" />+                <normal x="0.301977" y="-0.82753" z="0.473291" />+                <texcoord u="6.33333" v="0.416667" />+            </vertex>+            <vertex>+                <position x="-5.28109" y="22.9277" z="35.3458" />+                <normal x="-0.0943006" y="-0.979373" z="0.178704" />+                <texcoord u="6.33333" v="0.333333" />+            </vertex>+            <vertex>+                <position x="-11.3258" y="24.7581" z="29.7596" />+                <normal x="-0.466997" y="-0.868833" z="-0.164448" />+                <texcoord u="6.33333" v="0.25" />+            </vertex>+            <vertex>+                <position x="-15.3185" y="30.372" z="24.8977" />+                <normal x="-0.714839" y="-0.522952" z="-0.464248" />+                <texcoord u="6.33333" v="0.166667" />+            </vertex>+            <vertex>+                <position x="-16.1893" y="38.265" z="22.0629" />+                <normal x="-0.768922" y="-0.0342573" z="-0.638424" />+                <texcoord u="6.33333" v="0.0833335" />+            </vertex>+            <vertex>+                <position x="-17.3455" y="48.0806" z="26.5819" />+                <normal x="-0.632251" y="0.368714" z="-0.681402" />+                <texcoord u="6.41666" v="1" />+            </vertex>+            <vertex>+                <position x="-12.3298" y="53.9879" z="29.9047" />+                <normal x="-0.25407" y="0.854823" z="-0.452466" />+                <texcoord u="6.41666" v="0.916667" />+            </vertex>+            <vertex>+                <position x="-6.18577" y="56.1916" z="35.2422" />+                <normal x="0.12214" y="0.985005" z="-0.121849" />+                <texcoord u="6.41666" v="0.833333" />+            </vertex>+            <vertex>+                <position x="-0.559716" y="54.1011" z="41.1644" />+                <normal x="0.464275" y="0.85245" z="0.240368" />+                <texcoord u="6.41666" v="0.75" />+            </vertex>+            <vertex>+                <position x="3.0409" y="48.2766" z="46.0843" />+                <normal x="0.682668" y="0.49434" z="0.538138" />+                <texcoord u="6.41666" v="0.666667" />+            </vertex>+            <vertex>+                <position x="3.65128" y="40.2788" z="48.6836" />+                <normal x="0.720434" y="0.00599443" z="0.693497" />+                <texcoord u="6.41666" v="0.583333" />+            </vertex>+            <vertex>+                <position x="1.10789" y="32.2507" z="48.266" />+                <normal x="0.567617" y="-0.483906" z="0.666067" />+                <texcoord u="6.41666" v="0.5" />+            </vertex>+            <vertex>+                <position x="-3.90778" y="26.3433" z="44.9432" />+                <normal x="0.263713" y="-0.846243" z="0.462957" />+                <texcoord u="6.41666" v="0.416667" />+            </vertex>+            <vertex>+                <position x="-10.0518" y="24.1397" z="39.6057" />+                <normal x="-0.112007" y="-0.984252" z="0.136758" />+                <texcoord u="6.41666" v="0.333333" />+            </vertex>+            <vertex>+                <position x="-15.6778" y="26.2301" z="33.6835" />+                <normal x="-0.459769" y="-0.858478" z="-0.227219" />+                <texcoord u="6.41666" v="0.25" />+            </vertex>+            <vertex>+                <position x="-19.2785" y="32.0546" z="28.7636" />+                <normal x="-0.684421" y="-0.499256" z="-0.53133" />+                <texcoord u="6.41666" v="0.166667" />+            </vertex>+            <vertex>+                <position x="-19.8889" y="40.0524" z="26.1642" />+                <normal x="-0.72266" y="-0.00286735" z="-0.691197" />+                <texcoord u="6.41666" v="0.0833335" />+            </vertex>+            <vertex>+                <position x="-21.2181" y="49.8314" z="30.9556" />+                <normal x="-0.570949" y="0.407634" z="-0.712637" />+                <texcoord u="6.49999" v="1" />+            </vertex>+            <vertex>+                <position x="-16.4688" y="55.52" z="34.9778" />+                <normal x="-0.208556" y="0.879201" z="-0.428381" />+                <texcoord u="6.49999" v="0.916667" />+            </vertex>+            <vertex>+                <position x="-10.791" y="57.4011" z="40.9208" />+                <normal x="0.13801" y="0.988562" z="-0.0608215" />+                <texcoord u="6.49999" v="0.833333" />+            </vertex>+            <vertex>+                <position x="-5.70606" y="54.9704" z="47.1921" />+                <normal x="0.446504" y="0.835007" z="0.321555" />+                <texcoord u="6.49999" v="0.75" />+            </vertex>+            <vertex>+                <position x="-2.57652" y="48.8794" z="52.1115" />+                <normal x="0.636651" y="0.461285" z="0.617974" />+                <texcoord u="6.49999" v="0.666667" />+            </vertex>+            <vertex>+                <position x="-2.24091" y="40.7601" z="54.3607" />+                <normal x="0.659063" y="-0.0335493" z="0.751339" />+                <texcoord u="6.49999" v="0.583333" />+            </vertex>+            <vertex>+                <position x="-4.78918" y="32.7881" z="53.3371" />+                <normal x="0.507584" y="-0.519582" z="0.687309" />+                <texcoord u="6.49999" v="0.5" />+            </vertex>+            <vertex>+                <position x="-9.5385" y="27.0994" z="49.3149" />+                <normal x="0.22097" y="-0.869111" z="0.442514" />+                <texcoord u="6.49999" v="0.416667" />+            </vertex>+            <vertex>+                <position x="-15.2163" y="25.2184" z="43.3719" />+                <normal x="-0.126437" y="-0.988744" z="0.0799906" />+                <texcoord u="6.49999" v="0.333333" />+            </vertex>+            <vertex>+                <position x="-20.3012" y="27.6491" z="37.1006" />+                <normal x="-0.442305" y="-0.843081" z="-0.305909" />+                <texcoord u="6.49999" v="0.25" />+            </vertex>+            <vertex>+                <position x="-23.4308" y="33.7401" z="32.1812" />+                <normal x="-0.639175" y="-0.466765" z="-0.611217" />+                <texcoord u="6.49999" v="0.166667" />+            </vertex>+            <vertex>+                <position x="-23.7664" y="41.8594" z="29.932" />+                <normal x="-0.66062" y="0.0387624" z="-0.749719" />+                <texcoord u="6.49999" v="0.0833335" />+            </vertex>+            <vertex>+                <position x="-25.4264" y="51.4778" z="35.0834" />+                <normal x="-0.496098" y="0.453901" z="-0.740176" />+                <texcoord u="6.58333" v="1" />+            </vertex>+            <vertex>+                <position x="-21.1243" y="56.8876" z="39.9125" />+                <normal x="-0.164626" y="0.905654" z="-0.390755" />+                <texcoord u="6.58333" v="0.916667" />+            </vertex>+            <vertex>+                <position x="-16.09" y="58.3752" z="46.5108" />+                <normal x="0.141101" y="0.989862" z="0.01625" />+                <texcoord u="6.58333" v="0.833333" />+            </vertex>+            <vertex>+                <position x="-11.6727" y="55.542" z="53.1104" />+                <normal x="0.408549" y="0.811859" z="0.417101" />+                <texcoord u="6.58333" v="0.75" />+            </vertex>+            <vertex>+                <position x="-9.05575" y="49.1472" z="57.9428" />+                <normal x="0.568589" y="0.42064" z="0.706943" />+                <texcoord u="6.58333" v="0.666667" />+            </vertex>+            <vertex>+                <position x="-8.94051" y="40.9043" z="59.7133" />+                <normal x="0.579578" y="-0.0806202" z="0.810919" />+                <texcoord u="6.58333" v="0.583333" />+            </vertex>+            <vertex>+                <position x="-11.3578" y="33.0218" z="57.9474" />+                <normal x="0.437986" y="-0.560815" z="0.702606" />+                <texcoord u="6.58333" v="0.5" />+            </vertex>+            <vertex>+                <position x="-15.66" y="27.612" z="53.1184" />+                <normal x="0.17956" y="-0.894204" z="0.410069" />+                <texcoord u="6.58333" v="0.416667" />+            </vertex>+            <vertex>+                <position x="-20.6942" y="26.1244" z="46.52" />+                <normal x="-0.129082" y="-0.9916" z="0.00816391" />+                <texcoord u="6.58333" v="0.333333" />+            </vertex>+            <vertex>+                <position x="-25.1116" y="28.9576" z="39.9204" />+                <normal x="-0.40558" y="-0.822348" z="-0.399059" />+                <texcoord u="6.58333" v="0.25" />+            </vertex>+            <vertex>+                <position x="-27.7285" y="35.3524" z="35.088" />+                <normal x="-0.571905" y="-0.426113" z="-0.700965" />+                <texcoord u="6.58333" v="0.166667" />+            </vertex>+            <vertex>+                <position x="-27.8437" y="43.5953" z="33.3175" />+                <normal x="-0.579593" y="0.089089" z="-0.810021" />+                <texcoord u="6.58333" v="0.0833335" />+            </vertex>+            <vertex>+                <position x="-30.1014" y="52.8792" z="38.8554" />+                <normal x="-0.409715" y="0.504482" z="-0.76002" />+                <texcoord u="6.66666" v="1" />+            </vertex>+            <vertex>+                <position x="-26.5119" y="57.9577" z="44.5492" />+                <normal x="-0.132031" y="0.931194" z="-0.339772" />+                <texcoord u="6.66666" v="0.916667" />+            </vertex>+            <vertex>+                <position x="-22.3432" y="59.0015" z="51.8036" />+                <normal x="0.119201" y="0.987202" z="0.10594" />+                <texcoord u="6.66666" v="0.833333" />+            </vertex>+            <vertex>+                <position x="-18.712" y="55.731" z="58.6748" />+                <normal x="0.338981" y="0.783021" z="0.521508" />+                <texcoord u="6.66666" v="0.75" />+            </vertex>+            <vertex>+                <position x="-16.5915" y="49.0225" z="63.3216" />+                <normal x="0.470685" y="0.374072" z="0.799078" />+                <texcoord u="6.66666" v="0.666667" />+            </vertex>+            <vertex>+                <position x="-16.5497" y="40.6734" z="64.499" />+                <normal x="0.479661" y="-0.132372" z="0.867412" />+                <texcoord u="6.66666" v="0.583333" />+            </vertex>+            <vertex>+                <position x="-18.5979" y="32.921" z="61.8914" />+                <normal x="0.362423" y="-0.60434" z="0.709523" />+                <texcoord u="6.66666" v="0.5" />+            </vertex>+            <vertex>+                <position x="-22.1873" y="27.8425" z="56.1976" />+                <normal x="0.147949" y="-0.918712" z="0.366169" />+                <texcoord u="6.66666" v="0.416667" />+            </vertex>+            <vertex>+                <position x="-26.3561" y="26.7986" z="48.9432" />+                <normal x="-0.108814" y="-0.991196" z="-0.0754316" />+                <texcoord u="6.66666" v="0.333333" />+            </vertex>+            <vertex>+                <position x="-29.9873" y="30.0691" z="42.0721" />+                <normal x="-0.338589" y="-0.796108" z="-0.501567" />+                <texcoord u="6.66666" v="0.25" />+            </vertex>+            <vertex>+                <position x="-32.1078" y="36.7777" z="37.4252" />+                <normal x="-0.474614" y="-0.37844" z="-0.794685" />+                <texcoord u="6.66666" v="0.166667" />+            </vertex>+            <vertex>+                <position x="-32.1496" y="45.1267" z="36.2479" />+                <normal x="-0.477237" y="0.145664" z="-0.866618" />+                <texcoord u="6.66666" v="0.0833335" />+            </vertex>+            <vertex>+                <position x="-35.3846" y="53.8594" z="42.0792" />+                <normal x="-0.316097" y="0.55592" z="-0.768789" />+                <texcoord u="6.75" v="1" />+            </vertex>+            <vertex>+                <position x="-32.855" y="58.5578" z="48.6076" />+                <normal x="-0.12199" y="0.952137" z="-0.280274" />+                <texcoord u="6.75" v="0.916667" />+            </vertex>+            <vertex>+                <position x="-29.8089" y="59.1261" z="56.4494" />+                <normal x="0.0597286" y="0.978195" z="0.198913" />+                <texcoord u="6.75" v="0.833333" />+            </vertex>+            <vertex>+                <position x="-27.0624" y="55.412" z="63.5032" />+                <normal x="0.226995" y="0.747949" z="0.623736" />+                <texcoord u="6.75" v="0.75" />+            </vertex>+            <vertex>+                <position x="-25.3515" y="48.4107" z="67.8791" />+                <normal x="0.336418" y="0.322903" z="0.884622" />+                <texcoord u="6.75" v="0.666667" />+            </vertex>+            <vertex>+                <position x="-25.1345" y="39.9981" z="68.4045" />+                <normal x="0.3585" y="-0.186051" z="0.914802" />+                <texcoord u="6.75" v="0.583333" />+            </vertex>+            <vertex>+                <position x="-26.4697" y="32.4284" z="64.9387" />+                <normal x="0.28582" y="-0.646735" z="0.707135" />+                <texcoord u="6.75" v="0.5" />+            </vertex>+            <vertex>+                <position x="-28.9993" y="27.73" z="58.4102" />+                <normal x="0.135497" y="-0.939401" z="0.314908" />+                <texcoord u="6.75" v="0.416667" />+            </vertex>+            <vertex>+                <position x="-32.0454" y="27.1617" z="50.5685" />+                <normal x="-0.0540322" y="-0.985141" z="-0.163025" />+                <texcoord u="6.75" v="0.333333" />+            </vertex>+            <vertex>+                <position x="-34.7919" y="30.8758" z="43.5147" />+                <normal x="-0.230165" y="-0.763087" z="-0.603922" />+                <texcoord u="6.75" v="0.25" />+            </vertex>+            <vertex>+                <position x="-36.5028" y="37.8771" z="39.1388" />+                <normal x="-0.339851" y="-0.323942" z="-0.882929" />+                <texcoord u="6.75" v="0.166667" />+            </vertex>+            <vertex>+                <position x="-36.7198" y="46.2897" z="38.6134" />+                <normal x="-0.352953" y="0.206129" z="-0.912653" />+                <texcoord u="6.75" v="0.0833335" />+            </vertex>+            <vertex>+                <position x="-41.4036" y="54.2112" z="44.4609" />+                <normal x="-0.221838" y="0.604701" z="-0.764934" />+                <texcoord u="6.83333" v="1" />+            </vertex>+            <vertex>+                <position x="-40.3203" y="58.4706" z="51.6566" />+                <normal x="-0.143356" y="0.964202" z="-0.223076" />+                <texcoord u="6.83333" v="0.916667" />+            </vertex>+            <vertex>+                <position x="-38.654" y="58.5388" z="59.9218" />+                <normal x="-0.0453173" y="0.959201" z="0.27907" />+                <texcoord u="6.83333" v="0.833333" />+            </vertex>+            <vertex>+                <position x="-36.8512" y="54.3976" z="67.0418" />+                <normal x="0.0669488" y="0.704275" z="0.706764" />+                <texcoord u="6.83333" v="0.75" />+            </vertex>+            <vertex>+                <position x="-35.3949" y="47.1565" z="71.1088" />+                <normal x="0.163505" y="0.266449" z="0.949879" />+                <texcoord u="6.83333" v="0.666667" />+            </vertex>+            <vertex>+                <position x="-34.6753" y="38.7559" z="71.0331" />+                <normal x="0.217536" y="-0.240583" z="0.945938" />+                <texcoord u="6.83333" v="0.583333" />+            </vertex>+            <vertex>+                <position x="-34.8854" y="31.4466" z="66.8349" />+                <normal x="0.212992" y="-0.685469" z="0.696252" />+                <texcoord u="6.83333" v="0.5" />+            </vertex>+            <vertex>+                <position x="-35.9686" y="27.1871" z="59.6392" />+                <normal x="0.14949" y="-0.952763" z="0.264378" />+                <texcoord u="6.83333" v="0.416667" />+            </vertex>+            <vertex>+                <position x="-37.635" y="27.1189" z="51.3741" />+                <normal x="0.0437889" y="-0.969422" z="-0.24146" />+                <texcoord u="6.83333" v="0.333333" />+            </vertex>+            <vertex>+                <position x="-39.4378" y="31.2601" z="44.254" />+                <normal x="-0.072529" y="-0.719583" z="-0.690608" />+                <texcoord u="6.83333" v="0.25" />+            </vertex>+            <vertex>+                <position x="-40.8941" y="38.5012" z="40.187" />+                <normal x="-0.16415" y="-0.261181" z="-0.95123" />+                <texcoord u="6.83333" v="0.166667" />+            </vertex>+            <vertex>+                <position x="-41.6137" y="46.9019" z="40.2627" />+                <normal x="-0.209823" y="0.268425" z="-0.940172" />+                <texcoord u="6.83333" v="0.0833335" />+            </vertex>+            <vertex>+                <position x="-48.2018" y="53.7165" z="45.6111" />+                <normal x="-0.133669" y="0.648548" z="-0.749345" />+                <texcoord u="6.91666" v="1" />+            </vertex>+            <vertex>+                <position x="-48.9005" y="57.4425" z="53.1426" />+                <normal x="-0.19628" y="0.963396" z="-0.182598" />+                <texcoord u="6.91666" v="0.916667" />+            </vertex>+            <vertex>+                <position x="-48.8129" y="56.9678" z="61.5606" />+                <normal x="-0.192037" y="0.925445" z="0.326608" />+                <texcoord u="6.91666" v="0.833333" />+            </vertex>+            <vertex>+                <position x="-47.9626" y="52.4196" z="68.6094" />+                <normal x="-0.134776" y="0.647313" z="0.750214" />+                <texcoord u="6.91666" v="0.75" />+            </vertex>+            <vertex>+                <position x="-46.5774" y="45.0166" z="72.4003" />+                <normal x="-0.0409937" y="0.201162" z="0.9787" />+                <texcoord u="6.91666" v="0.666667" />+            </vertex>+            <vertex>+                <position x="-45.0284" y="36.7424" z="71.9176" />+                <normal x="0.0628891" y="-0.297532" z="0.952638" />+                <texcoord u="6.91666" v="0.583333" />+            </vertex>+            <vertex>+                <position x="-43.7306" y="29.8141" z="67.2906" />+                <normal x="0.14809" y="-0.719666" z="0.678344" />+                <texcoord u="6.91666" v="0.5" />+            </vertex>+            <vertex>+                <position x="-43.032" y="26.0881" z="59.7591" />+                <normal x="0.19191" y="-0.955261" z="0.225047" />+                <texcoord u="6.91666" v="0.416667" />+            </vertex>+            <vertex>+                <position x="-43.1195" y="26.5628" z="51.3412" />+                <normal x="0.184735" y="-0.937951" z="-0.293464" />+                <texcoord u="6.91666" v="0.333333" />+            </vertex>+            <vertex>+                <position x="-43.9698" y="31.111" z="44.2924" />+                <normal x="0.131779" y="-0.658899" z="-0.740599" />+                <texcoord u="6.91666" v="0.25" />+            </vertex>+            <vertex>+                <position x="-45.3551" y="38.514" z="40.5015" />+                <normal x="0.0457888" y="-0.186989" z="-0.981294" />+                <texcoord u="6.91666" v="0.166667" />+            </vertex>+            <vertex>+                <position x="-46.9041" y="46.7882" z="40.9841" />+                <normal x="-0.0559781" y="0.33172" z="-0.941716" />+                <texcoord u="6.91666" v="0.0833335" />+            </vertex>+            <vertex>+                <position x="-55.6877" y="52.1527" z="45.081" />+                <normal x="-0.0567717" y="0.686693" z="-0.724728" />+                <texcoord u="7" v="1" />+            </vertex>+            <vertex>+                <position x="-58.3251" y="55.2123" z="52.4822" />+                <normal x="-0.269487" y="0.947768" z="-0.170623" />+                <texcoord u="7" v="0.916667" />+            </vertex>+            <vertex>+                <position x="-59.8755" y="54.1241" z="60.6985" />+                <normal x="-0.361212" y="0.873652" z="0.325973" />+                <texcoord u="7" v="0.833333" />+            </vertex>+            <vertex>+                <position x="-59.9235" y="49.1797" z="67.5282" />+                <normal x="-0.356049" y="0.573046" z="0.738138" />+                <texcoord u="7" v="0.75" />+            </vertex>+            <vertex>+                <position x="-58.4562" y="41.704" z="71.1415" />+                <normal x="-0.257351" y="0.123319" z="0.958417" />+                <texcoord u="7" v="0.666667" />+            </vertex>+            <vertex>+                <position x="-55.8668" y="33.7001" z="70.57" />+                <normal x="-0.0925633" y="-0.359269" z="0.928632" />+                <texcoord u="7" v="0.583333" />+            </vertex>+            <vertex>+                <position x="-52.8491" y="27.3126" z="65.967" />+                <normal x="0.0945926" y="-0.749427" z="0.655295" />+                <texcoord u="7" v="0.5" />+            </vertex>+            <vertex>+                <position x="-50.2117" y="24.253" z="58.5658" />+                <normal x="0.256416" y="-0.944103" z="0.207173" />+                <texcoord u="7" v="0.416667" />+            </vertex>+            <vertex>+                <position x="-48.6613" y="25.3412" z="50.3496" />+                <normal x="0.353388" y="-0.885525" z="-0.301598" />+                <texcoord u="7" v="0.333333" />+            </vertex>+            <vertex>+                <position x="-48.6133" y="30.2855" z="43.5198" />+                <normal x="0.359904" y="-0.576722" z="-0.73339" />+                <texcoord u="7" v="0.25" />+            </vertex>+            <vertex>+                <position x="-50.0806" y="37.7612" z="39.9066" />+                <normal x="0.266501" y="-0.100784" z="-0.958551" />+                <texcoord u="7" v="0.166667" />+            </vertex>+            <vertex>+                <position x="-52.67" y="45.7652" z="40.478" />+                <normal x="0.094685" y="0.395375" z="-0.913626" />+                <texcoord u="7" v="0.0833335" />+            </vertex>+            <vertex>+                <position x="-63.6202" y="49.2932" z="42.4062" />+                <normal x="0.00593716" y="0.719215" z="-0.694762" />+                <texcoord u="7.08333" v="1" />+            </vertex>+            <vertex>+                <position x="-68.0757" y="51.5624" z="49.1954" />+                <normal x="-0.345253" y="0.919127" z="-0.189754" />+                <texcoord u="7.08333" v="0.916667" />+            </vertex>+            <vertex>+                <position x="-71.1178" y="49.7957" z="56.8582" />+                <normal x="-0.524996" y="0.805475" z="0.274935" />+                <texcoord u="7.08333" v="0.833333" />+            </vertex>+            <vertex>+                <position x="-71.9315" y="44.4664" z="63.3413" />+                <normal x="-0.565574" y="0.482553" z="0.668781" />+                <texcoord u="7.08333" v="0.75" />+            </vertex>+            <vertex>+                <position x="-70.2986" y="37.0026" z="66.9077" />+                <normal x="-0.458202" y="0.0334008" z="0.88822" />+                <texcoord u="7.08333" v="0.666667" />+            </vertex>+            <vertex>+                <position x="-66.6567" y="29.404" z="66.6016" />+                <normal x="-0.231891" y="-0.425651" z="0.87467" />+                <texcoord u="7.08333" v="0.583333" />+            </vertex>+            <vertex>+                <position x="-61.9817" y="23.7069" z="62.5051" />+                <normal x="0.0546263" y="-0.774584" z="0.630107" />+                <texcoord u="7.08333" v="0.5" />+            </vertex>+            <vertex>+                <position x="-57.5262" y="21.4376" z="55.7159" />+                <normal x="0.328461" y="-0.919372" z="0.21649" />+                <texcoord u="7.08333" v="0.416667" />+            </vertex>+            <vertex>+                <position x="-54.4841" y="23.2043" z="48.0531" />+                <normal x="0.51946" y="-0.814427" z="-0.258592" />+                <texcoord u="7.08333" v="0.333333" />+            </vertex>+            <vertex>+                <position x="-53.6705" y="28.5336" z="41.5699" />+                <normal x="0.573018" y="-0.47913" z="-0.664895" />+                <texcoord u="7.08333" v="0.25" />+            </vertex>+            <vertex>+                <position x="-55.3033" y="35.9975" z="38.0036" />+                <normal x="0.465782" y="-0.00824779" z="-0.884861" />+                <texcoord u="7.08333" v="0.166667" />+            </vertex>+            <vertex>+                <position x="-58.9452" y="43.596" z="38.3097" />+                <normal x="0.226945" y="0.457644" z="-0.859685" />+                <texcoord u="7.08333" v="0.0833335" />+            </vertex>+            <vertex>+                <position x="-71.575" y="44.9454" z="37.1876" />+                <normal x="0.0537907" y="0.746969" z="-0.662679" />+                <texcoord u="7.16666" v="1" />+            </vertex>+            <vertex>+                <position x="-77.5029" y="46.3598" z="43.0147" />+                <normal x="-0.409266" y="0.882244" z="-0.232696" />+                <texcoord u="7.16666" v="0.916667" />+            </vertex>+            <vertex>+                <position x="-81.73" y="43.891" z="49.8799" />+                <normal x="-0.660676" y="0.72732" z="0.185777" />+                <texcoord u="7.16666" v="0.833333" />+            </vertex>+            <vertex>+                <position x="-83.1239" y="38.2003" z="55.9436" />+                <normal x="-0.737535" y="0.382623" z="0.556454" />+                <texcoord u="7.16666" v="0.75" />+            </vertex>+            <vertex>+                <position x="-81.3109" y="30.8128" z="59.5811" />+                <normal x="-0.621004" y="-0.0627625" z="0.781291" />+                <texcoord u="7.16666" v="0.666667" />+            </vertex>+            <vertex>+                <position x="-76.7769" y="23.7078" z="59.8178" />+                <normal x="-0.341829" y="-0.492963" z="0.800088" />+                <texcoord u="7.16666" v="0.583333" />+            </vertex>+            <vertex>+                <position x="-70.7368" y="18.7891" z="56.5902" />+                <normal x="0.0278641" y="-0.794571" z="0.606532" />+                <texcoord u="7.16666" v="0.5" />+            </vertex>+            <vertex>+                <position x="-64.8089" y="17.3746" z="50.7631" />+                <normal x="0.392786" y="-0.884946" z="0.250181" />+                <texcoord u="7.16666" v="0.416667" />+            </vertex>+            <vertex>+                <position x="-60.5818" y="19.8435" z="43.8979" />+                <normal x="0.656515" y="-0.733747" z="-0.174938" />+                <texcoord u="7.16666" v="0.333333" />+            </vertex>+            <vertex>+                <position x="-59.1879" y="25.5341" z="37.8342" />+                <normal x="0.74342" y="-0.376805" z="-0.55258" />+                <texcoord u="7.16666" v="0.25" />+            </vertex>+            <vertex>+                <position x="-61.0009" y="32.9216" z="34.1967" />+                <normal x="0.623616" y="0.0845113" z="-0.777149" />+                <texcoord u="7.16666" v="0.166667" />+            </vertex>+            <vertex>+                <position x="-65.5349" y="40.0267" z="33.96" />+                <normal x="0.331606" y="0.517347" z="-0.788917" />+                <texcoord u="7.16666" v="0.0833335" />+            </vertex>+            <vertex>+                <position x="-78.9398" y="39.0167" z="29.2164" />+                <normal x="0.0875242" y="0.770748" z="-0.6311" />+                <texcoord u="7.25" v="1" />+            </vertex>+            <vertex>+                <position x="-85.9239" y="39.5729" z="33.9076" />+                <normal x="-0.455995" y="0.84173" z="-0.289065" />+                <texcoord u="7.25" v="0.916667" />+            </vertex>+            <vertex>+                <position x="-90.989" y="36.4193" z="39.8653" />+                <normal x="-0.75933" y="0.646251" z="0.0760108" />+                <texcoord u="7.25" v="0.833333" />+            </vertex>+            <vertex>+                <position x="-92.7779" y="30.4009" z="45.4931" />+                <normal x="-0.861932" y="0.281411" z="0.42176" />+                <texcoord u="7.25" v="0.75" />+            </vertex>+            <vertex>+                <position x="-90.8113" y="23.1302" z="49.2831" />+                <normal x="-0.737664" y="-0.157841" z="0.656458" />+                <texcoord u="7.25" v="0.666667" />+            </vertex>+            <vertex>+                <position x="-85.6161" y="16.5555" z="50.2198" />+                <normal x="-0.418962" y="-0.556652" z="0.717362" />+                <texcoord u="7.25" v="0.583333" />+            </vertex>+            <vertex>+                <position x="-78.5843" y="12.4384" z="48.0521" />+                <normal x="0.0115161" y="-0.809235" z="0.587372" />+                <texcoord u="7.25" v="0.5" />+            </vertex>+            <vertex>+                <position x="-71.6002" y="11.8822" z="43.3609" />+                <normal x="0.441389" y="-0.845719" z="0.299891" />+                <texcoord u="7.25" v="0.416667" />+            </vertex>+            <vertex>+                <position x="-66.5351" y="15.0358" z="37.4032" />+                <normal x="0.755474" y="-0.651549" z="-0.0688667" />+                <texcoord u="7.25" v="0.333333" />+            </vertex>+            <vertex>+                <position x="-64.7462" y="21.0542" z="31.7754" />+                <normal x="0.864975" y="-0.276476" z="-0.418782" />+                <texcoord u="7.25" v="0.25" />+            </vertex>+            <vertex>+                <position x="-66.7128" y="28.3249" z="27.9854" />+                <normal x="0.736371" y="0.174192" z="-0.65377" />+                <texcoord u="7.25" v="0.166667" />+            </vertex>+            <vertex>+                <position x="-71.908" y="34.8996" z="27.0488" />+                <normal x="0.406759" y="0.573778" z="-0.710863" />+                <texcoord u="7.25" v="0.0833335" />+            </vertex>+            <vertex>+                <position x="-84.9848" y="31.5807" z="18.5964" />+                <normal x="0.109168" y="0.790836" z="-0.602213" />+                <texcoord u="7.33333" v="1" />+            </vertex>+            <vertex>+                <position x="-92.6469" y="31.3096" z="22.1053" />+                <normal x="-0.486143" y="0.800031" z="-0.35159" />+                <texcoord u="7.33333" v="0.916667" />+            </vertex>+            <vertex>+                <position x="-98.2422" y="27.5103" z="27.1404" />+                <normal x="-0.823114" y="0.566369" z="-0.0413455" />+                <texcoord u="7.33333" v="0.833333" />+            </vertex>+            <vertex>+                <position x="-100.271" y="21.2008" z="32.3527" />+                <normal x="-0.94215" y="0.183806" z="0.280301" />+                <texcoord u="7.33333" v="0.75" />+            </vertex>+            <vertex>+                <position x="-98.1906" y="14.0718" z="36.3455" />+                <normal x="-0.812435" y="-0.247515" z="0.527906" />+                <texcoord u="7.33333" v="0.666667" />+            </vertex>+            <vertex>+                <position x="-92.5575" y="8.03347" z="38.0489" />+                <normal x="-0.467755" y="-0.614368" z="0.635419" />+                <texcoord u="7.33333" v="0.583333" />+            </vertex>+            <vertex>+                <position x="-84.8815" y="4.70379" z="37.0065" />+                <normal x="0.00204641" y="-0.819108" z="0.573635" />+                <texcoord u="7.33333" v="0.5" />+            </vertex>+            <vertex>+                <position x="-77.2193" y="4.97493" z="33.4977" />+                <normal x="0.473354" y="-0.80478" z="0.358142" />+                <texcoord u="7.33333" v="0.416667" />+            </vertex>+            <vertex>+                <position x="-71.624" y="8.77425" z="28.4625" />+                <normal x="0.819293" y="-0.571528" z="0.045984" />+                <texcoord u="7.33333" v="0.333333" />+            </vertex>+            <vertex>+                <position x="-69.5949" y="15.0837" z="23.2503" />+                <normal x="0.943267" y="-0.180667" z="-0.278581" />+                <texcoord u="7.33333" v="0.25" />+            </vertex>+            <vertex>+                <position x="-71.6757" y="22.2127" z="19.2575" />+                <normal x="0.809276" y="0.259265" z="-0.527118" />+                <texcoord u="7.33333" v="0.166667" />+            </vertex>+            <vertex>+                <position x="-77.3087" y="28.251" z="17.5541" />+                <normal x="0.455579" y="0.626253" z="-0.632657" />+                <texcoord u="7.33333" v="0.0833335" />+            </vertex>+            <vertex>+                <position x="-88.9899" y="22.9238" z="5.8252" />+                <normal x="0.121513" y="0.807409" z="-0.577343" />+                <texcoord u="7.41666" v="1" />+            </vertex>+            <vertex>+                <position x="-97.0199" y="21.8645" z="8.1684" />+                <normal x="-0.502083" y="0.757527" z="-0.417212" />+                <texcoord u="7.41666" v="0.916667" />+            </vertex>+            <vertex>+                <position x="-102.897" y="17.4645" z="12.3153" />+                <normal x="-0.857796" y="0.488332" z="-0.160366" />+                <texcoord u="7.41666" v="0.833333" />+            </vertex>+            <vertex>+                <position x="-105.046" y="10.9027" z="17.1547" />+                <normal x="-0.986103" y="0.0905521" z="0.139286" />+                <texcoord u="7.41666" v="0.75" />+            </vertex>+            <vertex>+                <position x="-102.891" y="3.9375" z="21.3899" />+                <normal x="-0.853566" y="-0.331287" z="0.402087" />+                <texcoord u="7.41666" v="0.666667" />+            </vertex>+            <vertex>+                <position x="-97.0101" y="-1.56494" z="23.8861" />+                <normal x="-0.494743" y="-0.666201" z="0.558037" />+                <texcoord u="7.41666" v="0.583333" />+            </vertex>+            <vertex>+                <position x="-88.9785" y="-4.13018" z="23.9745" />+                <normal x="-0.00348649" y="-0.824932" z="0.565222" />+                <texcoord u="7.41666" v="0.5" />+            </vertex>+            <vertex>+                <position x="-80.9485" y="-3.07089" z="21.6313" />+                <normal x="0.490457" y="-0.763028" z="0.420999" />+                <texcoord u="7.41666" v="0.416667" />+            </vertex>+            <vertex>+                <position x="-75.0716" y="1.32911" z="17.4844" />+                <normal x="0.853989" y="-0.494002" z="0.163291" />+                <texcoord u="7.41666" v="0.333333" />+            </vertex>+            <vertex>+                <position x="-72.9225" y="7.89084" z="12.645" />+                <normal x="0.986318" y="-0.0891658" z="-0.138661" />+                <texcoord u="7.41666" v="0.25" />+            </vertex>+            <vertex>+                <position x="-75.0772" y="14.8561" z="8.40977" />+                <normal x="0.849833" y="0.339827" z="-0.402867" />+                <texcoord u="7.41666" v="0.166667" />+            </vertex>+            <vertex>+                <position x="-80.9583" y="20.3585" z="5.91355" />+                <normal x="0.483175" y="0.674739" z="-0.557915" />+                <texcoord u="7.41666" v="0.0833335" />+            </vertex>+            <vertex>+                <position x="-90.399" y="13.5534" z="-8.19838" />+                <normal x="0.127266" y="0.820698" z="-0.557009" />+                <texcoord u="7.5" v="1" />+            </vertex>+            <vertex>+                <position x="-98.5434" y="11.7331" z="-6.99464" />+                <normal x="-0.505157" y="0.713377" z="-0.485706" />+                <texcoord u="7.5" v="0.916667" />+            </vertex>+            <vertex>+                <position x="-104.506" y="6.76893" z="-3.6924" />+                <normal x="-0.867647" y="0.410708" z="-0.280193" />+                <texcoord u="7.5" v="0.833333" />+            </vertex>+            <vertex>+                <position x="-106.688" y="-0.00887395" z="0.82351" />+                <normal x="-1" y="-5.68121e-05" z="-0.000124058" />+                <texcoord u="7.5" v="0.75" />+            </vertex>+            <vertex>+                <position x="-104.506" y="-6.78426" z="5.34306" />+                <normal x="-0.867666" y="-0.410797" z="0.280001" />+                <texcoord u="7.5" v="0.666667" />+            </vertex>+            <vertex>+                <position x="-98.5434" y="-11.7418" z="8.65523" />+                <normal x="-0.505176" y="-0.713414" z="0.48563" />+                <texcoord u="7.5" v="0.583333" />+            </vertex>+            <vertex>+                <position x="-90.399" y="-13.553" z="9.87254" />+                <normal x="-0.00744415" y="-0.827274" z="0.561749" />+                <texcoord u="7.5" v="0.5" />+            </vertex>+            <vertex>+                <position x="-82.2546" y="-11.7327" z="8.6688" />+                <normal x="0.493944" y="-0.720024" z="0.487427" />+                <texcoord u="7.5" v="0.416667" />+            </vertex>+            <vertex>+                <position x="-76.2924" y="-6.76859" z="5.36656" />+                <normal x="0.863872" y="-0.417509" z="0.281801" />+                <texcoord u="7.5" v="0.333333" />+            </vertex>+            <vertex>+                <position x="-74.1101" y="0.00920909" z="0.850647" />+                <normal x="1" y="-0.000116354" z="-0.000151394" />+                <texcoord u="7.5" v="0.25" />+            </vertex>+            <vertex>+                <position x="-76.2924" y="6.78459" z="-3.6689" />+                <normal x="0.86388" y="0.417338" z="-0.282031" />+                <texcoord u="7.5" v="0.166667" />+            </vertex>+            <vertex>+                <position x="-82.2545" y="11.7421" z="-6.98107" />+                <normal x="0.493948" y="0.719962" z="-0.487513" />+                <texcoord u="7.5" v="0.0833335" />+            </vertex>+            <vertex>+                <position x="-88.977" y="4.12564" z="-22.3076" />+                <normal x="0.128719" y="0.83089" z="-0.541344" />+                <texcoord u="7.58333" v="1" />+            </vertex>+            <vertex>+                <position x="-97.0058" y="1.55146" z="-22.2327" />+                <normal x="-0.494691" y="0.666166" z="-0.558126" />+                <texcoord u="7.58333" v="0.916667" />+            </vertex>+            <vertex>+                <position x="-102.885" y="-3.9562" z="-19.7444" />+                <normal x="-0.853507" y="0.331187" z="-0.402294" />+                <texcoord u="7.58333" v="0.833333" />+            </vertex>+            <vertex>+                <position x="-105.04" y="-10.9216" z="-15.5094" />+                <normal x="-0.986055" y="-0.0906857" z="-0.139538" />+                <texcoord u="7.58333" v="0.75" />+            </vertex>+            <vertex>+                <position x="-102.893" y="-17.4783" z="-10.6625" />+                <normal x="-0.85777" y="-0.488439" z="0.160183" />+                <texcoord u="7.58333" v="0.666667" />+            </vertex>+            <vertex>+                <position x="-97.0185" y="-21.8695" z="-6.50241" />+                <normal x="-0.502066" y="-0.757572" z="0.41715" />+                <texcoord u="7.58333" v="0.583333" />+            </vertex>+            <vertex>+                <position x="-88.9916" y="-22.9186" z="-4.14382" />+                <normal x="-0.0119284" y="-0.826494" z="0.562819" />+                <texcoord u="7.58333" v="0.5" />+            </vertex>+            <vertex>+                <position x="-80.9628" y="-20.3444" z="-4.21871" />+                <normal x="0.483218" y="-0.674797" z="0.557807" />+                <texcoord u="7.58333" v="0.416667" />+            </vertex>+            <vertex>+                <position x="-75.0833" y="-14.8367" z="-6.70702" />+                <normal x="0.849889" y="-0.340003" z="0.402599" />+                <texcoord u="7.58333" v="0.333333" />+            </vertex>+            <vertex>+                <position x="-72.9285" y="-7.87135" z="-10.942" />+                <normal x="0.986386" y="0.0889191" z="0.138336" />+                <texcoord u="7.58333" v="0.25" />+            </vertex>+            <vertex>+                <position x="-75.0759" y="-1.31463" z="-15.7889" />+                <normal x="0.854054" y="0.493817" z="-0.16351" />+                <texcoord u="7.58333" v="0.166667" />+            </vertex>+            <vertex>+                <position x="-80.9501" y="3.07658" z="-19.949" />+                <normal x="0.490504" y="0.762962" z="-0.421063" />+                <texcoord u="7.58333" v="0.0833335" />+            </vertex>+            <vertex>+                <position x="-84.8807" y="-4.7049" z="-35.3345" />+                <normal x="0.12772" y="0.838029" z="-0.530467" />+                <texcoord u="7.66667" v="1" />+            </vertex>+            <vertex>+                <position x="-92.5508" y="-8.04401" z="-36.3906" />+                <normal x="-0.467709" y="0.614306" z="-0.635513" />+                <texcoord u="7.66667" v="0.916667" />+            </vertex>+            <vertex>+                <position x="-98.1797" y="-14.0888" z="-34.6967" />+                <normal x="-0.81234" y="0.24737" z="-0.528121" />+                <texcoord u="7.66667" v="0.833333" />+            </vertex>+            <vertex>+                <position x="-100.259" y="-21.2197" z="-30.7067" />+                <normal x="-0.942039" y="-0.183984" z="-0.280559" />+                <texcoord u="7.66667" v="0.75" />+            </vertex>+            <vertex>+                <position x="-98.2323" y="-27.5259" z="-25.4896" />+                <normal x="-0.823035" y="-0.566498" z="0.0411597" />+                <texcoord u="7.66667" v="0.666667" />+            </vertex>+            <vertex>+                <position x="-92.6418" y="-31.3177" z="-20.4434" />+                <normal x="-0.486115" y="-0.800075" z="0.351528" />+                <texcoord u="7.66667" v="0.583333" />+            </vertex>+            <vertex>+                <position x="-84.9859" y="-31.579" z="-16.9203" />+                <normal x="-0.0189089" y="-0.822802" z="0.568013" />+                <texcoord u="7.66667" v="0.5" />+            </vertex>+            <vertex>+                <position x="-77.3158" y="-28.2399" z="-15.8642" />+                <normal x="0.455635" y="-0.626334" z="0.632536" />+                <texcoord u="7.66667" v="0.416667" />+            </vertex>+            <vertex>+                <position x="-71.6869" y="-22.1951" z="-17.5581" />+                <normal x="0.809405" y="-0.259487" z="0.526811" />+                <texcoord u="7.66667" v="0.333333" />+            </vertex>+            <vertex>+                <position x="-69.6073" y="-15.0642" z="-21.5481" />+                <normal x="0.943432" y="0.180379" z="0.278207" />+                <texcoord u="7.66667" v="0.25" />+            </vertex>+            <vertex>+                <position x="-71.6343" y="-8.75802" z="-26.7652" />+                <normal x="0.819417" y="0.571331" z="-0.0462324" />+                <texcoord u="7.66667" v="0.166667" />+            </vertex>+            <vertex>+                <position x="-77.2248" y="-4.96625" z="-31.8113" />+                <normal x="0.473397" y="0.804722" z="-0.358214" />+                <texcoord u="7.66667" v="0.0833335" />+            </vertex>+            <vertex>+                <position x="-78.5865" y="-12.4362" z="-46.3754" />+                <normal x="0.125925" y="0.841867" z="-0.524789" />+                <texcoord u="7.75" v="1" />+            </vertex>+            <vertex>+                <position x="-85.6096" y="-16.5619" z="-48.555" />+                <normal x="-0.418901" y="0.556522" z="-0.7175" />+                <texcoord u="7.75" v="0.916667" />+            </vertex>+            <vertex>+                <position x="-90.7979" y="-23.1434" z="-47.6278" />+                <normal x="-0.737478" y="0.15762" z="-0.656721" />+                <texcoord u="7.75" v="0.833333" />+            </vertex>+            <vertex>+                <position x="-92.7613" y="-30.4172" z="-43.8423" />+                <normal x="-0.861708" y="-0.281638" z="-0.422065" />+                <texcoord u="7.75" v="0.75" />+            </vertex>+            <vertex>+                <position x="-90.9737" y="-36.4344" z="-38.2127" />+                <normal x="-0.759187" y="-0.646392" z="-0.0762359" />+                <texcoord u="7.75" v="0.666667" />+            </vertex>+            <vertex>+                <position x="-85.9141" y="-39.5827" z="-32.2476" />+                <normal x="-0.455978" y="-0.841771" z="0.288972" />+                <texcoord u="7.75" v="0.583333" />+            </vertex>+            <vertex>+                <position x="-78.9381" y="-39.0184" z="-27.5451" />+                <normal x="-0.0301724" y="-0.816295" z="0.576847" />+                <texcoord u="7.75" v="0.5" />+            </vertex>+            <vertex>+                <position x="-71.9151" y="-34.8928" z="-25.3655" />+                <normal x="0.406843" y="-0.573954" z="0.710672" />+                <texcoord u="7.75" v="0.416667" />+            </vertex>+            <vertex>+                <position x="-66.7268" y="-28.3113" z="-26.2927" />+                <normal x="0.736647" y="-0.174568" z="0.653358" />+                <texcoord u="7.75" v="0.333333" />+            </vertex>+            <vertex>+                <position x="-64.7634" y="-21.0374" z="-30.0782" />+                <normal x="0.865335" y="0.276057" z="0.418315" />+                <texcoord u="7.75" v="0.25" />+            </vertex>+            <vertex>+                <position x="-66.551" y="-15.0202" z="-35.7078" />+                <normal x="0.75571" y="0.651307" z="0.0685648" />+                <texcoord u="7.75" v="0.166667" />+            </vertex>+            <vertex>+                <position x="-71.6106" y="-11.8719" z="-41.673" />+                <normal x="0.441427" y="0.845662" z="-0.299998" />+                <texcoord u="7.75" v="0.0833335" />+            </vertex>+            <vertex>+                <position x="-70.7334" y="-18.7917" z="-54.92" />+                <normal x="0.125238" y="0.841739" z="-0.525158" />+                <texcoord u="7.83333" v="1" />+            </vertex>+            <vertex>+                <position x="-76.7596" y="-23.7198" z="-58.1592" />+                <normal x="-0.341656" y="0.492782" z="-0.800273" />+                <texcoord u="7.83333" v="0.916667" />+            </vertex>+            <vertex>+                <position x="-81.2845" y="-30.8309" z="-57.9301" />+                <normal x="-0.620636" y="0.0624933" z="-0.781605" />+                <texcoord u="7.83333" v="0.833333" />+            </vertex>+            <vertex>+                <position x="-83.0954" y="-38.2197" z="-54.2939" />+                <normal x="-0.737137" y="-0.382884" z="-0.556803" />+                <texcoord u="7.83333" v="0.75" />+            </vertex>+            <vertex>+                <position x="-81.7073" y="-43.9062" z="-48.2251" />+                <normal x="-0.660428" y="-0.727482" z="-0.186023" />+                <texcoord u="7.83333" v="0.666667" />+            </vertex>+            <vertex>+                <position x="-77.492" y="-46.3669" z="-41.3497" />+                <normal x="-0.409205" y="-0.882295" z="0.232609" />+                <texcoord u="7.83333" v="0.583333" />+            </vertex>+            <vertex>+                <position x="-71.579" y="-44.9423" z="-35.51" />+                <normal x="-0.0471118" y="-0.80682" z="0.588916" />+                <texcoord u="7.83333" v="0.5" />+            </vertex>+            <vertex>+                <position x="-65.5527" y="-40.0142" z="-32.2708" />+                <normal x="0.331927" y="-0.517549" z="0.788649" />+                <texcoord u="7.83333" v="0.416667" />+            </vertex>+            <vertex>+                <position x="-61.0279" y="-32.9031" z="-32.5" />+                <normal x="0.624291" y="-0.0849649" z="0.776557" />+                <texcoord u="7.83333" v="0.333333" />+            </vertex>+            <vertex>+                <position x="-59.2169" y="-25.5144" z="-36.1361" />+                <normal x="0.744157" y="0.376305" z="0.551929" />+                <texcoord u="7.83333" v="0.25" />+            </vertex>+            <vertex>+                <position x="-60.6051" y="-19.8278" z="-42.2049" />+                <normal x="0.656923" y="0.733479" z="0.174529" />+                <texcoord u="7.83333" v="0.166667" />+            </vertex>+            <vertex>+                <position x="-64.8204" y="-17.3672" z="-49.0803" />+                <normal x="0.392839" y="0.884877" z="-0.250339" />+                <texcoord u="7.83333" v="0.0833335" />+            </vertex>+            <vertex>+                <position x="-61.9707" y="-23.7142" z="-60.8399" />+                <normal x="0.128432" y="0.836583" z="-0.532574" />+                <texcoord u="7.91667" v="1" />+            </vertex>+            <vertex>+                <position x="-66.6244" y="-29.4221" z="-64.9457" />+                <normal x="-0.231629" y="0.425447" z="-0.874839" />+                <texcoord u="7.91667" v="0.916667" />+            </vertex>+            <vertex>+                <position x="-70.2537" y="-37.0264" z="-65.2564" />+                <normal x="-0.457675" y="-0.0337156" z="-0.88848" />+                <texcoord u="7.91667" v="0.833333" />+            </vertex>+            <vertex>+                <position x="-71.8862" y="-44.4897" z="-61.6886" />+                <normal x="-0.564997" y="-0.482881" z="-0.669033" />+                <texcoord u="7.91667" v="0.75" />+            </vertex>+            <vertex>+                <position x="-71.0843" y="-49.8121" z="-55.1983" />+                <normal x="-0.5246" y="-0.805694" z="-0.275048" />+                <texcoord u="7.91667" v="0.666667" />+            </vertex>+            <vertex>+                <position x="-68.063" y="-51.5675" z="-47.5247" />+                <normal x="-0.345084" y="-0.919175" z="0.189829" />+                <texcoord u="7.91667" v="0.583333" />+            </vertex>+            <vertex>+                <position x="-63.6318" y="-49.2856" z="-40.7238" />+                <normal x="-0.0708132" y="-0.793622" z="0.604276" />+                <texcoord u="7.91667" v="0.5" />+            </vertex>+            <vertex>+                <position x="-58.9781" y="-43.5777" z="-36.618" />+                <normal x="0.22759" y="-0.457638" z="0.859517" />+                <texcoord u="7.91667" v="0.416667" />+            </vertex>+            <vertex>+                <position x="-55.3488" y="-35.9734" z="-36.3073" />+                <normal x="0.467002" y="0.00798067" z="0.88422" />+                <texcoord u="7.91667" v="0.333333" />+            </vertex>+            <vertex>+                <position x="-53.7164" y="-28.5101" z="-39.8751" />+                <normal x="0.57427" y="0.478723" z="0.664107" />+                <texcoord u="7.91667" v="0.25" />+            </vertex>+            <vertex>+                <position x="-54.5182" y="-23.1877" z="-46.3654" />+                <normal x="0.520092" y="0.81419" z="0.258069" />+                <texcoord u="7.91667" v="0.166667" />+            </vertex>+            <vertex>+                <position x="-57.5395" y="-21.4323" z="-54.039" />+                <normal x="0.328529" y="0.919297" z="-0.216709" />+                <texcoord u="7.91667" v="0.0833335" />+            </vertex>+            <vertex>+                <position x="-52.8412" y="-27.3173" z="-64.298" />+                <normal x="0.139468" y="0.825301" z="-0.547199" />+                <texcoord u="8" v="1" />+            </vertex>+            <vertex>+                <position x="-55.8378" y="-33.7123" z="-68.9043" />+                <normal x="-0.0922102" y="0.358996" z="-0.928773" />+                <texcoord u="8" v="0.916667" />+            </vertex>+            <vertex>+                <position x="-58.414" y="-41.7205" z="-69.477" />+                <normal x="-0.256664" y="-0.123715" z="-0.95855" />+                <texcoord u="8" v="0.833333" />+            </vertex>+            <vertex>+                <position x="-59.8795" y="-49.1959" z="-65.8625" />+                <normal x="-0.355296" y="-0.573436" z="-0.738197" />+                <texcoord u="8" v="0.75" />+            </vertex>+            <vertex>+                <position x="-59.8415" y="-54.1357" z="-59.0293" />+                <normal x="-0.360695" y="-0.873892" z="-0.325903" />+                <texcoord u="8" v="0.666667" />+            </vertex>+            <vertex>+                <position x="-58.3103" y="-55.2161" z="-50.8085" />+                <normal x="-0.269286" y="-0.947791" z="0.170812" />+                <texcoord u="8" v="0.583333" />+            </vertex>+            <vertex>+                <position x="-55.6962" y="-52.1477" z="-43.4027" />+                <normal x="-0.102788" y="-0.775109" z="0.62341" />+                <texcoord u="8" v="0.5" />+            </vertex>+            <vertex>+                <position x="-52.6995" y="-45.7527" z="-38.7963" />+                <normal x="0.0955107" y="-0.395357" z="0.913548" />+                <texcoord u="8" v="0.416667" />+            </vertex>+            <vertex>+                <position x="-50.1234" y="-37.7446" z="-38.2236" />+                <normal x="0.268243" y="0.100459" z="0.958099" />+                <texcoord u="8" v="0.333333" />+            </vertex>+            <vertex>+                <position x="-48.6579" y="-30.2692" z="-41.8381" />+                <normal x="0.361757" y="0.576247" z="0.732851" />+                <texcoord u="8" v="0.25" />+            </vertex>+            <vertex>+                <position x="-48.6959" y="-25.3294" z="-48.6713" />+                <normal x="0.354336" y="0.885273" z="0.301228" />+                <texcoord u="8" v="0.166667" />+            </vertex>+            <vertex>+                <position x="-50.2271" y="-24.249" z="-56.8921" />+                <normal x="0.256559" y="0.944019" z="-0.207379" />+                <texcoord u="8" v="0.0833335" />+            </vertex>+            <vertex>+                <position x="-43.7251" y="-29.8173" z="-65.6193" />+                <normal x="0.162293" y="0.807242" z="-0.567469" />+                <texcoord u="8.08333" v="1" />+            </vertex>+            <vertex>+                <position x="-45.0055" y="-36.7498" z="-70.2449" />+                <normal x="0.0633256" y="0.297183" z="-0.952718" />+                <texcoord u="8.08333" v="0.916667" />+            </vertex>+            <vertex>+                <position x="-46.5433" y="-45.0261" z="-70.726" />+                <normal x="-0.0402621" y="-0.201574" z="-0.978645" />+                <texcoord u="8.08333" v="0.833333" />+            </vertex>+            <vertex>+                <position x="-47.9266" y="-52.4287" z="-66.9335" />+                <normal x="-0.134028" y="-0.647661" z="-0.750048" />+                <texcoord u="8.08333" v="0.75" />+            </vertex>+            <vertex>+                <position x="-48.7847" y="-56.974" z="-59.8839" />+                <normal x="-0.19156" y="-0.925625" z="-0.326379" />+                <texcoord u="8.08333" v="0.666667" />+            </vertex>+            <vertex>+                <position x="-48.8876" y="-57.4442" z="-51.4659" />+                <normal x="-0.196119" y="-0.963386" z="0.182827" />+                <texcoord u="8.08333" v="0.583333" />+            </vertex>+            <vertex>+                <position x="-48.2079" y="-53.7132" z="-43.9351" />+                <normal x="-0.145714" y="-0.749065" z="0.646273" />+                <texcoord u="8.08333" v="0.5" />+            </vertex>+            <vertex>+                <position x="-46.9275" y="-46.7807" z="-39.3095" />+                <normal x="-0.0550203" y="-0.331733" z="0.941768" />+                <texcoord u="8.08333" v="0.416667" />+            </vertex>+            <vertex>+                <position x="-45.3897" y="-38.5043" z="-38.8285" />+                <normal x="0.0477466" y="0.186727" z="0.981251" />+                <texcoord u="8.08333" v="0.333333" />+            </vertex>+            <vertex>+                <position x="-44.0064" y="-31.1017" z="-42.6209" />+                <normal x="0.133763" y="0.658603" z="0.740506" />+                <texcoord u="8.08333" v="0.25" />+            </vertex>+            <vertex>+                <position x="-43.1483" y="-26.5564" z="-49.6706" />+                <normal x="0.18572" y="0.937817" z="0.29327" />+                <texcoord u="8.08333" v="0.166667" />+            </vertex>+            <vertex>+                <position x="-43.0454" y="-26.0862" z="-58.0886" />+                <normal x="0.192111" y="0.955162" z="-0.225297" />+                <texcoord u="8.08333" v="0.0833335" />+            </vertex>+            <vertex>+                <position x="-34.8719" y="-31.4542" z="-65.1651" />+                <normal x="0.199043" y="0.782204" z="-0.590372" />+                <texcoord u="8.16667" v="1" />+            </vertex>+            <vertex>+                <position x="-34.6458" y="-38.7673" z="-69.3558" />+                <normal x="0.217887" y="0.240106" z="-0.945978" />+                <texcoord u="8.16667" v="0.916667" />+            </vertex>+            <vertex>+                <position x="-35.3573" y="-47.1686" z="-69.425" />+                <normal x="0.16403" y="-0.266937" z="-0.949652" />+                <texcoord u="8.16667" v="0.833333" />+            </vertex>+            <vertex>+                <position x="-36.8157" y="-54.4072" z="-65.3543" />+                <normal x="0.0674264" y="-0.70465" z="-0.706344" />+                <texcoord u="8.16667" v="0.75" />+            </vertex>+            <vertex>+                <position x="-38.6302" y="-58.5433" z="-58.2343" />+                <normal x="-0.0450917" y="-0.959359" z="-0.278563" />+                <texcoord u="8.16667" v="0.666667" />+            </vertex>+            <vertex>+                <position x="-40.3147" y="-58.4688" z="-49.9728" />+                <normal x="-0.143374" y="-0.964083" z="0.223581" />+                <texcoord u="8.16667" v="0.583333" />+            </vertex>+            <vertex>+                <position x="-41.4177" y="-54.2035" z="-42.7836" />+                <normal x="-0.20244" y="-0.714221" z="0.670005" />+                <texcoord u="8.16667" v="0.5" />+            </vertex>+            <vertex>+                <position x="-41.6437" y="-46.8904" z="-38.5929" />+                <normal x="-0.209095" y="-0.267901" z="0.940483" />+                <texcoord u="8.16667" v="0.416667" />+            </vertex>+            <vertex>+                <position x="-40.9322" y="-38.489" z="-38.5236" />+                <normal x="-0.162656" y="0.261642" z="0.95136" />+                <texcoord u="8.16667" v="0.333333" />+            </vertex>+            <vertex>+                <position x="-39.4738" y="-31.2505" z="-42.5944" />+                <normal x="-0.0710638" y="0.719874" z="0.690457" />+                <texcoord u="8.16667" v="0.25" />+            </vertex>+            <vertex>+                <position x="-37.6593" y="-27.1143" z="-49.7144" />+                <normal x="0.0445231" y="0.969493" z="0.24104" />+                <texcoord u="8.16667" v="0.166667" />+            </vertex>+            <vertex>+                <position x="-35.9749" y="-27.1889" z="-57.9758" />+                <normal x="0.149678" y="0.952602" z="-0.26485" />+                <texcoord u="8.16667" v="0.0833335" />+            </vertex>+            <vertex>+                <position x="-26.4533" y="-32.4378" z="-63.2674" />+                <normal x="0.249406" y="0.750534" z="-0.61196" />+                <texcoord u="8.25" v="1" />+            </vertex>+            <vertex>+                <position x="-25.1066" y="-40.0103" z="-66.7225" />+                <normal x="0.358861" y="0.185399" z="-0.914793" />+                <texcoord u="8.25" v="0.916667" />+            </vertex>+            <vertex>+                <position x="-25.3195" y="-48.4224" z="-66.1887" />+                <normal x="0.33682" y="-0.323541" z="-0.884236" />+                <texcoord u="8.25" v="0.833333" />+            </vertex>+            <vertex>+                <position x="-27.0351" y="-55.4202" z="-61.8089" />+                <normal x="0.22725" y="-0.74841" z="-0.623089" />+                <texcoord u="8.25" v="0.75" />+            </vertex>+            <vertex>+                <position x="-29.7936" y="-59.1285" z="-54.7567" />+                <normal x="0.059705" y="-0.978347" z="-0.198172" />+                <texcoord u="8.25" v="0.666667" />+            </vertex>+            <vertex>+                <position x="-32.8559" y="-58.5538" z="-46.9218" />+                <normal x="-0.122212" y="-0.951905" z="0.280965" />+                <texcoord u="8.25" v="0.583333" />+            </vertex>+            <vertex>+                <position x="-35.4015" y="-53.85" z="-40.4034" />+                <normal x="-0.272308" y="-0.671827" z="0.688837" />+                <texcoord u="8.25" v="0.5" />+            </vertex>+            <vertex>+                <position x="-36.7482" y="-46.2775" z="-36.9482" />+                <normal x="-0.352413" y="-0.205335" z="0.91304" />+                <texcoord u="8.25" v="0.416667" />+            </vertex>+            <vertex>+                <position x="-36.5353" y="-37.8654" z="-37.4821" />+                <normal x="-0.338697" y="0.324673" z="0.883103" />+                <texcoord u="8.25" v="0.333333" />+            </vertex>+            <vertex>+                <position x="-34.8197" y="-30.8676" z="-41.8619" />+                <normal x="-0.229032" y="0.763559" z="0.603757" />+                <texcoord u="8.25" v="0.25" />+            </vertex>+            <vertex>+                <position x="-32.0612" y="-27.1593" z="-48.9141" />+                <normal x="-0.0533964" y="0.985259" z="0.162524" />+                <texcoord u="8.25" v="0.166667" />+            </vertex>+            <vertex>+                <position x="-28.9989" y="-27.734" z="-56.749" />+                <normal x="0.135771" y="0.939167" z="-0.315486" />+                <texcoord u="8.25" v="0.0833335" />+            </vertex>+            <vertex>+                <position x="-18.5824" y="-32.9301" z="-60.2179" />+                <normal x="0.310092" y="0.713598" z="-0.628188" />+                <texcoord u="8.33333" v="1" />+            </vertex>+            <vertex>+                <position x="-16.528" y="-40.6844" z="-62.815" />+                <normal x="0.480023" y="0.131633" z="-0.867324" />+                <texcoord u="8.33333" v="0.916667" />+            </vertex>+            <vertex>+                <position x="-16.5694" y="-49.0323" z="-61.6301" />+                <normal x="0.470952" y="-0.374769" z="-0.798594" />+                <texcoord u="8.33333" v="0.833333" />+            </vertex>+            <vertex>+                <position x="-18.6957" y="-55.7372" z="-56.9804" />+                <normal x="0.339019" y="-0.783492" z="-0.520775" />+                <texcoord u="8.33333" v="0.75" />+            </vertex>+            <vertex>+                <position x="-22.3369" y="-59.0023" z="-50.1121" />+                <normal x="0.11897" y="-0.987314" z="-0.105154" />+                <texcoord u="8.33333" v="0.666667" />+            </vertex>+            <vertex>+                <position x="-26.5175" y="-57.9529" z="-42.8653" />+                <normal x="-0.132381" y="-0.930896" z="0.340453" />+                <texcoord u="8.33333" v="0.583333" />+            </vertex>+            <vertex>+                <position x="-30.1173" y="-52.8701" z="-37.1819" />+                <normal x="-0.350322" y="-0.624719" z="0.697855" />+                <texcoord u="8.33333" v="0.5" />+            </vertex>+            <vertex>+                <position x="-32.1717" y="-45.1158" z="-34.5848" />+                <normal x="-0.476856" y="-0.144853" z="0.866964" />+                <texcoord u="8.33333" v="0.416667" />+            </vertex>+            <vertex>+                <position x="-32.1303" y="-36.7679" z="-35.7697" />+                <normal x="-0.473788" y="0.379177" z="0.794827" />+                <texcoord u="8.33333" v="0.333333" />+            </vertex>+            <vertex>+                <position x="-30.0041" y="-30.063" z="-40.4193" />+                <normal x="-0.33775" y="0.796582" z="0.50138" />+                <texcoord u="8.33333" v="0.25" />+            </vertex>+            <vertex>+                <position x="-26.3629" y="-26.7979" z="-47.2877" />+                <normal x="-0.108236" y="0.991297" z="0.0749314" />+                <texcoord u="8.33333" v="0.166667" />+            </vertex>+            <vertex>+                <position x="-22.1822" y="-27.8473" z="-54.5345" />+                <normal x="0.148337" y="0.918426" z="-0.366728" />+                <texcoord u="8.33333" v="0.0833335" />+            </vertex>+            <vertex>+                <position x="-11.3414" y="-33.0317" z="-56.2717" />+                <normal x="0.375608" y="0.674003" z="-0.636112" />+                <texcoord u="8.41667" v="1" />+            </vertex>+            <vertex>+                <position x="-8.92146" y="-40.9157" z="-58.0272" />+                <normal x="0.579856" y="0.0798474" z="-0.810797" />+                <texcoord u="8.41667" v="0.916667" />+            </vertex>+            <vertex>+                <position x="-9.03927" y="-49.1571" z="-56.2497" />+                <normal x="0.568669" y="-0.421343" z="-0.706459" />+                <texcoord u="8.41667" v="0.833333" />+            </vertex>+            <vertex>+                <position x="-11.6632" y="-55.5478" z="-51.4156" />+                <normal x="0.408359" y="-0.812312" z="-0.416403" />+                <texcoord u="8.41667" v="0.75" />+            </vertex>+            <vertex>+                <position x="-16.0902" y="-58.3752" z="-44.82" />+                <normal x="0.140672" y="-0.989935" z="-0.0155184" />+                <texcoord u="8.41667" v="0.666667" />+            </vertex>+            <vertex>+                <position x="-21.1341" y="-56.8819" z="-38.2303" />+                <normal x="-0.165119" y="-0.905296" z="0.391375" />+                <texcoord u="8.41667" v="0.583333" />+            </vertex>+            <vertex>+                <position x="-25.4433" y="-51.4679" z="-33.4122" />+                <normal x="-0.429092" y="-0.576713" z="0.695185" />+                <texcoord u="8.41667" v="0.5" />+            </vertex>+            <vertex>+                <position x="-27.8632" y="-43.584" z="-31.6567" />+                <normal x="-0.579438" y="-0.088188" z="0.810231" />+                <texcoord u="8.41667" v="0.416667" />+            </vertex>+            <vertex>+                <position x="-27.7454" y="-35.3425" z="-33.4341" />+                <normal x="-0.57138" y="0.426927" z="0.700898" />+                <texcoord u="8.41667" v="0.333333" />+            </vertex>+            <vertex>+                <position x="-25.1214" y="-28.9519" z="-38.2683" />+                <normal x="-0.404949" y="0.822846" z="0.398675" />+                <texcoord u="8.41667" v="0.25" />+            </vertex>+            <vertex>+                <position x="-20.6944" y="-26.1244" z="-44.8639" />+                <normal x="-0.128528" y="0.991667" z="-0.00875879" />+                <texcoord u="8.41667" v="0.166667" />+            </vertex>+            <vertex>+                <position x="-15.6506" y="-27.6178" z="-51.4536" />+                <normal x="0.180018" y="0.893857" z="-0.410625" />+                <texcoord u="8.41667" v="0.0833335" />+            </vertex>+            <vertex>+                <position x="-4.77411" y="-32.7973" z="-51.6594" />+                <normal x="0.439656" y="0.635261" z="-0.634938" />+                <texcoord u="8.5" v="1" />+            </vertex>+            <vertex>+                <position x="-2.22563" y="-40.7704" z="-52.674" />+                <normal x="0.659219" y="0.0328953" z="-0.751232" />+                <texcoord u="8.5" v="0.916667" />+            </vertex>+            <vertex>+                <position x="-2.56516" y="-48.888" z="-50.4194" />+                <normal x="0.636597" y="-0.461884" z="-0.617582" />+                <texcoord u="8.5" v="0.833333" />+            </vertex>+            <vertex>+                <position x="-5.70172" y="-54.9751" z="-45.4996" />+                <normal x="0.446196" y="-0.835389" z="-0.320989" />+                <texcoord u="8.5" v="0.75" />+            </vertex>+            <vertex>+                <position x="-10.7949" y="-57.4005" z="-39.2329" />+                <normal x="0.137493" y="-0.988597" z="0.0614142" />+                <texcoord u="8.5" v="0.666667" />+            </vertex>+            <vertex>+                <position x="-16.4799" y="-55.5144" z="-33.2985" />+                <normal x="-0.209117" y="-0.878834" z="0.428861" />+                <texcoord u="8.5" v="0.583333" />+            </vertex>+            <vertex>+                <position x="-21.2336" y="-49.8223" z="-29.2864" />+                <normal x="-0.501945" y="-0.531765" z="0.682112" />+                <texcoord u="8.5" v="0.5" />+            </vertex>+            <vertex>+                <position x="-23.782" y="-41.8492" z="-28.2718" />+                <normal x="-0.660622" y="-0.0379395" z="0.749759" />+                <texcoord u="8.5" v="0.416667" />+            </vertex>+            <vertex>+                <position x="-23.4425" y="-33.7316" z="-30.5264" />+                <normal x="-0.638855" y="0.467457" z="0.611022" />+                <texcoord u="8.5" v="0.333333" />+            </vertex>+            <vertex>+                <position x="-20.306" y="-27.6445" z="-35.4462" />+                <normal x="-0.441851" y="0.843465" z="0.305508" />+                <texcoord u="8.5" v="0.25" />+            </vertex>+            <vertex>+                <position x="-15.2128" y="-25.2191" z="-41.7129" />+                <normal x="-0.125998" y="0.98876" z="-0.0804927" />+                <texcoord u="8.5" v="0.166667" />+            </vertex>+            <vertex>+                <position x="-9.52775" y="-27.1051" z="-47.6473" />+                <normal x="0.221345" y="0.868795" z="-0.442947" />+                <texcoord u="8.5" v="0.0833335" />+            </vertex>+            <vertex>+                <position x="1.11303" y="-32.2539" z="-46.5903" />+                <normal x="0.497338" y="0.600806" z="-0.625849" />+                <texcoord u="8.58333" v="1" />+            </vertex>+            <vertex>+                <position x="3.65738" y="-40.2819" z="-47.0036" />+                <normal x="0.720652" y="-0.00645652" z="-0.693267" />+                <texcoord u="8.58333" v="0.916667" />+            </vertex>+            <vertex>+                <position x="3.04628" y="-48.2789" z="-44.4016" />+                <normal x="0.682703" y="-0.494725" z="-0.537739" />+                <texcoord u="8.58333" v="0.833333" />+            </vertex>+            <vertex>+                <position x="-0.556545" y="-54.1019" z="-39.4816" />+                <normal x="0.464139" y="-0.852651" z="-0.23992" />+                <texcoord u="8.58333" v="0.75" />+            </vertex>+            <vertex>+                <position x="-6.18571" y="-56.1907" z="-33.5618" />+                <normal x="0.121918" y="-0.984984" z="0.122242" />+                <texcoord u="8.58333" v="0.666667" />+            </vertex>+            <vertex>+                <position x="-12.3329" y="-53.9856" z="-28.2284" />+                <normal x="-0.254243" y="-0.854613" z="0.452766" />+                <texcoord u="8.58333" v="0.583333" />+            </vertex>+            <vertex>+                <position x="-17.3509" y="-48.0775" z="-24.9106" />+                <normal x="-0.564082" y="-0.49342" z="0.662079" />+                <texcoord u="8.58333" v="0.5" />+            </vertex>+            <vertex>+                <position x="-19.8953" y="-40.0494" z="-24.4973" />+                <normal x="-0.722475" y="0.00323155" z="0.691389" />+                <texcoord u="8.58333" v="0.416667" />+            </vertex>+            <vertex>+                <position x="-19.2842" y="-32.0525" z="-27.0993" />+                <normal x="-0.684102" y="0.499589" z="0.531427" />+                <texcoord u="8.58333" v="0.333333" />+            </vertex>+            <vertex>+                <position x="-15.6814" y="-26.2295" z="-32.0194" />+                <normal x="-0.459389" y="0.858698" z="0.227156" />+                <texcoord u="8.58333" v="0.25" />+            </vertex>+            <vertex>+                <position x="-10.0522" y="-24.1407" z="-37.9391" />+                <normal x="-0.111601" y="0.984272" z="-0.136943" />+                <texcoord u="8.58333" v="0.166667" />+            </vertex>+            <vertex>+                <position x="-3.90503" y="-26.3457" z="-43.2725" />+                <normal x="0.264116" y="0.846028" z="-0.46312" />+                <texcoord u="8.58333" v="0.0833335" />+            </vertex>+            <vertex>+                <position x="6.38172" y="-31.4406" z="-41.2307" />+                <normal x="0.54545" y="0.572728" z="-0.611937" />+                <texcoord u="8.66667" v="1" />+            </vertex>+            <vertex>+                <position x="8.86425" y="-39.4984" z="-41.1765" />+                <normal x="0.766922" y="-0.0367742" z="-0.640685" />+                <texcoord u="8.66667" v="0.916667" />+            </vertex>+            <vertex>+                <position x="7.98885" y="-47.39" z="-38.3391" />+                <normal x="0.713735" y="-0.519311" z="-0.469999" />+                <texcoord u="8.66667" v="0.833333" />+            </vertex>+            <vertex>+                <position x="3.99008" y="-53.0009" z="-33.4788" />+                <normal x="0.471096" y="-0.864619" z="-0.174647" />+                <texcoord u="8.66667" v="0.75" />+            </vertex>+            <vertex>+                <position x="-2.06059" y="-54.8275" z="-27.8978" />+                <normal x="0.102497" y="-0.980506" z="0.167636" />+                <texcoord u="8.66667" v="0.666667" />+            </vertex>+            <vertex>+                <position x="-8.54189" y="-52.3805" z="-23.0916" />+                <normal x="-0.294863" y="-0.834359" z="0.465726" />+                <texcoord u="8.66667" v="0.583333" />+            </vertex>+            <vertex>+                <position x="-13.7172" y="-46.3156" z="-20.348" />+                <normal x="-0.614567" y="-0.462961" z="0.638729" />+                <texcoord u="8.66667" v="0.5" />+            </vertex>+            <vertex>+                <position x="-16.1997" y="-38.2578" z="-20.4022" />+                <normal x="-0.768969" y="0.0348871" z="0.638334" />+                <texcoord u="8.66667" v="0.416667" />+            </vertex>+            <vertex>+                <position x="-15.3243" y="-30.3661" z="-23.2396" />+                <normal x="-0.714629" y="0.523484" z="0.463972" />+                <texcoord u="8.66667" v="0.333333" />+            </vertex>+            <vertex>+                <position x="-11.3255" y="-24.7553" z="-28.0999" />+                <normal x="-0.466626" y="0.869107" z="0.164051" />+                <texcoord u="8.66667" v="0.25" />+            </vertex>+            <vertex>+                <position x="-5.27485" y="-22.9287" z="-33.6809" />+                <normal x="-0.0938902" y="0.97934" z="-0.179104" />+                <texcoord u="8.66667" v="0.166667" />+            </vertex>+            <vertex>+                <position x="1.20645" y="-25.3756" z="-38.4871" />+                <normal x="0.302329" y="0.827239" z="-0.473575" />+                <texcoord u="8.66667" v="0.0833335" />+            </vertex>+            <vertex>+                <position x="11.0884" y="-30.3818" z="-35.7202" />+                <normal x="0.583144" y="0.552122" z="-0.595906" />+                <texcoord u="8.75" v="1" />+            </vertex>+            <vertex>+                <position x="13.5063" y="-38.4495" z="-35.3204" />+                <normal x="0.801443" y="-0.0577053" z="-0.595281" />+                <texcoord u="8.75" v="0.916667" />+            </vertex>+            <vertex>+                <position x="12.4175" y="-46.2595" z="-32.335" />+                <normal x="0.735519" y="-0.535745" z="-0.414717" />+                <texcoord u="8.75" v="0.833333" />+            </vertex>+            <vertex>+                <position x="8.11347" y="-51.7191" z="-27.5639" />+                <normal x="0.473895" y="-0.871817" z="-0.123929" />+                <texcoord u="8.75" v="0.75" />+            </vertex>+            <vertex>+                <position x="1.74763" y="-53.3654" z="-22.2856" />+                <normal x="0.0853511" y="-0.97603" z="0.200203" />+                <texcoord u="8.75" v="0.666667" />+            </vertex>+            <vertex>+                <position x="-4.97433" y="-50.7573" z="-17.9144" />+                <normal x="-0.327189" y="-0.819125" z="0.47115" />+                <texcoord u="8.75" v="0.583333" />+            </vertex>+            <vertex>+                <position x="-10.2513" y="-44.5937" z="-15.6215" />+                <normal x="-0.653016" y="-0.441347" z="0.615453" />+                <texcoord u="8.75" v="0.5" />+            </vertex>+            <vertex>+                <position x="-12.6693" y="-36.5259" z="-16.0214" />+                <normal x="-0.803165" y="0.0564334" z="0.593078" />+                <texcoord u="8.75" v="0.416667" />+            </vertex>+            <vertex>+                <position x="-11.5804" y="-28.7159" z="-19.0068" />+                <normal x="-0.735945" y="0.539017" z="0.409691" />+                <texcoord u="8.75" v="0.333333" />+            </vertex>+            <vertex>+                <position x="-7.27639" y="-23.2563" z="-23.7778" />+                <normal x="-0.469938" y="0.875087" z="0.115676" />+                <texcoord u="8.75" v="0.25" />+            </vertex>+            <vertex>+                <position x="-0.910558" y="-21.61" z="-29.0561" />+                <normal x="-0.0783421" y="0.974804" z="-0.208853" />+                <texcoord u="8.75" v="0.166667" />+            </vertex>+            <vertex>+                <position x="5.8114" y="-24.2181" z="-33.4273" />+                <normal x="0.332913" y="0.813407" z="-0.477009" />+                <texcoord u="8.75" v="0.0833335" />+            </vertex>+            <vertex>+                <position x="15.3181" y="-29.1165" z="-30.155" />+                <normal x="0.610801" y="0.538767" z="-0.580217" />+                <texcoord u="8.83334" v="1" />+            </vertex>+            <vertex>+                <position x="17.6963" y="-37.1797" z="-29.5041" />+                <normal x="0.826942" y="-0.0701861" z="-0.557889" />+                <texcoord u="8.83334" v="0.916667" />+            </vertex>+            <vertex>+                <position x="16.4593" y="-44.932" z="-26.4275" />+                <normal x="0.75184" y="-0.545005" z="-0.371086" />+                <texcoord u="8.83334" v="0.833333" />+            </vertex>+            <vertex>+                <position x="11.9387" y="-50.2963" z="-21.7496" />+                <normal x="0.476395" y="-0.875064" z="-0.0855019" />+                <texcoord u="8.83334" v="0.75" />+            </vertex>+            <vertex>+                <position x="5.34559" y="-51.8352" z="-16.7239" />+                <normal x="0.0733162" y="-0.972031" z="0.223117" />+                <texcoord u="8.83334" v="0.666667" />+            </vertex>+            <vertex>+                <position x="-1.55327" y="-49.1363" z="-12.697" />+                <normal x="-0.350305" y="-0.80885" z="0.472279" />+                <texcoord u="8.83334" v="0.583333" />+            </vertex>+            <vertex>+                <position x="-6.90937" y="-42.9228" z="-10.7478" />+                <normal x="-0.680753" y="-0.427876" z="0.594557" />+                <texcoord u="8.83334" v="0.5" />+            </vertex>+            <vertex>+                <position x="-9.28757" y="-34.8596" z="-11.3988" />+                <normal x="-0.828164" y="0.0690392" z="0.556217" />+                <texcoord u="8.83334" v="0.416667" />+            </vertex>+            <vertex>+                <position x="-8.0506" y="-27.1072" z="-14.4754" />+                <normal x="-0.751963" y="0.547374" z="0.367333" />+                <texcoord u="8.83334" v="0.333333" />+            </vertex>+            <vertex>+                <position x="-3.52993" y="-21.743" z="-19.1532" />+                <normal x="-0.473031" y="0.877461" z="0.0794001" />+                <texcoord u="8.83334" v="0.25" />+            </vertex>+            <vertex>+                <position x="3.06313" y="-20.2041" z="-24.179" />+                <normal x="-0.0675841" y="0.970964" z="-0.229482" />+                <texcoord u="8.83334" v="0.166667" />+            </vertex>+            <vertex>+                <position x="9.962" y="-22.903" z="-28.2059" />+                <normal x="0.354945" y="0.804294" z="-0.476577" />+                <texcoord u="8.83334" v="0.0833335" />+            </vertex>+            <vertex>+                <position x="19.1689" y="-27.6884" z="-24.5873" />+                <normal x="0.629629" y="0.531253" z="-0.566866" />+                <texcoord u="8.91667" v="1" />+            </vertex>+            <vertex>+                <position x="21.5376" y="-35.7373" z="-23.7508" />+                <normal x="0.845526" y="-0.0760723" z="-0.528487" />+                <texcoord u="8.91667" v="0.916667" />+            </vertex>+            <vertex>+                <position x="20.2116" y="-43.4511" z="-20.615" />+                <normal x="0.764833" y="-0.54877" z="-0.337463" />+                <texcoord u="8.91667" v="0.833333" />+            </vertex>+            <vertex>+                <position x="15.5463" y="-48.763" z="-16.0201" />+                <normal x="0.480074" y="-0.875407" z="-0.0564922" />+                <texcoord u="8.91667" v="0.75" />+            </vertex>+            <vertex>+                <position x="8.79171" y="-50.2496" z="-11.1972" />+                <normal x="0.0666884" y="-0.968553" z="0.239704" />+                <texcoord u="8.91667" v="0.666667" />+            </vertex>+            <vertex>+                <position x="1.75771" y="-47.5126" z="-7.43874" />+                <normal x="-0.365252" y="-0.802437" z="0.471896" />+                <texcoord u="8.91667" v="0.583333" />+            </vertex>+            <vertex>+                <position x="-3.67093" y="-41.2854" z="-5.75169" />+                <normal x="-0.69983" y="-0.420548" z="0.577388" />+                <texcoord u="8.91667" v="0.5" />+            </vertex>+            <vertex>+                <position x="-6.03962" y="-33.2365" z="-6.58813" />+                <normal x="-0.846405" y="0.0749632" z="0.527237" />+                <texcoord u="8.91667" v="0.416667" />+            </vertex>+            <vertex>+                <position x="-4.71366" y="-25.5227" z="-9.72394" />+                <normal x="-0.764901" y="0.550341" z="0.334741" />+                <texcoord u="8.91667" v="0.333333" />+            </vertex>+            <vertex>+                <position x="-0.048355" y="-20.2108" z="-14.3189" />+                <normal x="-0.477481" y="0.877097" z="0.0520828" />+                <texcoord u="8.91667" v="0.25" />+            </vertex>+            <vertex>+                <position x="6.70624" y="-18.7242" z="-19.1417" />+                <normal x="-0.0622572" y="0.967692" z="-0.244327" />+                <texcoord u="8.91667" v="0.166667" />+            </vertex>+            <vertex>+                <position x="13.7402" y="-21.4612" z="-22.9002" />+                <normal x="0.368873" y="0.79891" z="-0.475053" />+                <texcoord u="8.91667" v="0.0833335" />+            </vertex>+            <vertex>+                <position x="22.7156" y="-26.1286" z="-19.0588" />+                <normal x="0.641225" y="0.527884" z="-0.556928" />+                <texcoord u="9" v="1" />+            </vertex>+            <vertex>+                <position x="25.1064" y="-34.1548" z="-18.08" />+                <normal x="0.85889" y="-0.0773508" z="-0.506286" />+                <texcoord u="9" v="0.916667" />+            </vertex>+            <vertex>+                <position x="23.7458" y="-41.8429" z="-14.8962" />+                <normal x="0.775774" y="-0.548594" z="-0.3118" />+                <texcoord u="9" v="0.833333" />+            </vertex>+            <vertex>+                <position x="18.9984" y="-47.1328" z="-10.3603" />+                <normal x="0.485513" y="-0.873563" z="-0.0341285" />+                <texcoord u="9" v="0.75" />+            </vertex>+            <vertex>+                <position x="12.1363" y="-48.607" z="-5.68784" />+                <normal x="0.0652461" y="-0.965328" z="0.252754" />+                <texcoord u="9" v="0.666667" />+            </vertex>+            <vertex>+                <position x="4.99808" y="-45.8706" z="-2.13075" />+                <normal x="-0.372978" y="-0.798746" z="0.472114" />+                <texcoord u="9" v="0.583333" />+            </vertex>+            <vertex>+                <position x="-0.503489" y="-39.6568" z="-0.642142" />+                <normal x="-0.71167" y="-0.417677" z="0.564864" />+                <texcoord u="9" v="0.5" />+            </vertex>+            <vertex>+                <position x="-2.89428" y="-31.6306" z="-1.6209" />+                <normal x="-0.859378" y="0.0759897" z="0.505663" />+                <texcoord u="9" v="0.416667" />+            </vertex>+            <vertex>+                <position x="-1.5337" y="-23.9425" z="-4.80476" />+                <normal x="-0.775883" y="0.549336" z="0.310219" />+                <texcoord u="9" v="0.333333" />+            </vertex>+            <vertex>+                <position x="3.2137" y="-18.6527" z="-9.3406" />+                <normal x="-0.483694" y="0.874678" z="0.0312787" />+                <texcoord u="9" v="0.25" />+            </vertex>+            <vertex>+                <position x="10.0758" y="-17.1784" z="-14.0131" />+                <normal x="-0.0618831" y="0.964718" z="-0.255911" />+                <texcoord u="9" v="0.166667" />+            </vertex>+            <vertex>+                <position x="17.214" y="-19.9148" z="-17.5702" />+                <normal x="0.375961" y="0.796039" z="-0.474315" />+                <texcoord u="9" v="0.0833335" />+            </vertex>+            <vertex>+                <position x="26.0359" y="-24.4639" z="-13.5858" />+                <normal x="0.64692" y="0.526955" z="-0.551192" />+                <texcoord u="9.08334" v="1" />+            </vertex>+            <vertex>+                <position x="28.4725" y="-32.461" z="-12.4886" />+                <normal x="0.868092" y="-0.0759083" z="-0.490565" />+                <texcoord u="9.08334" v="0.916667" />+            </vertex>+            <vertex>+                <position x="27.1181" y="-40.1288" z="-9.25384" />+                <normal x="0.785125" y="-0.546007" z="-0.292326" />+                <texcoord u="9.08334" v="0.833333" />+            </vertex>+            <vertex>+                <position x="22.3355" y="-45.4129" z="-4.74827" />+                <normal x="0.492349" y="-0.870251" z="-0.0160245" />+                <texcoord u="9.08334" v="0.75" />+            </vertex>+            <vertex>+                <position x="15.4062" y="-46.8972" z="-0.179166" />+                <normal x="0.0678141" y="-0.961971" z="0.2646" />+                <texcoord u="9.08334" v="0.666667" />+            </vertex>+            <vertex>+                <position x="8.18703" y="-44.1842" z="3.22919" />+                <normal x="-0.375162" y="-0.796304" z="0.474504" />+                <texcoord u="9.08334" v="0.583333" />+            </vertex>+            <vertex>+                <position x="2.61225" y="-38.0007" z="4.56354" />+                <normal x="-0.717947" y="-0.417099" z="0.557297" />+                <texcoord u="9.08334" v="0.5" />+            </vertex>+            <vertex>+                <position x="0.175649" y="-30.0036" z="3.46633" />+                <normal x="-0.868282" y="0.0743039" z="0.490474" />+                <texcoord u="9.08334" v="0.416667" />+            </vertex>+            <vertex>+                <position x="1.53012" y="-22.3357" z="0.231574" />+                <normal x="-0.785392" y="0.545924" z="0.291765" />+                <texcoord u="9.08334" v="0.333333" />+            </vertex>+            <vertex>+                <position x="6.31272" y="-17.0517" z="-4.27399" />+                <normal x="-0.491437" y="0.870791" z="0.0145896" />+                <texcoord u="9.08334" v="0.25" />+            </vertex>+            <vertex>+                <position x="13.242" y="-15.5673" z="-8.8431" />+                <normal x="-0.0656511" y="0.961614" z="-0.266438" />+                <texcoord u="9.08334" v="0.166667" />+            </vertex>+            <vertex>+                <position x="20.4612" y="-18.2804" z="-12.2515" />+                <normal x="0.377399" y="0.794427" z="-0.475873" />+                <texcoord u="9.08334" v="0.0833335" />+            </vertex>+            <vertex>+                <position x="29.186" y="-22.7161" z="-8.19536" />+                <normal x="0.648237" y="0.526542" z="-0.550039" />+                <texcoord u="9.16667" v="1" />+            </vertex>+            <vertex>+                <position x="31.6858" y="-30.6772" z="-6.98464" />+                <normal x="0.874005" y="-0.0738831" z="-0.480267" />+                <texcoord u="9.16667" v="0.916667" />+            </vertex>+            <vertex>+                <position x="30.3703" y="-38.3212" z="-3.6781" />+                <normal x="0.792984" y="-0.54256" z="-0.277137" />+                <texcoord u="9.16667" v="0.833333" />+            </vertex>+            <vertex>+                <position x="25.592" y="-43.5999" z="0.838273" />+                <normal x="0.499972" y="-0.866042" z="4.2792e-05" />+                <texcoord u="9.16667" v="0.75" />+            </vertex>+            <vertex>+                <position x="18.6312" y="-45.0989" z="5.35432" />+                <normal x="0.0733133" y="-0.958009" z="0.277208" />+                <texcoord u="9.16667" v="0.666667" />+            </vertex>+            <vertex>+                <position x="11.353" y="-42.4164" z="8.65997" />+                <normal x="-0.373059" y="-0.793808" z="0.480308" />+                <texcoord u="9.16667" v="0.583333" />+            </vertex>+            <vertex>+                <position x="5.70768" y="-36.2713" z="9.86948" />+                <normal x="-0.719791" y="-0.417061" z="0.554942" />+                <texcoord u="9.16667" v="0.5" />+            </vertex>+            <vertex>+                <position x="3.20785" y="-28.3102" z="8.65876" />+                <normal x="-0.873836" y="0.0716826" z="0.480909" />+                <texcoord u="9.16667" v="0.416667" />+            </vertex>+            <vertex>+                <position x="4.52334" y="-20.6662" z="5.35222" />+                <normal x="-0.793491" y="0.541476" z="0.277804" />+                <texcoord u="9.16667" v="0.333333" />+            </vertex>+            <vertex>+                <position x="9.30167" y="-15.3875" z="0.835851" />+                <normal x="-0.500008" y="0.866021" z="2.72157e-05" />+                <texcoord u="9.16667" v="0.25" />+            </vertex>+            <vertex>+                <position x="16.2625" y="-13.8886" z="-3.6802" />+                <normal x="-0.0722007" y="0.957933" z="-0.277761" />+                <texcoord u="9.16667" v="0.166667" />+            </vertex>+            <vertex>+                <position x="23.5406" y="-16.571" z="-6.98585" />+                <normal x="0.374847" y="0.792615" z="-0.480885" />+                <texcoord u="9.16667" v="0.0833335" />+            </vertex>+            <vertex>+                <position x="32.228" y="-20.9039" z="-2.89658" />+                <normal x="0.646533" y="0.524594" z="-0.553891" />+                <texcoord u="9.25" v="1" />+            </vertex>+            <vertex>+                <position x="34.7965" y="-28.8228" z="-1.55923" />+                <normal x="0.877199" y="-0.0734036" z="-0.474483" />+                <texcoord u="9.25" v="0.916667" />+            </vertex>+            <vertex>+                <position x="33.538" y="-36.4297" z="1.85328" />+                <normal x="0.79914" y="-0.539793" z="-0.264574" />+                <texcoord u="9.25" v="0.833333" />+            </vertex>+            <vertex>+                <position x="28.7897" y="-41.6865" z="6.42655" />+                <normal x="0.50746" y="-0.861526" z="0.0160181" />+                <texcoord u="9.25" v="0.75" />+            </vertex>+            <vertex>+                <position x="21.8239" y="-43.1844" z="10.9352" />+                <normal x="0.0803186" y="-0.952953" z="0.292283" />+                <texcoord u="9.25" v="0.666667" />+            </vertex>+            <vertex>+                <position x="14.507" y="-40.5223" z="14.1711" />+                <normal x="-0.368256" y="-0.789799" z="0.490514" />+                <texcoord u="9.25" v="0.583333" />+            </vertex>+            <vertex>+                <position x="8.79967" y="-34.4133" z="15.2672" />+                <normal x="-0.718528" y="-0.415472" z="0.557764" />+                <texcoord u="9.25" v="0.5" />+            </vertex>+            <vertex>+                <position x="6.23113" y="-26.4945" z="13.9299" />+                <normal x="-0.876705" y="0.0703023" z="0.475864" />+                <texcoord u="9.25" v="0.416667" />+            </vertex>+            <vertex>+                <position x="7.48963" y="-18.8875" z="10.5174" />+                <normal x="-0.799973" y="0.537647" z="0.266418" />+                <texcoord u="9.25" v="0.333333" />+            </vertex>+            <vertex>+                <position x="12.2379" y="-13.6308" z="5.94409" />+                <normal x="-0.508374" y="0.861012" z="-0.0146501" />+                <texcoord u="9.25" v="0.25" />+            </vertex>+            <vertex>+                <position x="19.2038" y="-12.1328" z="1.43546" />+                <normal x="-0.0799842" y="0.953112" z="-0.291856" />+                <texcoord u="9.25" v="0.166667" />+            </vertex>+            <vertex>+                <position x="26.5206" y="-14.7949" z="-1.80045" />+                <normal x="0.369918" y="0.788999" z="-0.490551" />+                <texcoord u="9.25" v="0.0833335" />+            </vertex>+            <vertex>+                <position x="35.225" y="-19.0268" z="2.32038" />+                <normal x="0.642937" y="0.519442" z="-0.56286" />+                <texcoord u="9.33334" v="1" />+            </vertex>+            <vertex>+                <position x="37.8568" y="-26.8976" z="3.80959" />+                <normal x="0.878218" y="-0.0761902" z="-0.472153" />+                <texcoord u="9.33334" v="0.916667" />+            </vertex>+            <vertex>+                <position x="36.6581" y="-34.4481" z="7.36604" />+                <normal x="0.803444" y="-0.539039" z="-0.252814" />+                <texcoord u="9.33334" v="0.833333" />+            </vertex>+            <vertex>+                <position x="31.9499" y="-39.655" z="12.0368" />+                <normal x="0.513869" y="-0.857192" z="0.0340868" />+                <texcoord u="9.33334" v="0.75" />+            </vertex>+            <vertex>+                <position x="24.9939" y="-41.1232" z="16.5703" />+                <normal x="0.0872844" y="-0.946132" z="0.311796" />+                <texcoord u="9.33334" v="0.666667" />+            </vertex>+            <vertex>+                <position x="17.6539" y="-38.4593" z="19.7518" />+                <normal x="-0.362427" y="-0.782496" z="0.506307" />+                <texcoord u="9.33334" v="0.583333" />+            </vertex>+            <vertex>+                <position x="11.8966" y="-32.377" z="20.7289" />+                <normal x="-0.715409" y="-0.409925" z="0.56582" />+                <texcoord u="9.33334" v="0.5" />+            </vertex>+            <vertex>+                <position x="9.26477" y="-24.5062" z="19.2397" />+                <normal x="-0.877363" y="0.0724592" z="0.474325" />+                <texcoord u="9.33334" v="0.416667" />+            </vertex>+            <vertex>+                <position x="10.4635" y="-16.9558" z="15.6832" />+                <normal x="-0.804514" y="0.535966" z="0.255926" />+                <texcoord u="9.33334" v="0.333333" />+            </vertex>+            <vertex>+                <position x="15.1717" y="-11.7489" z="11.0125" />+                <normal x="-0.515655" y="0.856227" z="-0.0312375" />+                <texcoord u="9.33334" v="0.25" />+            </vertex>+            <vertex>+                <position x="22.1277" y="-10.2806" z="6.47899" />+                <normal x="-0.0878563" y="0.946619" z="-0.310152" />+                <texcoord u="9.33334" v="0.166667" />+            </vertex>+            <vertex>+                <position x="29.4677" y="-12.9446" z="3.29745" />+                <normal x="0.363784" y="0.782321" z="-0.505604" />+                <texcoord u="9.33334" v="0.0833335" />+            </vertex>+            <vertex>+                <position x="38.2184" y="-17.0981" z="7.4288" />+                <normal x="0.638906" y="0.50865" z="-0.577126" />+                <texcoord u="9.41667" v="1" />+            </vertex>+            <vertex>+                <position x="40.8984" y="-24.9124" z="9.11649" />+                <normal x="0.87757" y="-0.0848201" z="-0.471887" />+                <texcoord u="9.41667" v="0.916667" />+            </vertex>+            <vertex>+                <position x="39.7526" y="-32.3728" z="12.8747" />+                <normal x="0.805484" y="-0.541983" z="-0.239686" />+                <texcoord u="9.41667" v="0.833333" />+            </vertex>+            <vertex>+                <position x="35.0879" y="-37.4804" z="17.6963" />+                <normal x="0.518125" y="-0.853435" z="0.0565301" />+                <texcoord u="9.41667" v="0.75" />+            </vertex>+            <vertex>+                <position x="28.1542" y="-38.8664" z="22.2895" />+                <normal x="0.0928608" y="-0.936731" z="0.337509" />+                <texcoord u="9.41667" v="0.666667" />+            </vertex>+            <vertex>+                <position x="20.8094" y="-36.1596" z="25.4235" />+                <normal x="-0.356858" y="-0.770268" z="0.528526" />+                <texcoord u="9.41667" v="0.583333" />+            </vertex>+            <vertex>+                <position x="15.0216" y="-30.0852" z="26.2585" />+                <normal x="-0.711413" y="-0.398467" z="0.578891" />+                <texcoord u="9.41667" v="0.5" />+            </vertex>+            <vertex>+                <position x="12.3415" y="-22.2709" z="24.5708" />+                <normal x="-0.876292" y="0.0799732" z="0.475096" />+                <texcoord u="9.41667" v="0.416667" />+            </vertex>+            <vertex>+                <position x="13.4873" y="-14.8105" z="20.8127" />+                <normal x="-0.806923" y="0.537719" z="0.244404" />+                <texcoord u="9.41667" v="0.333333" />+            </vertex>+            <vertex>+                <position x="18.152" y="-9.70301" z="15.991" />+                <normal x="-0.520895" y="0.852037" z="-0.0519728" />+                <texcoord u="9.41667" v="0.25" />+            </vertex>+            <vertex>+                <position x="25.0857" y="-8.31697" z="11.3978" />+                <normal x="-0.0942367" y="0.937626" z="-0.334629" />+                <texcoord u="9.41667" v="0.166667" />+            </vertex>+            <vertex>+                <position x="32.4305" y="-11.0238" z="8.26381" />+                <normal x="0.358211" y="0.770575" z="-0.527161" />+                <texcoord u="9.41667" v="0.0833335" />+            </vertex>+            <vertex>+                <position x="41.2542" y="-15.12" z="12.4182" />+                <normal x="0.635565" y="0.489799" z="-0.596786" />+                <texcoord u="9.5" v="1" />+            </vertex>+            <vertex>+                <position x="43.9573" y="-22.8643" z="14.3709" />+                <normal x="0.875672" y="-0.101307" z="-0.47216" />+                <texcoord u="9.5" v="0.916667" />+            </vertex>+            <vertex>+                <position x="42.8454" y="-30.1863" z="18.4016" />+                <normal x="0.805051" y="-0.549721" z="-0.222933" />+                <texcoord u="9.5" v="0.833333" />+            </vertex>+            <vertex>+                <position x="38.2165" y="-35.1242" z="23.4301" />+                <normal x="0.519446" y="-0.850194" z="0.0857101" />+                <texcoord u="9.5" v="0.75" />+            </vertex>+            <vertex>+                <position x="31.3109" y="-36.3547" z="28.1091" />+                <normal x="0.0958595" y="-0.923567" z="0.371261" />+                <texcoord u="9.5" v="0.666667" />+            </vertex>+            <vertex>+                <position x="23.9789" y="-33.5482" z="31.1848" />+                <normal x="-0.352859" y="-0.751095" z="0.557985" />+                <texcoord u="9.5" v="0.583333" />+            </vertex>+            <vertex>+                <position x="18.1852" y="-27.4567" z="31.8332" />+                <normal x="-0.707619" y="-0.37874" z="0.596516" />+                <texcoord u="9.5" v="0.5" />+            </vertex>+            <vertex>+                <position x="15.4821" y="-19.7123" z="29.8804" />+                <normal x="-0.874024" y="0.0949288" z="0.476518" />+                <texcoord u="9.5" v="0.416667" />+            </vertex>+            <vertex>+                <position x="16.5939" y="-12.3903" z="25.8498" />+                <normal x="-0.807022" y="0.54414" z="0.229404" />+                <texcoord u="9.5" v="0.333333" />+            </vertex>+            <vertex>+                <position x="21.2228" y="-7.45247" z="20.8213" />+                <normal x="-0.523254" y="0.848464" z="-0.0794637" />+                <texcoord u="9.5" v="0.25" />+            </vertex>+            <vertex>+                <position x="28.1284" y="-6.22195" z="16.1423" />+                <normal x="-0.0978725" y="0.924911" z="-0.367369" />+                <texcoord u="9.5" v="0.166667" />+            </vertex>+            <vertex>+                <position x="35.4604" y="-9.02845" z="13.0665" />+                <normal x="0.354492" y="0.751635" z="-0.55622" />+                <texcoord u="9.5" v="0.0833335" />+            </vertex>+            <vertex>+                <position x="44.372" y="-13.0703" z="17.2868" />+                <normal x="0.633629" y="0.460901" z="-0.621357" />+                <texcoord u="9.58334" v="1" />+            </vertex>+            <vertex>+                <position x="47.0696" y="-20.7206" z="19.587" />+                <normal x="0.873026" y="-0.12682" z="-0.470895" />+                <texcoord u="9.58334" v="0.916667" />+            </vertex>+            <vertex>+                <position x="45.9662" y="-27.8412" z="23.9659" />+                <normal x="0.80235" y="-0.562407" z="-0.199832" />+                <texcoord u="9.58334" v="0.833333" />+            </vertex>+            <vertex>+                <position x="41.3575" y="-32.5241" z="29.2502" />+                <normal x="0.517636" y="-0.84652" z="0.124323" />+                <texcoord u="9.58334" v="0.75" />+            </vertex>+            <vertex>+                <position x="34.4782" y="-33.5145" z="34.024" />+                <normal x="0.0957214" y="-0.904757" z="0.415032" />+                <texcoord u="9.58334" v="0.666667" />+            </vertex>+            <vertex>+                <position x="27.1718" y="-30.5471" z="37.0083" />+                <normal x="-0.35117" y="-0.722593" z="0.595432" />+                <texcoord u="9.58334" v="0.583333" />+            </vertex>+            <vertex>+                <position x="21.396" y="-24.417" z="37.4032" />+                <normal x="-0.704693" y="-0.348475" z="0.61804" />+                <texcoord u="9.58334" v="0.5" />+            </vertex>+            <vertex>+                <position x="18.6983" y="-16.7668" z="35.1031" />+                <normal x="-0.870952" y="0.118856" z="0.476777" />+                <texcoord u="9.58334" v="0.416667" />+            </vertex>+            <vertex>+                <position x="19.8017" y="-9.64622" z="30.7242" />+                <normal x="-0.804864" y="0.555621" z="0.208518" />+                <texcoord u="9.58334" v="0.333333" />+            </vertex>+            <vertex>+                <position x="24.4105" y="-4.96332" z="25.4399" />+                <normal x="-0.522486" y="0.844718" z="-0.116012" />+                <texcoord u="9.58334" v="0.25" />+            </vertex>+            <vertex>+                <position x="31.2897" y="-3.97286" z="20.666" />+                <normal x="-0.098293" y="0.906803" z="-0.409935" />+                <texcoord u="9.58334" v="0.166667" />+            </vertex>+            <vertex>+                <position x="38.5961" y="-6.94024" z="17.6818" />+                <normal x="0.353238" y="0.723445" z="-0.59317" />+                <texcoord u="9.58334" v="0.0833335" />+            </vertex>+            <vertex>+                <position x="47.5968" y="-10.9324" z="22.014" />+                <normal x="0.633618" y="0.419307" z="-0.650162" />+                <texcoord u="9.66667" v="1" />+            </vertex>+            <vertex>+                <position x="50.2596" y="-18.4442" z="24.7665" />+                <normal x="0.870036" y="-0.162464" z="-0.46545" />+                <texcoord u="9.66667" v="0.916667" />+            </vertex>+            <vertex>+                <position x="49.1368" y="-25.2744" z="29.5814" />+                <normal x="0.797632" y="-0.579488" z="-0.167265" />+                <texcoord u="9.66667" v="0.833333" />+            </vertex>+            <vertex>+                <position x="44.5291" y="-29.5926" z="35.1686" />+                <normal x="0.51279" y="-0.840484" z="0.175024" />+                <texcoord u="9.66667" v="0.75" />+            </vertex>+            <vertex>+                <position x="37.6712" y="-30.242" z="40.0309" />+                <normal x="0.092362" y="-0.877666" z="0.470289" />+                <texcoord u="9.66667" v="0.666667" />+            </vertex>+            <vertex>+                <position x="30.4007" y="-27.0485" z="42.8655" />+                <normal x="-0.352076" y="-0.682215" z="0.640801" />+                <texcoord u="9.66667" v="0.583333" />+            </vertex>+            <vertex>+                <position x="24.6657" y="-20.8677" z="42.913" />+                <normal x="-0.703113" y="-0.3059" z="0.641917" />+                <texcoord u="9.66667" v="0.5" />+            </vertex>+            <vertex>+                <position x="22.0028" y="-13.3559" z="40.1605" />+                <normal x="-0.867666" y="0.152329" z="0.473235" />+                <texcoord u="9.66667" v="0.416667" />+            </vertex>+            <vertex>+                <position x="23.1257" y="-6.52575" z="35.3456" />+                <normal x="-0.800984" y="0.57142" z="0.178618" />+                <texcoord u="9.66667" v="0.333333" />+            </vertex>+            <vertex>+                <position x="27.7334" y="-2.20746" z="29.7585" />+                <normal x="-0.518861" y="0.838874" z="-0.164544" />+                <texcoord u="9.66667" v="0.25" />+            </vertex>+            <vertex>+                <position x="34.5912" y="-1.55809" z="24.8961" />+                <normal x="-0.0953727" y="0.880514" z="-0.464326" />+                <texcoord u="9.66667" v="0.166667" />+            </vertex>+            <vertex>+                <position x="41.8618" y="-4.75164" z="22.0615" />+                <normal x="0.354884" y="0.682952" z="-0.638462" />+                <texcoord u="9.66667" v="0.0833335" />+            </vertex>+            <vertex>+                <position x="50.9398" y="-8.65595" z="26.5825" />+                <normal x="0.635444" y="0.363164" z="-0.681412" />+                <texcoord u="9.75001" v="1" />+            </vertex>+            <vertex>+                <position x="53.5479" y="-15.9533" z="29.9054" />+                <normal x="0.867334" y="-0.207372" z="-0.45247" />+                <texcoord u="9.75001" v="0.916667" />+            </vertex>+            <vertex>+                <position x="52.3843" y="-22.3759" z="35.243" />+                <normal x="0.791974" y="-0.598271" z="-0.121853" />+                <texcoord u="9.75001" v="0.833333" />+            </vertex>+            <vertex>+                <position x="47.7609" y="-26.203" z="41.1652" />+                <normal x="0.506113" y="-0.828295" z="0.24037" />+                <texcoord u="9.75001" v="0.75" />+            </vertex>+            <vertex>+                <position x="40.9164" y="-26.4089" z="46.0851" />+                <normal x="0.0867819" y="-0.838372" z="0.538147" />+                <texcoord u="9.75001" v="0.666667" />+            </vertex>+            <vertex>+                <position x="33.6849" y="-22.9386" z="48.6844" />+                <normal x="-0.355026" y="-0.626899" z="0.693509" />+                <texcoord u="9.75001" v="0.583333" />+            </vertex>+            <vertex>+                <position x="28.004" y="-16.7219" z="48.2667" />+                <normal x="-0.702885" y="-0.249597" z="0.666074" />+                <texcoord u="9.75001" v="0.5" />+            </vertex>+            <vertex>+                <position x="25.3959" y="-9.42455" z="44.9438" />+                <normal x="-0.864722" y="0.194763" z="0.462951" />+                <texcoord u="9.75001" v="0.416667" />+            </vertex>+            <vertex>+                <position x="26.5595" y="-3.0019" z="39.6062" />+                <normal x="-0.796374" y="0.589144" z="0.13674" />+                <texcoord u="9.75001" v="0.333333" />+            </vertex>+            <vertex>+                <position x="31.1829" y="0.825127" z="33.684" />+                <normal x="-0.513565" y="0.827413" z="-0.227241" />+                <texcoord u="9.75001" v="0.25" />+            </vertex>+            <vertex>+                <position x="38.0274" y="1.03107" z="28.7641" />+                <normal x="-0.0901463" y="0.842346" z="-0.531345" />+                <texcoord u="9.75001" v="0.166667" />+            </vertex>+            <vertex>+                <position x="45.2589" y="-2.43924" z="26.1648" />+                <normal x="0.35885" y="0.627269" z="-0.691202" />+                <texcoord u="9.75001" v="0.0833335" />+            </vertex>+            <vertex>+                <position x="54.3924" y="-6.17538" z="30.9567" />+                <normal x="0.638463" y="0.290714" z="-0.712636" />+                <texcoord u="9.83334" v="1" />+            </vertex>+            <vertex>+                <position x="56.9446" y="-13.133" z="34.9782" />+                <normal x="0.865697" y="-0.258916" z="-0.428406" />+                <texcoord u="9.83334" v="0.916667" />+            </vertex>+            <vertex>+                <position x="55.7351" y="-18.9914" z="40.9205" />+                <normal x="0.78715" y="-0.613753" z="-0.0608429" />+                <texcoord u="9.83334" v="0.833333" />+            </vertex>+            <vertex>+                <position x="51.0877" y="-22.1807" z="47.1914" />+                <normal x="0.499934" y="-0.80416" z="0.321548" />+                <texcoord u="9.83334" v="0.75" />+            </vertex>+            <vertex>+                <position x="44.2479" y="-21.8465" z="52.1107" />+                <normal x="0.0812102" y="-0.781986" z="0.617983" />+                <texcoord u="9.83334" v="0.666667" />+            </vertex>+            <vertex>+                <position x="37.0483" y="-18.0782" z="54.3602" />+                <normal x="-0.358541" y="-0.55399" z="0.751361" />+                <texcoord u="9.83334" v="0.583333" />+            </vertex>+            <vertex>+                <position x="31.418" y="-11.8856" z="53.3372" />+                <normal x="-0.703729" y="-0.179798" z="0.687342" />+                <texcoord u="9.83334" v="0.5" />+            </vertex>+            <vertex>+                <position x="28.8658" y="-4.92797" z="49.3158" />+                <normal x="-0.863139" y="0.243173" z="0.442558" />+                <texcoord u="9.83334" v="0.416667" />+            </vertex>+            <vertex>+                <position x="30.0753" y="0.930384" z="43.3735" />+                <normal x="-0.793065" y="0.603855" z="0.0800483" />+                <texcoord u="9.83334" v="0.333333" />+            </vertex>+            <vertex>+                <position x="34.7227" y="4.11973" z="37.1025" />+                <normal x="-0.509013" y="0.80459" z="-0.305844" />+                <texcoord u="9.83334" v="0.25" />+            </vertex>+            <vertex>+                <position x="41.5625" y="3.78549" z="32.1832" />+                <normal x="-0.0846997" y="0.78696" z="-0.611163" />+                <texcoord u="9.83334" v="0.166667" />+            </vertex>+            <vertex>+                <position x="48.7621" y="0.0172255" z="29.9337" />+                <normal x="0.363825" y="0.5528" z="-0.749696" />+                <texcoord u="9.83334" v="0.0833335" />+            </vertex>+            <vertex>+                <position x="57.9224" y="-3.35676" z="35.0839" />+                <normal x="0.641133" y="0.202652" z="-0.74019" />+                <texcoord u="9.91667" v="1" />+            </vertex>+            <vertex>+                <position x="60.4563" y="-9.78721" z="39.9133" />+                <normal x="0.866624" y="-0.310285" z="-0.390751" />+                <texcoord u="9.91667" v="0.916667" />+            </vertex>+            <vertex>+                <position x="59.2274" y="-14.8904" z="46.5119" />+                <normal x="0.786685" y="-0.61714" z="0.0162546" />+                <texcoord u="9.91667" v="0.833333" />+            </vertex>+            <vertex>+                <position x="54.5651" y="-17.299" z="53.1116" />+                <normal x="0.498809" y="-0.759748" z="0.417099" />+                <texcoord u="9.91667" v="0.75" />+            </vertex>+            <vertex>+                <position x="47.7186" y="-16.3675" z="57.944" />+                <normal x="0.0799884" y="-0.702742" z="0.706934" />+                <texcoord u="9.91667" v="0.666667" />+            </vertex>+            <vertex>+                <position x="40.5224" y="-12.3457" z="59.7143" />+                <normal x="-0.359608" y="-0.461636" z="0.81091" />+                <texcoord u="9.91667" v="0.583333" />+            </vertex>+            <vertex>+                <position x="34.9047" y="-6.31101" z="57.9481" />+                <normal x="-0.704676" y="-0.0989216" z="0.7026" />+                <texcoord u="9.91667" v="0.5" />+            </vertex>+            <vertex>+                <position x="32.3709" y="0.119437" z="53.1187" />+                <normal x="-0.864193" y="0.291576" z="0.410065" />+                <texcoord u="9.91667" v="0.416667" />+            </vertex>+            <vertex>+                <position x="33.5997" y="5.22265" z="46.5201" />+                <normal x="-0.794226" y="0.607568" z="0.00815438" />+                <texcoord u="9.91667" v="0.333333" />+            </vertex>+            <vertex>+                <position x="38.262" y="7.63122" z="39.9204" />+                <normal x="-0.509399" y="0.762395" z="-0.399083" />+                <texcoord u="9.91667" v="0.25" />+            </vertex>+            <vertex>+                <position x="45.1085" y="6.69978" z="35.088" />+                <normal x="-0.083081" y="0.708307" z="-0.700999" />+                <texcoord u="9.91667" v="0.166667" />+            </vertex>+            <vertex>+                <position x="52.3047" y="2.6779" z="33.3177" />+                <normal x="0.366947" y="0.457352" z="-0.810049" />+                <texcoord u="9.91667" v="0.0833335" />+            </vertex>+            <vertex>+                <position x="64.9637" y="4.07805" z="42.0792" />+                <normal x="0.718436" y="-0.100408" z="-0.688308" />+                <texcoord u="0.0833333" v="1.78814e-07" />+            </vertex>+            <vertex>+                <position x="64.9637" y="4.07805" z="42.0792" />+                <normal x="0.718436" y="-0.100408" z="-0.688308" />+                <texcoord u="0.0833333" v="1.78814e-07" />+            </vertex>+            <vertex>+                <position x="61.4732" y="-0.00846273" z="38.8556" />+                <normal x="0.71667" y="-0.00942222" z="-0.697349" />+                <texcoord u="0" v="1.78814e-07" />+            </vertex>+            <vertex>+                <position x="68.2778" y="9.11383" z="44.4609" />+                <normal x="0.720139" y="-0.181911" z="-0.669558" />+                <texcoord u="0.166667" v="1.78814e-07" />+            </vertex>+            <vertex>+                <position x="68.2778" y="9.11383" z="44.4609" />+                <normal x="0.720139" y="-0.181911" z="-0.669558" />+                <texcoord u="0.166667" v="1.78814e-07" />+            </vertex>+            <vertex>+                <position x="64.9637" y="4.07805" z="42.0792" />+                <normal x="0.718436" y="-0.100408" z="-0.688308" />+                <texcoord u="0.0833333" v="1.78814e-07" />+            </vertex>+            <vertex>+                <position x="71.2484" y="15.2452" z="45.6123" />+                <normal x="0.721816" y="-0.248249" z="-0.646029" />+                <texcoord u="0.25" v="1.78814e-07" />+            </vertex>+            <vertex>+                <position x="71.2484" y="15.2452" z="45.6123" />+                <normal x="0.721816" y="-0.248249" z="-0.646029" />+                <texcoord u="0.25" v="1.78814e-07" />+            </vertex>+            <vertex>+                <position x="68.2778" y="9.11383" z="44.4609" />+                <normal x="0.72014" y="-0.181911" z="-0.669558" />+                <texcoord u="0.166667" v="1.78814e-07" />+            </vertex>+            <vertex>+                <position x="73.6371" y="22.5136" z="45.0808" />+                <normal x="0.722843" y="-0.298416" z="-0.623254" />+                <texcoord u="0.333333" v="1.78814e-07" />+            </vertex>+            <vertex>+                <position x="73.6371" y="22.5136" z="45.0808" />+                <normal x="0.722843" y="-0.298416" z="-0.623254" />+                <texcoord u="0.333333" v="1.78814e-07" />+            </vertex>+            <vertex>+                <position x="71.2484" y="15.2452" z="45.6123" />+                <normal x="0.721816" y="-0.248249" z="-0.646029" />+                <texcoord u="0.25" v="1.78814e-07" />+            </vertex>+            <vertex>+                <position x="75.1267" y="30.8158" z="42.4041" />+                <normal x="0.722826" y="-0.335364" z="-0.604196" />+                <texcoord u="0.416667" v="1.78814e-07" />+            </vertex>+            <vertex>+                <position x="75.1267" y="30.8158" z="42.4041" />+                <normal x="0.722826" y="-0.335364" z="-0.604196" />+                <texcoord u="0.416667" v="1.78814e-07" />+            </vertex>+            <vertex>+                <position x="73.6371" y="22.5136" z="45.0808" />+                <normal x="0.722843" y="-0.298416" z="-0.623254" />+                <texcoord u="0.333333" v="1.78814e-07" />+            </vertex>+            <vertex>+                <position x="75.339" y="39.8757" z="37.1875" />+                <normal x="0.722284" y="-0.362545" z="-0.588954" />+                <texcoord u="0.5" v="1.78814e-07" />+            </vertex>+            <vertex>+                <position x="75.339" y="39.8757" z="37.1875" />+                <normal x="0.722284" y="-0.362545" z="-0.588954" />+                <texcoord u="0.5" v="1.78814e-07" />+            </vertex>+            <vertex>+                <position x="75.1267" y="30.8158" z="42.4041" />+                <normal x="0.722826" y="-0.335364" z="-0.604196" />+                <texcoord u="0.416667" v="1.78814e-07" />+            </vertex>+            <vertex>+                <position x="73.8878" y="49.215" z="29.2194" />+                <normal x="0.721993" y="-0.382007" z="-0.576886" />+                <texcoord u="0.583333" v="1.78814e-07" />+            </vertex>+            <vertex>+                <position x="73.8878" y="49.215" z="29.2194" />+                <normal x="0.721993" y="-0.382007" z="-0.576886" />+                <texcoord u="0.583333" v="1.78814e-07" />+            </vertex>+            <vertex>+                <position x="75.339" y="39.8757" z="37.1875" />+                <normal x="0.722284" y="-0.362545" z="-0.588954" />+                <texcoord u="0.5" v="1.78814e-07" />+            </vertex>+            <vertex>+                <position x="70.4695" y="58.1713" z="18.596" />+                <normal x="0.722012" y="-0.395018" z="-0.568031" />+                <texcoord u="0.666667" v="1.78814e-07" />+            </vertex>+            <vertex>+                <position x="70.4695" y="58.1713" z="18.596" />+                <normal x="0.722012" y="-0.395018" z="-0.568031" />+                <texcoord u="0.666667" v="1.78814e-07" />+            </vertex>+            <vertex>+                <position x="73.8878" y="49.215" z="29.2194" />+                <normal x="0.721993" y="-0.382007" z="-0.576886" />+                <texcoord u="0.583333" v="1.78814e-07" />+            </vertex>+            <vertex>+                <position x="64.9734" y="65.9698" z="5.8216" />+                <normal x="0.721726" y="-0.402902" z="-0.562833" />+                <texcoord u="0.75" v="1.78814e-07" />+            </vertex>+            <vertex>+                <position x="64.9734" y="65.9698" z="5.8216" />+                <normal x="0.721726" y="-0.402902" z="-0.562833" />+                <texcoord u="0.75" v="1.78814e-07" />+            </vertex>+            <vertex>+                <position x="70.4695" y="58.1713" z="18.596" />+                <normal x="0.722012" y="-0.395018" z="-0.568031" />+                <texcoord u="0.666667" v="1.78814e-07" />+            </vertex>+            <vertex>+                <position x="57.5643" y="71.8737" z="-8.19897" />+                <normal x="0.72015" y="-0.407191" z="-0.561765" />+                <texcoord u="0.833333" v="1.78814e-07" />+            </vertex>+            <vertex>+                <position x="57.5643" y="71.8737" z="-8.19897" />+                <normal x="0.72015" y="-0.407191" z="-0.561765" />+                <texcoord u="0.833333" v="1.78814e-07" />+            </vertex>+            <vertex>+                <position x="64.9734" y="65.9698" z="5.8216" />+                <normal x="0.721726" y="-0.402902" z="-0.562833" />+                <texcoord u="0.75" v="1.78814e-07" />+            </vertex>+            <vertex>+                <position x="48.6911" y="75.3554" z="-22.3046" />+                <normal x="0.716138" y="-0.409459" z="-0.565234" />+                <texcoord u="0.916667" v="1.78814e-07" />+            </vertex>+            <vertex>+                <position x="48.6911" y="75.3554" z="-22.3046" />+                <normal x="0.716138" y="-0.409459" z="-0.565234" />+                <texcoord u="0.916667" v="1.78814e-07" />+            </vertex>+            <vertex>+                <position x="57.5643" y="71.8737" z="-8.19897" />+                <normal x="0.72015" y="-0.407191" z="-0.561765" />+                <texcoord u="0.833333" v="1.78814e-07" />+            </vertex>+            <vertex>+                <position x="38.9935" y="76.2237" z="-35.3344" />+                <normal x="0.708334" y="-0.411323" z="-0.573652" />+                <texcoord u="1" v="1.78814e-07" />+            </vertex>+            <vertex>+                <position x="38.9935" y="76.2237" z="-35.3344" />+                <normal x="0.708334" y="-0.411323" z="-0.573652" />+                <texcoord u="1" v="1.78814e-07" />+            </vertex>+            <vertex>+                <position x="48.6911" y="75.3554" z="-22.3046" />+                <normal x="0.716138" y="-0.409459" z="-0.565234" />+                <texcoord u="0.916667" v="1.78814e-07" />+            </vertex>+            <vertex>+                <position x="29.1475" y="74.6375" z="-46.3788" />+                <normal x="0.69504" y="-0.41457" z="-0.587411" />+                <texcoord u="1.08333" v="1.78814e-07" />+            </vertex>+            <vertex>+                <position x="29.1475" y="74.6375" z="-46.3788" />+                <normal x="0.69504" y="-0.41457" z="-0.587411" />+                <texcoord u="1.08333" v="1.78814e-07" />+            </vertex>+            <vertex>+                <position x="38.9935" y="76.2237" z="-35.3344" />+                <normal x="0.708334" y="-0.411323" z="-0.573652" />+                <texcoord u="1" v="1.78814e-07" />+            </vertex>+            <vertex>+                <position x="19.7202" y="71.0151" z="-54.92" />+                <normal x="0.674137" y="-0.421387" z="-0.606608" />+                <texcoord u="1.16667" v="1.78814e-07" />+            </vertex>+            <vertex>+                <position x="19.7202" y="71.0151" z="-54.92" />+                <normal x="0.674137" y="-0.421387" z="-0.606608" />+                <texcoord u="1.16667" v="1.78814e-07" />+            </vertex>+            <vertex>+                <position x="29.1475" y="74.6375" z="-46.3788" />+                <normal x="0.695039" y="-0.41457" z="-0.587411" />+                <texcoord u="1.08333" v="1.78814e-07" />+            </vertex>+            <vertex>+                <position x="11.0789" y="65.8892" z="-60.8377" />+                <normal x="0.643421" y="-0.434563" z="-0.63021" />+                <texcoord u="1.25" v="1.78814e-07" />+            </vertex>+            <vertex>+                <position x="11.0789" y="65.8892" z="-60.8377" />+                <normal x="0.643421" y="-0.434563" z="-0.63021" />+                <texcoord u="1.25" v="1.78814e-07" />+            </vertex>+            <vertex>+                <position x="19.7202" y="71.0151" z="-54.92" />+                <normal x="0.674137" y="-0.421387" z="-0.606608" />+                <texcoord u="1.16667" v="1.78814e-07" />+            </vertex>+            <vertex>+                <position x="3.39092" y="59.783" z="-64.2979" />+                <normal x="0.601592" y="-0.456591" z="-0.655448" />+                <texcoord u="1.33333" v="1.78814e-07" />+            </vertex>+            <vertex>+                <position x="3.39092" y="59.783" z="-64.2979" />+                <normal x="0.601592" y="-0.456591" z="-0.655448" />+                <texcoord u="1.33333" v="1.78814e-07" />+            </vertex>+            <vertex>+                <position x="11.0789" y="65.8892" z="-60.8377" />+                <normal x="0.643421" y="-0.434563" z="-0.63021" />+                <texcoord u="1.25" v="1.78814e-07" />+            </vertex>+            <vertex>+                <position x="-3.33487" y="53.1366" z="-65.6204" />+                <normal x="0.548951" y="-0.488054" z="-0.678569" />+                <texcoord u="1.41667" v="1.78814e-07" />+            </vertex>+            <vertex>+                <position x="-3.33487" y="53.1366" z="-65.6204" />+                <normal x="0.548951" y="-0.488054" z="-0.678569" />+                <texcoord u="1.41667" v="1.78814e-07" />+            </vertex>+            <vertex>+                <position x="3.39092" y="59.783" z="-64.2979" />+                <normal x="0.601592" y="-0.456591" z="-0.655448" />+                <texcoord u="1.33333" v="1.78814e-07" />+            </vertex>+            <vertex>+                <position x="-9.17704" y="46.2891" z="-65.1652" />+                <normal x="0.486744" y="-0.527129" z="-0.696574" />+                <texcoord u="1.5" v="1.78814e-07" />+            </vertex>+            <vertex>+                <position x="-9.17704" y="46.2891" z="-65.1652" />+                <normal x="0.486744" y="-0.527129" z="-0.696574" />+                <texcoord u="1.5" v="1.78814e-07" />+            </vertex>+            <vertex>+                <position x="-3.33487" y="53.1366" z="-65.6204" />+                <normal x="0.548951" y="-0.488054" z="-0.678569" />+                <texcoord u="1.41667" v="1.78814e-07" />+            </vertex>+            <vertex>+                <position x="-14.2373" y="39.4908" z="-63.2673" />+                <normal x="0.416628" y="-0.570853" z="-0.707494" />+                <texcoord u="1.58333" v="1.78814e-07" />+            </vertex>+            <vertex>+                <position x="-14.2373" y="39.4908" z="-63.2673" />+                <normal x="0.416628" y="-0.570853" z="-0.707494" />+                <texcoord u="1.58333" v="1.78814e-07" />+            </vertex>+            <vertex>+                <position x="-9.17704" y="46.2891" z="-65.1652" />+                <normal x="0.486744" y="-0.527129" z="-0.696574" />+                <texcoord u="1.5" v="1.78814e-07" />+            </vertex>+            <vertex>+                <position x="-18.5988" y="32.9207" z="-60.2179" />+                <normal x="0.341496" y="-0.616053" z="-0.70983" />+                <texcoord u="1.66667" v="1.78814e-07" />+            </vertex>+            <vertex>+                <position x="-18.5988" y="32.9207" z="-60.2179" />+                <normal x="0.341496" y="-0.616053" z="-0.70983" />+                <texcoord u="1.66667" v="1.78814e-07" />+            </vertex>+            <vertex>+                <position x="-14.2373" y="39.4908" z="-63.2673" />+                <normal x="0.416628" y="-0.570853" z="-0.707494" />+                <texcoord u="1.58333" v="1.78814e-07" />+            </vertex>+            <vertex>+                <position x="-22.3074" y="26.7006" z="-56.2718" />+                <normal x="0.265998" y="-0.659711" z="-0.70287" />+                <texcoord u="1.75" v="1.78814e-07" />+            </vertex>+            <vertex>+                <position x="-22.3074" y="26.7006" z="-56.2718" />+                <normal x="0.265998" y="-0.659711" z="-0.70287" />+                <texcoord u="1.75" v="1.78814e-07" />+            </vertex>+            <vertex>+                <position x="-18.5988" y="32.9207" z="-60.2179" />+                <normal x="0.341496" y="-0.616053" z="-0.70983" />+                <texcoord u="1.66667" v="1.78814e-07" />+            </vertex>+            <vertex>+                <position x="-25.3859" y="20.8971" z="-51.6602" />+                <normal x="0.195583" y="-0.699381" z="-0.687469" />+                <texcoord u="1.83333" v="1.78814e-07" />+            </vertex>+            <vertex>+                <position x="-25.3859" y="20.8971" z="-51.6602" />+                <normal x="0.195583" y="-0.699381" z="-0.687469" />+                <texcoord u="1.83333" v="1.78814e-07" />+            </vertex>+            <vertex>+                <position x="-22.3074" y="26.7006" z="-56.2718" />+                <normal x="0.265998" y="-0.659711" z="-0.70287" />+                <texcoord u="1.75" v="1.78814e-07" />+            </vertex>+            <vertex>+                <position x="-27.8638" y="15.5243" z="-46.5895" />+                <normal x="0.134772" y="-0.733577" z="-0.666109" />+                <texcoord u="1.91667" v="1.78814e-07" />+            </vertex>+            <vertex>+                <position x="-27.8638" y="15.5243" z="-46.5895" />+                <normal x="0.134772" y="-0.733577" z="-0.666109" />+                <texcoord u="1.91667" v="1.78814e-07" />+            </vertex>+            <vertex>+                <position x="-25.3859" y="20.8971" z="-51.6602" />+                <normal x="0.195583" y="-0.699381" z="-0.687469" />+                <texcoord u="1.83333" v="1.78814e-07" />+            </vertex>+            <vertex>+                <position x="-29.7893" y="10.5574" z="-41.2321" />+                <normal x="0.0861229" y="-0.761846" z="-0.642007" />+                <texcoord u="2" v="1.78814e-07" />+            </vertex>+            <vertex>+                <position x="-29.7893" y="10.5574" z="-41.2321" />+                <normal x="0.0861229" y="-0.761846" z="-0.642007" />+                <texcoord u="2" v="1.78814e-07" />+            </vertex>+            <vertex>+                <position x="-27.8638" y="15.5243" z="-46.5895" />+                <normal x="0.134772" y="-0.733577" z="-0.666109" />+                <texcoord u="1.91667" v="1.78814e-07" />+            </vertex>+            <vertex>+                <position x="-31.2247" y="5.95273" z="-35.7228" />+                <normal x="0.0500714" y="-0.784544" z="-0.618048" />+                <texcoord u="2.08333" v="1.78814e-07" />+            </vertex>+            <vertex>+                <position x="-31.2247" y="5.95273" z="-35.7228" />+                <normal x="0.0500714" y="-0.784544" z="-0.618048" />+                <texcoord u="2.08333" v="1.78814e-07" />+            </vertex>+            <vertex>+                <position x="-29.7893" y="10.5574" z="-41.2321" />+                <normal x="0.0861229" y="-0.761846" z="-0.642007" />+                <texcoord u="2" v="1.78814e-07" />+            </vertex>+            <vertex>+                <position x="-32.2503" y="1.65234" z="-30.152" />+                <normal x="0.0255457" y="-0.802166" z="-0.596555" />+                <texcoord u="2.16667" v="1.78814e-07" />+            </vertex>+            <vertex>+                <position x="-32.2503" y="1.65234" z="-30.152" />+                <normal x="0.0255457" y="-0.802166" z="-0.596555" />+                <texcoord u="2.16667" v="1.78814e-07" />+            </vertex>+            <vertex>+                <position x="-31.2247" y="5.95273" z="-35.7228" />+                <normal x="0.0500714" y="-0.784544" z="-0.618048" />+                <texcoord u="2.08333" v="1.78814e-07" />+            </vertex>+            <vertex>+                <position x="-32.9375" y="-2.39581" z="-24.585" />+                <normal x="0.010524" y="-0.815365" z="-0.578852" />+                <texcoord u="2.25" v="1.78814e-07" />+            </vertex>+            <vertex>+                <position x="-32.9375" y="-2.39581" z="-24.585" />+                <normal x="0.010524" y="-0.815365" z="-0.578852" />+                <texcoord u="2.25" v="1.78814e-07" />+            </vertex>+            <vertex>+                <position x="-32.2503" y="1.65234" z="-30.152" />+                <normal x="0.0255457" y="-0.802165" z="-0.596555" />+                <texcoord u="2.16667" v="1.78814e-07" />+            </vertex>+            <vertex>+                <position x="-33.3595" y="-6.24744" z="-19.0562" />+                <normal x="0.00267531" y="-0.824533" z="-0.565808" />+                <texcoord u="2.33333" v="1.78814e-07" />+            </vertex>+            <vertex>+                <position x="-33.3595" y="-6.24744" z="-19.0562" />+                <normal x="0.00267531" y="-0.824533" z="-0.565808" />+                <texcoord u="2.33333" v="1.78814e-07" />+            </vertex>+            <vertex>+                <position x="-32.9375" y="-2.39581" z="-24.585" />+                <normal x="0.010524" y="-0.815365" z="-0.578852" />+                <texcoord u="2.25" v="1.78814e-07" />+            </vertex>+            <vertex>+                <position x="-33.5759" y="-9.95096" z="-13.5896" />+                <normal x="-0.000493567" y="-0.82999" z="-0.557778" />+                <texcoord u="2.41667" v="1.78814e-07" />+            </vertex>+            <vertex>+                <position x="-33.5759" y="-9.95096" z="-13.5896" />+                <normal x="-0.000493567" y="-0.82999" z="-0.557778" />+                <texcoord u="2.41667" v="1.78814e-07" />+            </vertex>+            <vertex>+                <position x="-33.3595" y="-6.24744" z="-19.0562" />+                <normal x="0.00267531" y="-0.824533" z="-0.565808" />+                <texcoord u="2.33333" v="1.78814e-07" />+            </vertex>+            <vertex>+                <position x="-33.6381" y="-13.5539" z="-8.19752" />+                <normal x="-0.00132409" y="-0.831895" z="-0.554932" />+                <texcoord u="2.5" v="1.78814e-07" />+            </vertex>+            <vertex>+                <position x="-33.6381" y="-13.5539" z="-8.19752" />+                <normal x="-0.00132409" y="-0.831895" z="-0.554932" />+                <texcoord u="2.5" v="1.78814e-07" />+            </vertex>+            <vertex>+                <position x="-33.5759" y="-9.95096" z="-13.5896" />+                <normal x="-0.000493567" y="-0.82999" z="-0.557778" />+                <texcoord u="2.41667" v="1.78814e-07" />+            </vertex>+            <vertex>+                <position x="-33.5891" y="-17.0975" z="-2.89424" />+                <normal x="-0.00234259" y="-0.830303" z="-0.557307" />+                <texcoord u="2.58333" v="1.78814e-07" />+            </vertex>+            <vertex>+                <position x="-33.5891" y="-17.0975" z="-2.89424" />+                <normal x="-0.00234259" y="-0.830303" z="-0.557307" />+                <texcoord u="2.58333" v="1.78814e-07" />+            </vertex>+            <vertex>+                <position x="-33.6381" y="-13.5539" z="-8.19752" />+                <normal x="-0.00132409" y="-0.831895" z="-0.554932" />+                <texcoord u="2.5" v="1.78814e-07" />+            </vertex>+            <vertex>+                <position x="-33.4641" y="-20.6275" z="2.31681" />+                <normal x="-0.00583397" y="-0.825174" z="-0.564849" />+                <texcoord u="2.66667" v="1.78814e-07" />+            </vertex>+            <vertex>+                <position x="-33.4641" y="-20.6275" z="2.31681" />+                <normal x="-0.00583397" y="-0.825174" z="-0.564849" />+                <texcoord u="2.66667" v="1.78814e-07" />+            </vertex>+            <vertex>+                <position x="-33.5891" y="-17.0975" z="-2.89424" />+                <normal x="-0.0023426" y="-0.830303" z="-0.557307" />+                <texcoord u="2.58333" v="1.78814e-07" />+            </vertex>+            <vertex>+                <position x="-33.2914" y="-24.1839" z="7.42505" />+                <normal x="-0.0143136" y="-0.816343" z="-0.57739" />+                <texcoord u="2.75" v="1.78814e-07" />+            </vertex>+            <vertex>+                <position x="-33.2914" y="-24.1839" z="7.42505" />+                <normal x="-0.0143136" y="-0.816343" z="-0.57739" />+                <texcoord u="2.75" v="1.78814e-07" />+            </vertex>+            <vertex>+                <position x="-33.4641" y="-20.6275" z="2.31681" />+                <normal x="-0.00583397" y="-0.825174" z="-0.564849" />+                <texcoord u="2.66667" v="1.78814e-07" />+            </vertex>+            <vertex>+                <position x="-33.0904" y="-27.8072" z="12.4211" />+                <normal x="-0.0302187" y="-0.803537" z="-0.594487" />+                <texcoord u="2.83333" v="1.78814e-07" />+            </vertex>+            <vertex>+                <position x="-33.0904" y="-27.8072" z="12.4211" />+                <normal x="-0.0302187" y="-0.803537" z="-0.594487" />+                <texcoord u="2.83333" v="1.78814e-07" />+            </vertex>+            <vertex>+                <position x="-33.2914" y="-24.1839" z="7.42505" />+                <normal x="-0.0143136" y="-0.816343" z="-0.57739" />+                <texcoord u="2.75" v="1.78814e-07" />+            </vertex>+            <vertex>+                <position x="-32.8751" y="-31.5311" z="17.2883" />+                <normal x="-0.0562274" y="-0.786209" z="-0.615398" />+                <texcoord u="2.91667" v="1.78814e-07" />+            </vertex>+            <vertex>+                <position x="-32.8751" y="-31.5311" z="17.2883" />+                <normal x="-0.0562274" y="-0.786209" z="-0.615398" />+                <texcoord u="2.91667" v="1.78814e-07" />+            </vertex>+            <vertex>+                <position x="-33.0904" y="-27.8072" z="12.4211" />+                <normal x="-0.0302187" y="-0.803537" z="-0.594487" />+                <texcoord u="2.83333" v="1.78814e-07" />+            </vertex>+            <vertex>+                <position x="-32.6361" y="-35.3926" z="22.015" />+                <normal x="-0.0942671" y="-0.763732" z="-0.638613" />+                <texcoord u="3" v="1.78814e-07" />+            </vertex>+            <vertex>+                <position x="-32.6361" y="-35.3926" z="22.015" />+                <normal x="-0.0942671" y="-0.763732" z="-0.638613" />+                <texcoord u="3" v="1.78814e-07" />+            </vertex>+            <vertex>+                <position x="-32.8751" y="-31.5311" z="17.2883" />+                <normal x="-0.0562274" y="-0.786209" z="-0.615398" />+                <texcoord u="2.91667" v="1.78814e-07" />+            </vertex>+            <vertex>+                <position x="-32.3416" y="-39.4228" z="26.5809" />+                <normal x="-0.14571" y="-0.73534" z="-0.661849" />+                <texcoord u="3.08333" v="1.78814e-07" />+            </vertex>+            <vertex>+                <position x="-32.3416" y="-39.4228" z="26.5809" />+                <normal x="-0.14571" y="-0.73534" z="-0.661849" />+                <texcoord u="3.08333" v="1.78814e-07" />+            </vertex>+            <vertex>+                <position x="-32.6361" y="-35.3926" z="22.015" />+                <normal x="-0.0942671" y="-0.763732" z="-0.638613" />+                <texcoord u="3" v="1.78814e-07" />+            </vertex>+            <vertex>+                <position x="-31.9178" y="-43.6541" z="30.956" />+                <normal x="-0.210295" y="-0.700639" z="-0.681822" />+                <texcoord u="3.16666" v="1.78814e-07" />+            </vertex>+            <vertex>+                <position x="-31.9178" y="-43.6541" z="30.956" />+                <normal x="-0.210295" y="-0.700639" z="-0.681822" />+                <texcoord u="3.16666" v="1.78814e-07" />+            </vertex>+            <vertex>+                <position x="-32.3416" y="-39.4228" z="26.5809" />+                <normal x="-0.14571" y="-0.73534" z="-0.661849" />+                <texcoord u="3.08333" v="1.78814e-07" />+            </vertex>+            <vertex>+                <position x="-31.2399" y="-48.1215" z="35.0836" />+                <normal x="-0.285656" y="-0.660087" z="-0.694756" />+                <texcoord u="3.25" v="1.78814e-07" />+            </vertex>+            <vertex>+                <position x="-31.2399" y="-48.1215" z="35.0836" />+                <normal x="-0.285656" y="-0.660087" z="-0.694756" />+                <texcoord u="3.25" v="1.78814e-07" />+            </vertex>+            <vertex>+                <position x="-31.9178" y="-43.6541" z="30.956" />+                <normal x="-0.210295" y="-0.700639" z="-0.681822" />+                <texcoord u="3.16666" v="1.78814e-07" />+            </vertex>+            <vertex>+                <position x="-30.1171" y="-52.8702" z="38.8555" />+                <normal x="-0.366524" y="-0.615937" z="-0.697339" />+                <texcoord u="3.33333" v="1.78814e-07" />+            </vertex>+            <vertex>+                <position x="-30.1171" y="-52.8702" z="38.8555" />+                <normal x="-0.366524" y="-0.615937" z="-0.697339" />+                <texcoord u="3.33333" v="1.78814e-07" />+            </vertex>+            <vertex>+                <position x="-31.2399" y="-48.1215" z="35.0836" />+                <normal x="-0.285656" y="-0.660087" z="-0.694756" />+                <texcoord u="3.25" v="1.78814e-07" />+            </vertex>+            <vertex>+                <position x="-28.3231" y="-57.9364" z="42.0792" />+                <normal x="-0.446187" y="-0.571993" z="-0.688289" />+                <texcoord u="3.41666" v="1.78814e-07" />+            </vertex>+            <vertex>+                <position x="-28.3231" y="-57.9364" z="42.0792" />+                <normal x="-0.446187" y="-0.571993" z="-0.688289" />+                <texcoord u="3.41666" v="1.78814e-07" />+            </vertex>+            <vertex>+                <position x="-30.1171" y="-52.8702" z="38.8555" />+                <normal x="-0.366524" y="-0.615937" z="-0.697339" />+                <texcoord u="3.33333" v="1.78814e-07" />+            </vertex>+            <vertex>+                <position x="-25.6194" y="-63.3243" z="44.4611" />+                <normal x="-0.517631" y="-0.532708" z="-0.669538" />+                <texcoord u="3.5" v="1.78814e-07" />+            </vertex>+            <vertex>+                <position x="-25.6194" y="-63.3243" z="44.4611" />+                <normal x="-0.517631" y="-0.532708" z="-0.669538" />+                <texcoord u="3.5" v="1.78814e-07" />+            </vertex>+            <vertex>+                <position x="-28.3231" y="-57.9364" z="42.0792" />+                <normal x="-0.446187" y="-0.571993" z="-0.688289" />+                <texcoord u="3.41666" v="1.78814e-07" />+            </vertex>+            <vertex>+                <position x="-21.7935" y="-68.9633" z="45.6121" />+                <normal x="-0.575881" y="-0.500983" z="-0.646047" />+                <texcoord u="3.58333" v="1.78814e-07" />+            </vertex>+            <vertex>+                <position x="-21.7935" y="-68.9633" z="45.6121" />+                <normal x="-0.575881" y="-0.500983" z="-0.646047" />+                <texcoord u="3.58333" v="1.78814e-07" />+            </vertex>+            <vertex>+                <position x="-25.6194" y="-63.3243" z="44.4611" />+                <normal x="-0.517631" y="-0.532708" z="-0.669538" />+                <texcoord u="3.5" v="1.78814e-07" />+            </vertex>+            <vertex>+                <position x="-16.6931" y="-74.6662" z="45.0805" />+                <normal x="-0.619849" y="-0.476785" z="-0.623268" />+                <texcoord u="3.66666" v="1.78814e-07" />+            </vertex>+            <vertex>+                <position x="-16.6931" y="-74.6662" z="45.0805" />+                <normal x="-0.619849" y="-0.476785" z="-0.623268" />+                <texcoord u="3.66666" v="1.78814e-07" />+            </vertex>+            <vertex>+                <position x="-21.7935" y="-68.9633" z="45.6121" />+                <normal x="-0.575881" y="-0.500983" z="-0.646047" />+                <texcoord u="3.58333" v="1.78814e-07" />+            </vertex>+            <vertex>+                <position x="-10.2495" y="-80.1066" z="42.4048" />+                <normal x="-0.651851" y="-0.458318" z="-0.604181" />+                <texcoord u="3.75" v="1.78814e-07" />+            </vertex>+            <vertex>+                <position x="-10.2495" y="-80.1066" z="42.4048" />+                <normal x="-0.651851" y="-0.458318" z="-0.604181" />+                <texcoord u="3.75" v="1.78814e-07" />+            </vertex>+            <vertex>+                <position x="-16.6931" y="-74.6662" z="45.0805" />+                <normal x="-0.619849" y="-0.476785" z="-0.623268" />+                <texcoord u="3.66666" v="1.78814e-07" />+            </vertex>+            <vertex>+                <position x="-2.50946" y="-84.8205" z="37.1883" />+                <normal x="-0.675113" y="-0.444251" z="-0.588951" />+                <texcoord u="3.83333" v="1.78814e-07" />+            </vertex>+            <vertex>+                <position x="-2.50946" y="-84.8205" z="37.1883" />+                <normal x="-0.675113" y="-0.444251" z="-0.588951" />+                <texcoord u="3.83333" v="1.78814e-07" />+            </vertex>+            <vertex>+                <position x="-10.2495" y="-80.1066" z="42.4048" />+                <normal x="-0.651851" y="-0.458318" z="-0.604181" />+                <texcoord u="3.75" v="1.78814e-07" />+            </vertex>+            <vertex>+                <position x="6.30601" y="-88.234" z="29.2186" />+                <normal x="-0.691826" y="-0.434249" z="-0.576892" />+                <texcoord u="3.91666" v="1.78814e-07" />+            </vertex>+            <vertex>+                <position x="6.30601" y="-88.234" z="29.2186" />+                <normal x="-0.691826" y="-0.434249" z="-0.576892" />+                <texcoord u="3.91666" v="1.78814e-07" />+            </vertex>+            <vertex>+                <position x="-2.50946" y="-84.8205" z="37.1883" />+                <normal x="-0.675113" y="-0.444251" z="-0.588951" />+                <texcoord u="3.83333" v="1.78814e-07" />+            </vertex>+            <vertex>+                <position x="15.7708" y="-89.7517" z="18.5958" />+                <normal x="-0.703102" y="-0.427772" z="-0.56803" />+                <texcoord u="4" v="1.78814e-07" />+            </vertex>+            <vertex>+                <position x="15.7708" y="-89.7517" z="18.5958" />+                <normal x="-0.703102" y="-0.427772" z="-0.56803" />+                <texcoord u="4" v="1.78814e-07" />+            </vertex>+            <vertex>+                <position x="6.30601" y="-88.234" z="29.2186" />+                <normal x="-0.691826" y="-0.434249" z="-0.576892" />+                <texcoord u="3.91666" v="1.78814e-07" />+            </vertex>+            <vertex>+                <position x="25.2714" y="-88.8914" z="5.82307" />+                <normal x="-0.709784" y="-0.423586" z="-0.562833" />+                <texcoord u="4.08333" v="1.78814e-07" />+            </vertex>+            <vertex>+                <position x="25.2714" y="-88.8914" z="5.82307" />+                <normal x="-0.709784" y="-0.423586" z="-0.562833" />+                <texcoord u="4.08333" v="1.78814e-07" />+            </vertex>+            <vertex>+                <position x="15.7708" y="-89.7517" z="18.5958" />+                <normal x="-0.703102" y="-0.427772" z="-0.56803" />+                <texcoord u="4" v="1.78814e-07" />+            </vertex>+            <vertex>+                <position x="34.0889" y="-85.4273" z="-8.19717" />+                <normal x="-0.712708" y="-0.420079" z="-0.561766" />+                <texcoord u="4.16666" v="1.78814e-07" />+            </vertex>+            <vertex>+                <position x="34.0889" y="-85.4273" z="-8.19717" />+                <normal x="-0.712708" y="-0.420079" z="-0.561766" />+                <texcoord u="4.16666" v="1.78814e-07" />+            </vertex>+            <vertex>+                <position x="25.2714" y="-88.8914" z="5.82307" />+                <normal x="-0.709784" y="-0.423586" z="-0.562833" />+                <texcoord u="4.08333" v="1.78814e-07" />+            </vertex>+            <vertex>+                <position x="41.542" y="-79.4828" z="-22.3051" />+                <normal x="-0.712675" y="-0.415458" z="-0.565233" />+                <texcoord u="4.25" v="1.78814e-07" />+            </vertex>+            <vertex>+                <position x="41.542" y="-79.4828" z="-22.3051" />+                <normal x="-0.712675" y="-0.415458" z="-0.565233" />+                <texcoord u="4.25" v="1.78814e-07" />+            </vertex>+            <vertex>+                <position x="34.0889" y="-85.4273" z="-8.19717" />+                <normal x="-0.712708" y="-0.420079" z="-0.561766" />+                <texcoord u="4.16666" v="1.78814e-07" />+            </vertex>+            <vertex>+                <position x="47.1427" y="-71.5185" z="-35.3349" />+                <normal x="-0.710397" y="-0.407761" z="-0.573644" />+                <texcoord u="4.33333" v="1.78814e-07" />+            </vertex>+            <vertex>+                <position x="47.1427" y="-71.5185" z="-35.3349" />+                <normal x="-0.710397" y="-0.407761" z="-0.573644" />+                <texcoord u="4.33333" v="1.78814e-07" />+            </vertex>+            <vertex>+                <position x="41.542" y="-79.4828" z="-22.3051" />+                <normal x="-0.712675" y="-0.415458" z="-0.565233" />+                <texcoord u="4.25" v="1.78814e-07" />+            </vertex>+            <vertex>+                <position x="50.691" y="-62.2019" z="-46.3756" />+                <normal x="-0.706528" y="-0.394652" z="-0.587425" />+                <texcoord u="4.41666" v="1.78814e-07" />+            </vertex>+            <vertex>+                <position x="50.691" y="-62.2019" z="-46.3756" />+                <normal x="-0.706528" y="-0.394652" z="-0.587425" />+                <texcoord u="4.41666" v="1.78814e-07" />+            </vertex>+            <vertex>+                <position x="47.1427" y="-71.5185" z="-35.3349" />+                <normal x="-0.710397" y="-0.407761" z="-0.573644" />+                <texcoord u="4.33333" v="1.78814e-07" />+            </vertex>+            <vertex>+                <position x="52.2686" y="-52.2227" z="-54.9205" />+                <normal x="-0.702003" y="-0.373127" z="-0.606603" />+                <texcoord u="4.5" v="1.78814e-07" />+            </vertex>+            <vertex>+                <position x="52.2686" y="-52.2227" z="-54.9205" />+                <normal x="-0.702003" y="-0.373127" z="-0.606603" />+                <texcoord u="4.5" v="1.78814e-07" />+            </vertex>+            <vertex>+                <position x="50.691" y="-62.2019" z="-46.3756" />+                <normal x="-0.706528" y="-0.394652" z="-0.587425" />+                <texcoord u="4.41666" v="1.78814e-07" />+            </vertex>+            <vertex>+                <position x="52.1499" y="-42.1765" z="-60.838" />+                <normal x="-0.698043" y="-0.339936" z="-0.630222" />+                <texcoord u="4.58333" v="1.78814e-07" />+            </vertex>+            <vertex>+                <position x="52.1499" y="-42.1765" z="-60.838" />+                <normal x="-0.698043" y="-0.339936" z="-0.630222" />+                <texcoord u="4.58333" v="1.78814e-07" />+            </vertex>+            <vertex>+                <position x="52.2686" y="-52.2227" z="-54.9205" />+                <normal x="-0.702003" y="-0.373127" z="-0.606603" />+                <texcoord u="4.5" v="1.78814e-07" />+            </vertex>+            <vertex>+                <position x="50.7058" y="-32.465" z="-64.2983" />+                <normal x="-0.696206" y="-0.2927" z="-0.655457" />+                <texcoord u="4.66666" v="1.78814e-07" />+            </vertex>+            <vertex>+                <position x="50.7058" y="-32.465" z="-64.2983" />+                <normal x="-0.696206" y="-0.2927" z="-0.655457" />+                <texcoord u="4.66666" v="1.78814e-07" />+            </vertex>+            <vertex>+                <position x="52.1499" y="-42.1765" z="-60.838" />+                <normal x="-0.698043" y="-0.339936" z="-0.630222" />+                <texcoord u="4.58333" v="1.78814e-07" />+            </vertex>+            <vertex>+                <position x="48.3128" y="-23.3178" z="-65.6206" />+                <normal x="-0.697144" y="-0.231394" z="-0.678562" />+                <texcoord u="4.75" v="1.78814e-07" />+            </vertex>+            <vertex>+                <position x="48.3128" y="-23.3178" z="-65.6206" />+                <normal x="-0.697144" y="-0.231394" z="-0.678562" />+                <texcoord u="4.75" v="1.78814e-07" />+            </vertex>+            <vertex>+                <position x="50.7058" y="-32.465" z="-64.2983" />+                <normal x="-0.696206" y="-0.2927" z="-0.655457" />+                <texcoord u="4.66666" v="1.78814e-07" />+            </vertex>+            <vertex>+                <position x="45.3038" y="-14.8368" z="-65.1649" />+                <normal x="-0.699898" y="-0.15796" z="-0.696557" />+                <texcoord u="4.83333" v="1.78814e-07" />+            </vertex>+            <vertex>+                <position x="45.3038" y="-14.8368" z="-65.1649" />+                <normal x="-0.699898" y="-0.15796" z="-0.696557" />+                <texcoord u="4.83333" v="1.78814e-07" />+            </vertex>+            <vertex>+                <position x="48.3128" y="-23.3178" z="-65.6206" />+                <normal x="-0.697144" y="-0.231394" z="-0.678562" />+                <texcoord u="4.75" v="1.78814e-07" />+            </vertex>+            <vertex>+                <position x="41.9464" y="-7.05276" z="-63.2675" />+                <normal x="-0.702681" y="-0.0754076" z="-0.707498" />+                <texcoord u="4.91666" v="1.78814e-07" />+            </vertex>+            <vertex>+                <position x="41.9464" y="-7.05276" z="-63.2675" />+                <normal x="-0.702681" y="-0.0754076" z="-0.707498" />+                <texcoord u="4.91666" v="1.78814e-07" />+            </vertex>+            <vertex>+                <position x="45.3038" y="-14.8368" z="-65.1649" />+                <normal x="-0.699898" y="-0.15796" z="-0.696557" />+                <texcoord u="4.83333" v="1.78814e-07" />+            </vertex>+            <vertex>+                <position x="38.4373" y="0.00825075" z="-60.2181" />+                <normal x="-0.70427" y="0.0122911" z="-0.709826" />+                <texcoord u="5" v="1.78814e-07" />+            </vertex>+            <vertex>+                <position x="38.4373" y="0.00825075" z="-60.2181" />+                <normal x="-0.70427" y="0.0122911" z="-0.709826" />+                <texcoord u="5" v="1.78814e-07" />+            </vertex>+            <vertex>+                <position x="41.9464" y="-7.05276" z="-63.2675" />+                <normal x="-0.702681" y="-0.0754076" z="-0.707498" />+                <texcoord u="4.91666" v="1.78814e-07" />+            </vertex>+            <vertex>+                <position x="34.9049" y="6.33092" z="-56.272" />+                <normal x="-0.704323" y="0.0994757" z="-0.702875" />+                <texcoord u="5.08333" v="1.78814e-07" />+            </vertex>+            <vertex>+                <position x="34.9049" y="6.33092" z="-56.272" />+                <normal x="-0.704323" y="0.0994757" z="-0.702875" />+                <texcoord u="5.08333" v="1.78814e-07" />+            </vertex>+            <vertex>+                <position x="38.4373" y="0.00825075" z="-60.2181" />+                <normal x="-0.70427" y="0.0122911" z="-0.709826" />+                <texcoord u="5" v="1.78814e-07" />+            </vertex>+            <vertex>+                <position x="31.4181" y="11.8977" z="-51.6606" />+                <normal x="-0.703487" y="0.180293" z="-0.687459" />+                <texcoord u="5.16666" v="1.78814e-07" />+            </vertex>+            <vertex>+                <position x="31.4181" y="11.8977" z="-51.6606" />+                <normal x="-0.703487" y="0.180293" z="-0.687459" />+                <texcoord u="5.16666" v="1.78814e-07" />+            </vertex>+            <vertex>+                <position x="34.9049" y="6.33092" z="-56.272" />+                <normal x="-0.704323" y="0.0994757" z="-0.702875" />+                <texcoord u="5.08333" v="1.78814e-07" />+            </vertex>+            <vertex>+                <position x="28.004" y="16.7301" z="-46.59" />+                <normal x="-0.702698" y="0.250029" z="-0.666109" />+                <texcoord u="5.25" v="1.78814e-07" />+            </vertex>+            <vertex>+                <position x="28.004" y="16.7301" z="-46.59" />+                <normal x="-0.702698" y="0.250029" z="-0.666109" />+                <texcoord u="5.25" v="1.78814e-07" />+            </vertex>+            <vertex>+                <position x="31.4181" y="11.8977" z="-51.6606" />+                <normal x="-0.703487" y="0.180293" z="-0.687459" />+                <texcoord u="5.16666" v="1.78814e-07" />+            </vertex>+            <vertex>+                <position x="24.6654" y="20.8801" z="-41.2332" />+                <normal x="-0.702871" y="0.306295" z="-0.641993" />+                <texcoord u="5.33333" v="1.78814e-07" />+            </vertex>+            <vertex>+                <position x="24.6654" y="20.8801" z="-41.2332" />+                <normal x="-0.702871" y="0.306295" z="-0.641993" />+                <texcoord u="5.33333" v="1.78814e-07" />+            </vertex>+            <vertex>+                <position x="28.004" y="16.7301" z="-46.59" />+                <normal x="-0.702698" y="0.250029" z="-0.666109" />+                <texcoord u="5.25" v="1.78814e-07" />+            </vertex>+            <vertex>+                <position x="21.3954" y="24.4264" z="-35.7236" />+                <normal x="-0.704483" y="0.348892" z="-0.618043" />+                <texcoord u="5.41666" v="1.78814e-07" />+            </vertex>+            <vertex>+                <position x="21.3954" y="24.4264" z="-35.7236" />+                <normal x="-0.704483" y="0.348892" z="-0.618043" />+                <texcoord u="5.41666" v="1.78814e-07" />+            </vertex>+            <vertex>+                <position x="24.6654" y="20.8801" z="-41.2332" />+                <normal x="-0.702871" y="0.306295" z="-0.641993" />+                <texcoord u="5.33333" v="1.78814e-07" />+            </vertex>+            <vertex>+                <position x="18.1837" y="27.4668" z="-30.1513" />+                <normal x="-0.707458" y="0.378954" z="-0.596571" />+                <texcoord u="5.5" v="1.78814e-07" />+            </vertex>+            <vertex>+                <position x="18.1837" y="27.4668" z="-30.1513" />+                <normal x="-0.707458" y="0.378954" z="-0.596571" />+                <texcoord u="5.5" v="1.78814e-07" />+            </vertex>+            <vertex>+                <position x="21.3954" y="24.4264" z="-35.7236" />+                <normal x="-0.704483" y="0.348892" z="-0.618043" />+                <texcoord u="5.41666" v="1.78814e-07" />+            </vertex>+            <vertex>+                <position x="15.0217" y="30.0846" z="-24.5855" />+                <normal x="-0.711388" y="0.398577" z="-0.578847" />+                <texcoord u="5.58333" v="1.78814e-07" />+            </vertex>+            <vertex>+                <position x="15.0217" y="30.0846" z="-24.5855" />+                <normal x="-0.711388" y="0.398577" z="-0.578847" />+                <texcoord u="5.58333" v="1.78814e-07" />+            </vertex>+            <vertex>+                <position x="18.1837" y="27.4668" z="-30.1513" />+                <normal x="-0.707458" y="0.378954" z="-0.596571" />+                <texcoord u="5.5" v="1.78814e-07" />+            </vertex>+            <vertex>+                <position x="11.8972" y="32.3759" z="-19.0568" />+                <normal x="-0.715396" y="0.409971" z="-0.565803" />+                <texcoord u="5.66666" v="1.78814e-07" />+            </vertex>+            <vertex>+                <position x="11.8972" y="32.3759" z="-19.0568" />+                <normal x="-0.715396" y="0.409971" z="-0.565803" />+                <texcoord u="5.66666" v="1.78814e-07" />+            </vertex>+            <vertex>+                <position x="15.0217" y="30.0846" z="-24.5855" />+                <normal x="-0.711388" y="0.398577" z="-0.578847" />+                <texcoord u="5.58333" v="1.78814e-07" />+            </vertex>+            <vertex>+                <position x="8.7966" y="34.4168" z="-13.587" />+                <normal x="-0.718558" y="0.41539" z="-0.557786" />+                <texcoord u="5.75" v="1.78814e-07" />+            </vertex>+            <vertex>+                <position x="8.7966" y="34.4168" z="-13.587" />+                <normal x="-0.718558" y="0.41539" z="-0.557786" />+                <texcoord u="5.75" v="1.78814e-07" />+            </vertex>+            <vertex>+                <position x="11.8972" y="32.3759" z="-19.0568" />+                <normal x="-0.715396" y="0.409971" z="-0.565803" />+                <texcoord u="5.66666" v="1.78814e-07" />+            </vertex>+            <vertex>+                <position x="5.7099" y="36.27" z="-8.19973" />+                <normal x="-0.719754" y="0.417145" z="-0.554927" />+                <texcoord u="5.83333" v="1.78814e-07" />+            </vertex>+            <vertex>+                <position x="5.7099" y="36.27" z="-8.19973" />+                <normal x="-0.719754" y="0.417145" z="-0.554927" />+                <texcoord u="5.83333" v="1.78814e-07" />+            </vertex>+            <vertex>+                <position x="8.7966" y="34.4168" z="-13.587" />+                <normal x="-0.718558" y="0.41539" z="-0.557786" />+                <texcoord u="5.75" v="1.78814e-07" />+            </vertex>+            <vertex>+                <position x="2.61567" y="38" z="-2.89486" />+                <normal x="-0.717897" y="0.417173" z="-0.557306" />+                <texcoord u="5.91666" v="1.78814e-07" />+            </vertex>+            <vertex>+                <position x="2.61567" y="38" z="-2.89486" />+                <normal x="-0.717897" y="0.417173" z="-0.557306" />+                <texcoord u="5.91666" v="1.78814e-07" />+            </vertex>+            <vertex>+                <position x="5.7099" y="36.27" z="-8.19973" />+                <normal x="-0.719754" y="0.417145" z="-0.554927" />+                <texcoord u="5.83333" v="1.78814e-07" />+            </vertex>+            <vertex>+                <position x="-0.50378" y="39.6568" z="2.31612" />+                <normal x="-0.711702" y="0.417646" z="-0.564847" />+                <texcoord u="5.99999" v="1.78814e-07" />+            </vertex>+            <vertex>+                <position x="-0.50378" y="39.6568" z="2.31612" />+                <normal x="-0.711702" y="0.417646" z="-0.564847" />+                <texcoord u="5.99999" v="1.78814e-07" />+            </vertex>+            <vertex>+                <position x="2.61567" y="38" z="-2.89486" />+                <normal x="-0.717897" y="0.417173" z="-0.557306" />+                <texcoord u="5.91666" v="1.78814e-07" />+            </vertex>+            <vertex>+                <position x="-3.67004" y="41.2856" z="7.42442" />+                <normal x="-0.699805" y="0.420578" z="-0.577397" />+                <texcoord u="6.08333" v="1.78814e-07" />+            </vertex>+            <vertex>+                <position x="-3.67004" y="41.2856" z="7.42442" />+                <normal x="-0.699805" y="0.420578" z="-0.577397" />+                <texcoord u="6.08333" v="1.78814e-07" />+            </vertex>+            <vertex>+                <position x="-0.50378" y="39.6568" z="2.31612" />+                <normal x="-0.711702" y="0.417646" z="-0.564847" />+                <texcoord u="5.99999" v="1.78814e-07" />+            </vertex>+            <vertex>+                <position x="-6.90989" y="42.9225" z="12.4219" />+                <normal x="-0.680811" y="0.427897" z="-0.594475" />+                <texcoord u="6.16666" v="1.78814e-07" />+            </vertex>+            <vertex>+                <position x="-6.90989" y="42.9225" z="12.4219" />+                <normal x="-0.680811" y="0.427897" z="-0.594475" />+                <texcoord u="6.16666" v="1.78814e-07" />+            </vertex>+            <vertex>+                <position x="-3.67004" y="41.2856" z="7.42442" />+                <normal x="-0.699805" y="0.420578" z="-0.577397" />+                <texcoord u="6.08333" v="1.78814e-07" />+            </vertex>+            <vertex>+                <position x="-10.2409" y="44.5988" z="17.2877" />+                <normal x="-0.652741" y="0.44182" z="-0.615406" />+                <texcoord u="6.24999" v="1.78814e-07" />+            </vertex>+            <vertex>+                <position x="-10.2409" y="44.5988" z="17.2877" />+                <normal x="-0.652741" y="0.44182" z="-0.615406" />+                <texcoord u="6.24999" v="1.78814e-07" />+            </vertex>+            <vertex>+                <position x="-6.90989" y="42.9225" z="12.4219" />+                <normal x="-0.680811" y="0.427897" z="-0.594475" />+                <texcoord u="6.16666" v="1.78814e-07" />+            </vertex>+            <vertex>+                <position x="-13.705" y="46.3223" z="22.0148" />+                <normal x="-0.614266" y="0.463492" z="-0.638633" />+                <texcoord u="6.33333" v="1.78814e-07" />+            </vertex>+            <vertex>+                <position x="-13.705" y="46.3223" z="22.0148" />+                <normal x="-0.614266" y="0.463492" z="-0.638633" />+                <texcoord u="6.33333" v="1.78814e-07" />+            </vertex>+            <vertex>+                <position x="-10.2409" y="44.5988" z="17.2877" />+                <normal x="-0.652741" y="0.44182" z="-0.615406" />+                <texcoord u="6.24999" v="1.78814e-07" />+            </vertex>+            <vertex>+                <position x="-17.3455" y="48.0806" z="26.5819" />+                <normal x="-0.564074" y="0.493745" z="-0.661843" />+                <texcoord u="6.41666" v="1.78814e-07" />+            </vertex>+            <vertex>+                <position x="-17.3455" y="48.0806" z="26.5819" />+                <normal x="-0.564074" y="0.493745" z="-0.661843" />+                <texcoord u="6.41666" v="1.78814e-07" />+            </vertex>+            <vertex>+                <position x="-13.705" y="46.3223" z="22.0148" />+                <normal x="-0.614266" y="0.463492" z="-0.638633" />+                <texcoord u="6.33333" v="1.78814e-07" />+            </vertex>+            <vertex>+                <position x="-21.2181" y="49.8314" z="30.9556" />+                <normal x="-0.50158" y="0.532464" z="-0.681836" />+                <texcoord u="6.49999" v="1.78814e-07" />+            </vertex>+            <vertex>+                <position x="-21.2181" y="49.8314" z="30.9556" />+                <normal x="-0.50158" y="0.532464" z="-0.681836" />+                <texcoord u="6.49999" v="1.78814e-07" />+            </vertex>+            <vertex>+                <position x="-17.3455" y="48.0806" z="26.5819" />+                <normal x="-0.564074" y="0.493745" z="-0.661843" />+                <texcoord u="6.41666" v="1.78814e-07" />+            </vertex>+            <vertex>+                <position x="-25.4264" y="51.4778" z="35.0834" />+                <normal x="-0.428818" y="0.577437" z="-0.694753" />+                <texcoord u="6.58333" v="1.78814e-07" />+            </vertex>+            <vertex>+                <position x="-25.4264" y="51.4778" z="35.0834" />+                <normal x="-0.428818" y="0.577437" z="-0.694753" />+                <texcoord u="6.58333" v="1.78814e-07" />+            </vertex>+            <vertex>+                <position x="-21.2181" y="49.8314" z="30.9556" />+                <normal x="-0.50158" y="0.532464" z="-0.681836" />+                <texcoord u="6.49999" v="1.78814e-07" />+            </vertex>+            <vertex>+                <position x="-30.1014" y="52.8792" z="38.8554" />+                <normal x="-0.350185" y="0.625365" z="-0.697344" />+                <texcoord u="6.66666" v="1.78814e-07" />+            </vertex>+            <vertex>+                <position x="-30.1014" y="52.8792" z="38.8554" />+                <normal x="-0.350185" y="0.625365" z="-0.697344" />+                <texcoord u="6.66666" v="1.78814e-07" />+            </vertex>+            <vertex>+                <position x="-25.4264" y="51.4778" z="35.0834" />+                <normal x="-0.428818" y="0.577437" z="-0.694753" />+                <texcoord u="6.58333" v="1.78814e-07" />+            </vertex>+            <vertex>+                <position x="-35.3846" y="53.8594" z="42.0792" />+                <normal x="-0.272243" y="0.672422" z="-0.688282" />+                <texcoord u="6.75" v="1.78814e-07" />+            </vertex>+            <vertex>+                <position x="-35.3846" y="53.8594" z="42.0792" />+                <normal x="-0.272243" y="0.672422" z="-0.688282" />+                <texcoord u="6.75" v="1.78814e-07" />+            </vertex>+            <vertex>+                <position x="-30.1014" y="52.8792" z="38.8554" />+                <normal x="-0.350185" y="0.625365" z="-0.697344" />+                <texcoord u="6.66666" v="1.78814e-07" />+            </vertex>+            <vertex>+                <position x="-41.4036" y="54.2112" z="44.4609" />+                <normal x="-0.20252" y="0.714608" z="-0.669567" />+                <texcoord u="6.83333" v="1.78814e-07" />+            </vertex>+            <vertex>+                <position x="-41.4036" y="54.2112" z="44.4609" />+                <normal x="-0.20252" y="0.714608" z="-0.669567" />+                <texcoord u="6.83333" v="1.78814e-07" />+            </vertex>+            <vertex>+                <position x="-35.3846" y="53.8594" z="42.0792" />+                <normal x="-0.272243" y="0.672422" z="-0.688282" />+                <texcoord u="6.75" v="1.78814e-07" />+            </vertex>+            <vertex>+                <position x="-48.2018" y="53.7165" z="45.6111" />+                <normal x="-0.145931" y="0.749166" z="-0.646107" />+                <texcoord u="6.91666" v="1.78814e-07" />+            </vertex>+            <vertex>+                <position x="-48.2018" y="53.7165" z="45.6111" />+                <normal x="-0.145931" y="0.749166" z="-0.646107" />+                <texcoord u="6.91666" v="1.78814e-07" />+            </vertex>+            <vertex>+                <position x="-41.4036" y="54.2112" z="44.4609" />+                <normal x="-0.20252" y="0.714608" z="-0.669567" />+                <texcoord u="6.83333" v="1.78814e-07" />+            </vertex>+            <vertex>+                <position x="-55.6877" y="52.1527" z="45.081" />+                <normal x="-0.102987" y="0.775226" z="-0.623232" />+                <texcoord u="7" v="1.78814e-07" />+            </vertex>+            <vertex>+                <position x="-55.6877" y="52.1527" z="45.081" />+                <normal x="-0.102987" y="0.775226" z="-0.623232" />+                <texcoord u="7" v="1.78814e-07" />+            </vertex>+            <vertex>+                <position x="-48.2018" y="53.7165" z="45.6111" />+                <normal x="-0.145931" y="0.749166" z="-0.646107" />+                <texcoord u="6.91666" v="1.78814e-07" />+            </vertex>+            <vertex>+                <position x="-63.6202" y="49.2932" z="42.4062" />+                <normal x="-0.0710091" y="0.793696" z="-0.604156" />+                <texcoord u="7.08333" v="1.78814e-07" />+            </vertex>+            <vertex>+                <position x="-63.6202" y="49.2932" z="42.4062" />+                <normal x="-0.0710091" y="0.793696" z="-0.604156" />+                <texcoord u="7.08333" v="1.78814e-07" />+            </vertex>+            <vertex>+                <position x="-55.6877" y="52.1527" z="45.081" />+                <normal x="-0.102987" y="0.775226" z="-0.623232" />+                <texcoord u="7" v="1.78814e-07" />+            </vertex>+            <vertex>+                <position x="-71.575" y="44.9454" z="37.1876" />+                <normal x="-0.0471636" y="0.806781" z="-0.588965" />+                <texcoord u="7.16666" v="1.78814e-07" />+            </vertex>+            <vertex>+                <position x="-71.575" y="44.9454" z="37.1876" />+                <normal x="-0.0471636" y="0.806781" z="-0.588965" />+                <texcoord u="7.16666" v="1.78814e-07" />+            </vertex>+            <vertex>+                <position x="-63.6202" y="49.2932" z="42.4062" />+                <normal x="-0.0710091" y="0.793696" z="-0.604156" />+                <texcoord u="7.08333" v="1.78814e-07" />+            </vertex>+            <vertex>+                <position x="-78.9398" y="39.0167" z="29.2164" />+                <normal x="-0.0301444" y="0.81626" z="-0.576898" />+                <texcoord u="7.25" v="1.78814e-07" />+            </vertex>+            <vertex>+                <position x="-78.9398" y="39.0167" z="29.2164" />+                <normal x="-0.0301444" y="0.81626" z="-0.576898" />+                <texcoord u="7.25" v="1.78814e-07" />+            </vertex>+            <vertex>+                <position x="-71.575" y="44.9454" z="37.1876" />+                <normal x="-0.0471636" y="0.806781" z="-0.588965" />+                <texcoord u="7.16666" v="1.78814e-07" />+            </vertex>+            <vertex>+                <position x="-84.9848" y="31.5807" z="18.5964" />+                <normal x="-0.0189203" y="0.822793" z="-0.568026" />+                <texcoord u="7.33333" v="1.78814e-07" />+            </vertex>+            <vertex>+                <position x="-84.9848" y="31.5807" z="18.5964" />+                <normal x="-0.0189203" y="0.822793" z="-0.568026" />+                <texcoord u="7.33333" v="1.78814e-07" />+            </vertex>+            <vertex>+                <position x="-78.9398" y="39.0167" z="29.2164" />+                <normal x="-0.0301444" y="0.81626" z="-0.576898" />+                <texcoord u="7.25" v="1.78814e-07" />+            </vertex>+            <vertex>+                <position x="-88.9899" y="22.9238" z="5.8252" />+                <normal x="-0.0119546" y="0.826485" z="-0.562832" />+                <texcoord u="7.41666" v="1.78814e-07" />+            </vertex>+            <vertex>+                <position x="-88.9899" y="22.9238" z="5.8252" />+                <normal x="-0.0119546" y="0.826485" z="-0.562832" />+                <texcoord u="7.41666" v="1.78814e-07" />+            </vertex>+            <vertex>+                <position x="-84.9848" y="31.5807" z="18.5964" />+                <normal x="-0.0189203" y="0.822793" z="-0.568026" />+                <texcoord u="7.33333" v="1.78814e-07" />+            </vertex>+            <vertex>+                <position x="-90.399" y="13.5534" z="-8.19838" />+                <normal x="-0.00743656" y="0.827263" z="-0.561766" />+                <texcoord u="7.5" v="1.78814e-07" />+            </vertex>+            <vertex>+                <position x="-90.399" y="13.5534" z="-8.19838" />+                <normal x="-0.00743656" y="0.827263" z="-0.561766" />+                <texcoord u="7.5" v="1.78814e-07" />+            </vertex>+            <vertex>+                <position x="-88.9899" y="22.9238" z="5.8252" />+                <normal x="-0.0119546" y="0.826485" z="-0.562832" />+                <texcoord u="7.41666" v="1.78814e-07" />+            </vertex>+            <vertex>+                <position x="-88.977" y="4.12564" z="-22.3076" />+                <normal x="-0.00344499" y="0.824925" z="-0.565232" />+                <texcoord u="7.58333" v="1.78814e-07" />+            </vertex>+            <vertex>+                <position x="-88.977" y="4.12564" z="-22.3076" />+                <normal x="-0.00344499" y="0.824925" z="-0.565232" />+                <texcoord u="7.58333" v="1.78814e-07" />+            </vertex>+            <vertex>+                <position x="-90.399" y="13.5534" z="-8.19838" />+                <normal x="-0.00743656" y="0.827263" z="-0.561766" />+                <texcoord u="7.5" v="1.78814e-07" />+            </vertex>+            <vertex>+                <position x="-84.8807" y="-4.7049" z="-35.3345" />+                <normal x="0.00205862" y="0.8191" z="-0.573647" />+                <texcoord u="7.66667" v="1.78814e-07" />+            </vertex>+            <vertex>+                <position x="-84.8807" y="-4.7049" z="-35.3345" />+                <normal x="0.00205862" y="0.8191" z="-0.573647" />+                <texcoord u="7.66667" v="1.78814e-07" />+            </vertex>+            <vertex>+                <position x="-88.977" y="4.12564" z="-22.3076" />+                <normal x="-0.00344499" y="0.824925" z="-0.565232" />+                <texcoord u="7.58333" v="1.78814e-07" />+            </vertex>+            <vertex>+                <position x="-78.5865" y="-12.4362" z="-46.3754" />+                <normal x="0.0114867" y="0.8092" z="-0.587421" />+                <texcoord u="7.75" v="1.78814e-07" />+            </vertex>+            <vertex>+                <position x="-78.5865" y="-12.4362" z="-46.3754" />+                <normal x="0.0114867" y="0.8092" z="-0.587421" />+                <texcoord u="7.75" v="1.78814e-07" />+            </vertex>+            <vertex>+                <position x="-84.8807" y="-4.7049" z="-35.3345" />+                <normal x="0.00205862" y="0.8191" z="-0.573647" />+                <texcoord u="7.66667" v="1.78814e-07" />+            </vertex>+            <vertex>+                <position x="-70.7334" y="-18.7917" z="-54.92" />+                <normal x="0.0278548" y="0.794502" z="-0.606622" />+                <texcoord u="7.83333" v="1.78814e-07" />+            </vertex>+            <vertex>+                <position x="-70.7334" y="-18.7917" z="-54.92" />+                <normal x="0.0278548" y="0.794502" z="-0.606622" />+                <texcoord u="7.83333" v="1.78814e-07" />+            </vertex>+            <vertex>+                <position x="-78.5865" y="-12.4362" z="-46.3754" />+                <normal x="0.0114867" y="0.8092" z="-0.587421" />+                <texcoord u="7.75" v="1.78814e-07" />+            </vertex>+            <vertex>+                <position x="-61.9707" y="-23.7142" z="-60.8399" />+                <normal x="0.0546255" y="0.774499" z="-0.630212" />+                <texcoord u="7.91667" v="1.78814e-07" />+            </vertex>+            <vertex>+                <position x="-61.9707" y="-23.7142" z="-60.8399" />+                <normal x="0.0546255" y="0.774499" z="-0.630212" />+                <texcoord u="7.91667" v="1.78814e-07" />+            </vertex>+            <vertex>+                <position x="-70.7334" y="-18.7917" z="-54.92" />+                <normal x="0.0278548" y="0.794502" z="-0.606622" />+                <texcoord u="7.83333" v="1.78814e-07" />+            </vertex>+            <vertex>+                <position x="-52.8412" y="-27.3173" z="-64.298" />+                <normal x="0.0946209" y="0.749303" z="-0.655433" />+                <texcoord u="8" v="1.78814e-07" />+            </vertex>+            <vertex>+                <position x="-52.8412" y="-27.3173" z="-64.298" />+                <normal x="0.0946209" y="0.749303" z="-0.655433" />+                <texcoord u="8" v="1.78814e-07" />+            </vertex>+            <vertex>+                <position x="-61.9707" y="-23.7142" z="-60.8399" />+                <normal x="0.0546255" y="0.774499" z="-0.630212" />+                <texcoord u="7.91667" v="1.78814e-07" />+            </vertex>+            <vertex>+                <position x="-43.7251" y="-29.8173" z="-65.6193" />+                <normal x="0.148208" y="0.719455" z="-0.678542" />+                <texcoord u="8.08333" v="1.78814e-07" />+            </vertex>+            <vertex>+                <position x="-43.7251" y="-29.8173" z="-65.6193" />+                <normal x="0.148208" y="0.719455" z="-0.678542" />+                <texcoord u="8.08333" v="1.78814e-07" />+            </vertex>+            <vertex>+                <position x="-52.8412" y="-27.3173" z="-64.298" />+                <normal x="0.0946209" y="0.749303" z="-0.655433" />+                <texcoord u="8" v="1.78814e-07" />+            </vertex>+            <vertex>+                <position x="-34.8719" y="-31.4542" z="-65.1651" />+                <normal x="0.213127" y="0.685114" z="-0.69656" />+                <texcoord u="8.16667" v="1.78814e-07" />+            </vertex>+            <vertex>+                <position x="-34.8719" y="-31.4542" z="-65.1651" />+                <normal x="0.213127" y="0.685114" z="-0.69656" />+                <texcoord u="8.16667" v="1.78814e-07" />+            </vertex>+            <vertex>+                <position x="-43.7251" y="-29.8173" z="-65.6193" />+                <normal x="0.148208" y="0.719455" z="-0.678542" />+                <texcoord u="8.08333" v="1.78814e-07" />+            </vertex>+            <vertex>+                <position x="-26.4533" y="-32.4378" z="-63.2674" />+                <normal x="0.286062" y="0.64623" z="-0.7075" />+                <texcoord u="8.25" v="1.78814e-07" />+            </vertex>+            <vertex>+                <position x="-26.4533" y="-32.4378" z="-63.2674" />+                <normal x="0.286062" y="0.64623" z="-0.7075" />+                <texcoord u="8.25" v="1.78814e-07" />+            </vertex>+            <vertex>+                <position x="-34.8719" y="-31.4542" z="-65.1651" />+                <normal x="0.213127" y="0.685113" z="-0.69656" />+                <texcoord u="8.16667" v="1.78814e-07" />+            </vertex>+            <vertex>+                <position x="-18.5824" y="-32.9301" z="-60.2179" />+                <normal x="0.362781" y="0.603751" z="-0.709842" />+                <texcoord u="8.33333" v="1.78814e-07" />+            </vertex>+            <vertex>+                <position x="-18.5824" y="-32.9301" z="-60.2179" />+                <normal x="0.362781" y="0.603751" z="-0.709842" />+                <texcoord u="8.33333" v="1.78814e-07" />+            </vertex>+            <vertex>+                <position x="-26.4533" y="-32.4378" z="-63.2674" />+                <normal x="0.286062" y="0.64623" z="-0.7075" />+                <texcoord u="8.25" v="1.78814e-07" />+            </vertex>+            <vertex>+                <position x="-11.3414" y="-33.0317" z="-56.2717" />+                <normal x="0.438372" y="0.560169" z="-0.702881" />+                <texcoord u="8.41667" v="1.78814e-07" />+            </vertex>+            <vertex>+                <position x="-11.3414" y="-33.0317" z="-56.2717" />+                <normal x="0.438372" y="0.560169" z="-0.702881" />+                <texcoord u="8.41667" v="1.78814e-07" />+            </vertex>+            <vertex>+                <position x="-18.5824" y="-32.9301" z="-60.2179" />+                <normal x="0.362781" y="0.603751" z="-0.709842" />+                <texcoord u="8.33333" v="1.78814e-07" />+            </vertex>+            <vertex>+                <position x="-4.77411" y="-32.7973" z="-51.6594" />+                <normal x="0.507874" y="0.51903" z="-0.687511" />+                <texcoord u="8.5" v="1.78814e-07" />+            </vertex>+            <vertex>+                <position x="-4.77411" y="-32.7973" z="-51.6594" />+                <normal x="0.507874" y="0.51903" z="-0.687511" />+                <texcoord u="8.5" v="1.78814e-07" />+            </vertex>+            <vertex>+                <position x="-11.3414" y="-33.0317" z="-56.2717" />+                <normal x="0.438372" y="0.560169" z="-0.702881" />+                <texcoord u="8.41667" v="1.78814e-07" />+            </vertex>+            <vertex>+                <position x="1.11303" y="-32.2539" z="-46.5903" />+                <normal x="0.567964" y="0.483507" z="-0.666061" />+                <texcoord u="8.58333" v="1.78814e-07" />+            </vertex>+            <vertex>+                <position x="1.11303" y="-32.2539" z="-46.5903" />+                <normal x="0.567964" y="0.483507" z="-0.666061" />+                <texcoord u="8.58333" v="1.78814e-07" />+            </vertex>+            <vertex>+                <position x="-4.77411" y="-32.7973" z="-51.6594" />+                <normal x="0.507874" y="0.51903" z="-0.687511" />+                <texcoord u="8.5" v="1.78814e-07" />+            </vertex>+            <vertex>+                <position x="6.38172" y="-31.4406" z="-41.2307" />+                <normal x="0.616745" y="0.455436" z="-0.642031" />+                <texcoord u="8.66667" v="1.78814e-07" />+            </vertex>+            <vertex>+                <position x="6.38172" y="-31.4406" z="-41.2307" />+                <normal x="0.616745" y="0.455436" z="-0.642031" />+                <texcoord u="8.66667" v="1.78814e-07" />+            </vertex>+            <vertex>+                <position x="1.11303" y="-32.2539" z="-46.5903" />+                <normal x="0.567964" y="0.483507" z="-0.666061" />+                <texcoord u="8.58333" v="1.78814e-07" />+            </vertex>+            <vertex>+                <position x="11.0884" y="-30.3818" z="-35.7202" />+                <normal x="0.654392" y="0.435583" z="-0.618092" />+                <texcoord u="8.75" v="1.78814e-07" />+            </vertex>+            <vertex>+                <position x="11.0884" y="-30.3818" z="-35.7202" />+                <normal x="0.654392" y="0.435583" z="-0.618092" />+                <texcoord u="8.75" v="1.78814e-07" />+            </vertex>+            <vertex>+                <position x="6.38172" y="-31.4406" z="-41.2307" />+                <normal x="0.616745" y="0.455436" z="-0.642031" />+                <texcoord u="8.66667" v="1.78814e-07" />+            </vertex>+            <vertex>+                <position x="15.3181" y="-29.1165" z="-30.155" />+                <normal x="0.681924" y="0.423268" z="-0.59651" />+                <texcoord u="8.83334" v="1.78814e-07" />+            </vertex>+            <vertex>+                <position x="15.3181" y="-29.1165" z="-30.155" />+                <normal x="0.681924" y="0.423268" z="-0.59651" />+                <texcoord u="8.83334" v="1.78814e-07" />+            </vertex>+            <vertex>+                <position x="11.0884" y="-30.3818" z="-35.7202" />+                <normal x="0.654392" y="0.435583" z="-0.618092" />+                <texcoord u="8.75" v="1.78814e-07" />+            </vertex>+            <vertex>+                <position x="19.1689" y="-27.6884" z="-24.5873" />+                <normal x="0.700801" y="0.416892" z="-0.57886" />+                <texcoord u="8.91667" v="1.78814e-07" />+            </vertex>+            <vertex>+                <position x="19.1689" y="-27.6884" z="-24.5873" />+                <normal x="0.700801" y="0.416892" z="-0.57886" />+                <texcoord u="8.91667" v="1.78814e-07" />+            </vertex>+            <vertex>+                <position x="15.3181" y="-29.1165" z="-30.155" />+                <normal x="0.681924" y="0.423268" z="-0.59651" />+                <texcoord u="8.83334" v="1.78814e-07" />+            </vertex>+            <vertex>+                <position x="22.7156" y="-26.1286" z="-19.0588" />+                <normal x="0.71273" y="0.414594" z="-0.565799" />+                <texcoord u="9" v="1.78814e-07" />+            </vertex>+            <vertex>+                <position x="22.7156" y="-26.1286" z="-19.0588" />+                <normal x="0.71273" y="0.414594" z="-0.565799" />+                <texcoord u="9" v="1.78814e-07" />+            </vertex>+            <vertex>+                <position x="19.1689" y="-27.6884" z="-24.5873" />+                <normal x="0.700801" y="0.416892" z="-0.57886" />+                <texcoord u="8.91667" v="1.78814e-07" />+            </vertex>+            <vertex>+                <position x="26.0359" y="-24.4639" z="-13.5858" />+                <normal x="0.719009" y="0.4146" z="-0.557794" />+                <texcoord u="9.08334" v="1.78814e-07" />+            </vertex>+            <vertex>+                <position x="26.0359" y="-24.4639" z="-13.5858" />+                <normal x="0.719009" y="0.4146" z="-0.557794" />+                <texcoord u="9.08334" v="1.78814e-07" />+            </vertex>+            <vertex>+                <position x="22.7156" y="-26.1286" z="-19.0588" />+                <normal x="0.71273" y="0.414594" z="-0.565799" />+                <texcoord u="9" v="1.78814e-07" />+            </vertex>+            <vertex>+                <position x="29.186" y="-22.7161" z="-8.19536" />+                <normal x="0.721108" y="0.414806" z="-0.554923" />+                <texcoord u="9.16667" v="1.78814e-07" />+            </vertex>+            <vertex>+                <position x="29.186" y="-22.7161" z="-8.19536" />+                <normal x="0.721108" y="0.414806" z="-0.554923" />+                <texcoord u="9.16667" v="1.78814e-07" />+            </vertex>+            <vertex>+                <position x="26.0359" y="-24.4639" z="-13.5858" />+                <normal x="0.719009" y="0.4146" z="-0.557794" />+                <texcoord u="9.08334" v="1.78814e-07" />+            </vertex>+            <vertex>+                <position x="32.228" y="-20.9039" z="-2.89658" />+                <normal x="0.720269" y="0.413043" z="-0.557323" />+                <texcoord u="9.25" v="1.78814e-07" />+            </vertex>+            <vertex>+                <position x="32.228" y="-20.9039" z="-2.89658" />+                <normal x="0.720269" y="0.413043" z="-0.557323" />+                <texcoord u="9.25" v="1.78814e-07" />+            </vertex>+            <vertex>+                <position x="29.186" y="-22.7161" z="-8.19536" />+                <normal x="0.721108" y="0.414806" z="-0.554923" />+                <texcoord u="9.16667" v="1.78814e-07" />+            </vertex>+            <vertex>+                <position x="35.225" y="-19.0268" z="2.32038" />+                <normal x="0.717477" y="0.40764" z="-0.564851" />+                <texcoord u="9.33334" v="1.78814e-07" />+            </vertex>+            <vertex>+                <position x="35.225" y="-19.0268" z="2.32038" />+                <normal x="0.717477" y="0.40764" z="-0.564851" />+                <texcoord u="9.33334" v="1.78814e-07" />+            </vertex>+            <vertex>+                <position x="32.228" y="-20.9039" z="-2.89658" />+                <normal x="0.720269" y="0.413043" z="-0.557323" />+                <texcoord u="9.25" v="1.78814e-07" />+            </vertex>+            <vertex>+                <position x="38.2184" y="-17.0981" z="7.4288" />+                <normal x="0.714088" y="0.395899" z="-0.577357" />+                <texcoord u="9.41667" v="1.78814e-07" />+            </vertex>+            <vertex>+                <position x="38.2184" y="-17.0981" z="7.4288" />+                <normal x="0.714088" y="0.395899" z="-0.577357" />+                <texcoord u="9.41667" v="1.78814e-07" />+            </vertex>+            <vertex>+                <position x="35.225" y="-19.0268" z="2.32038" />+                <normal x="0.717477" y="0.40764" z="-0.564851" />+                <texcoord u="9.33334" v="1.78814e-07" />+            </vertex>+            <vertex>+                <position x="41.2542" y="-15.12" z="12.4182" />+                <normal x="0.711075" y="0.375408" z="-0.594509" />+                <texcoord u="9.5" v="1.78814e-07" />+            </vertex>+            <vertex>+                <position x="41.2542" y="-15.12" z="12.4182" />+                <normal x="0.711075" y="0.375408" z="-0.594509" />+                <texcoord u="9.5" v="1.78814e-07" />+            </vertex>+            <vertex>+                <position x="38.2184" y="-17.0981" z="7.4288" />+                <normal x="0.714088" y="0.395899" z="-0.577357" />+                <texcoord u="9.41667" v="1.78814e-07" />+            </vertex>+            <vertex>+                <position x="44.372" y="-13.0703" z="17.2868" />+                <normal x="0.70907" y="0.344301" z="-0.615367" />+                <texcoord u="9.58334" v="1.78814e-07" />+            </vertex>+            <vertex>+                <position x="44.372" y="-13.0703" z="17.2868" />+                <normal x="0.70907" y="0.344301" z="-0.615367" />+                <texcoord u="9.58334" v="1.78814e-07" />+            </vertex>+            <vertex>+                <position x="41.2542" y="-15.12" z="12.4182" />+                <normal x="0.711075" y="0.375408" z="-0.594509" />+                <texcoord u="9.5" v="1.78814e-07" />+            </vertex>+            <vertex>+                <position x="47.5968" y="-10.9324" z="22.014" />+                <normal x="0.708581" y="0.300112" z="-0.638627" />+                <texcoord u="9.66667" v="1.78814e-07" />+            </vertex>+            <vertex>+                <position x="47.5968" y="-10.9324" z="22.014" />+                <normal x="0.708581" y="0.300112" z="-0.638627" />+                <texcoord u="9.66667" v="1.78814e-07" />+            </vertex>+            <vertex>+                <position x="44.372" y="-13.0703" z="17.2868" />+                <normal x="0.70907" y="0.344301" z="-0.615367" />+                <texcoord u="9.58334" v="1.78814e-07" />+            </vertex>+            <vertex>+                <position x="50.9398" y="-8.65595" z="26.5825" />+                <normal x="0.709631" y="0.241632" z="-0.661844" />+                <texcoord u="9.75001" v="1.78814e-07" />+            </vertex>+            <vertex>+                <position x="50.9398" y="-8.65595" z="26.5825" />+                <normal x="0.709631" y="0.241632" z="-0.661844" />+                <texcoord u="9.75001" v="1.78814e-07" />+            </vertex>+            <vertex>+                <position x="47.5968" y="-10.9324" z="22.014" />+                <normal x="0.708581" y="0.300112" z="-0.638627" />+                <texcoord u="9.66667" v="1.78814e-07" />+            </vertex>+            <vertex>+                <position x="54.3924" y="-6.17538" z="30.9567" />+                <normal x="0.71189" y="0.168228" z="-0.681844" />+                <texcoord u="9.83334" v="1.78814e-07" />+            </vertex>+            <vertex>+                <position x="54.3924" y="-6.17538" z="30.9567" />+                <normal x="0.71189" y="0.168228" z="-0.681844" />+                <texcoord u="9.83334" v="1.78814e-07" />+            </vertex>+            <vertex>+                <position x="50.9398" y="-8.65595" z="26.5825" />+                <normal x="0.709631" y="0.241632" z="-0.661844" />+                <texcoord u="9.75001" v="1.78814e-07" />+            </vertex>+            <vertex>+                <position x="57.9224" y="-3.35676" z="35.0839" />+                <normal x="0.71448" y="0.0826043" z="-0.694762" />+                <texcoord u="9.91667" v="1.78814e-07" />+            </vertex>+            <vertex>+                <position x="57.9224" y="-3.35676" z="35.0839" />+                <normal x="0.71448" y="0.0826043" z="-0.694762" />+                <texcoord u="9.91667" v="1.78814e-07" />+            </vertex>+            <vertex>+                <position x="54.3924" y="-6.17538" z="30.9567" />+                <normal x="0.71189" y="0.168228" z="-0.681844" />+                <texcoord u="9.83334" v="1.78814e-07" />+            </vertex>+            <vertex>+                <position x="61.4732" y="-0.00846273" z="38.8556" />+                <normal x="0.71667" y="-0.00942221" z="-0.697349" />+                <texcoord u="10" v="1" />+            </vertex>+            <vertex>+                <position x="64.0767" y="-5.65613" z="44.5495" />+                <normal x="0.872452" y="-0.351254" z="-0.339778" />+                <texcoord u="10" v="0.916667" />+            </vertex>+            <vertex>+                <position x="64.0767" y="-5.65613" z="44.5495" />+                <normal x="0.872452" y="-0.351254" z="-0.339778" />+                <texcoord u="10" v="0.916667" />+            </vertex>+            <vertex>+                <position x="64.0767" y="-5.65613" z="44.5495" />+                <normal x="0.872452" y="-0.351254" z="-0.339778" />+                <texcoord u="10" v="0.916667" />+            </vertex>+            <vertex>+                <position x="62.8963" y="-9.78824" z="51.8039" />+                <normal x="0.795345" y="-0.596829" z="0.105933" />+                <texcoord u="10" v="0.833333" />+            </vertex>+            <vertex>+                <position x="62.8963" y="-9.78824" z="51.8039" />+                <normal x="0.795345" y="-0.596829" z="0.105933" />+                <texcoord u="10" v="0.833333" />+            </vertex>+            <vertex>+                <position x="62.8963" y="-9.78824" z="51.8039" />+                <normal x="0.795345" y="-0.596829" z="0.105933" />+                <texcoord u="10" v="0.833333" />+            </vertex>+            <vertex>+                <position x="58.2484" y="-11.2976" z="58.6751" />+                <normal x="0.508631" y="-0.685076" z="0.521503" />+                <texcoord u="10" v="0.75" />+            </vertex>+            <vertex>+                <position x="58.2484" y="-11.2976" z="58.6751" />+                <normal x="0.508631" y="-0.685076" z="0.521503" />+                <texcoord u="10" v="0.75" />+            </vertex>+            <vertex>+                <position x="58.2484" y="-11.2976" z="58.6751" />+                <normal x="0.508631" y="-0.685076" z="0.521503" />+                <texcoord u="10" v="0.75" />+            </vertex>+            <vertex>+                <position x="51.3783" y="-9.77978" z="63.3219" />+                <normal x="0.0886189" y="-0.594661" z="0.799077" />+                <texcoord u="10" v="0.666667" />+            </vertex>+            <vertex>+                <position x="51.3783" y="-9.77978" z="63.3219" />+                <normal x="0.0886189" y="-0.594661" z="0.799077" />+                <texcoord u="10" v="0.666667" />+            </vertex>+            <vertex>+                <position x="51.3783" y="-9.77978" z="63.3219" />+                <normal x="0.0886189" y="-0.594661" z="0.799077" />+                <texcoord u="10" v="0.666667" />+            </vertex>+            <vertex>+                <position x="44.1269" y="-5.64147" z="64.4992" />+                <normal x="-0.354465" y="-0.34921" z="0.867414" />+                <texcoord u="10" v="0.583333" />+            </vertex>+            <vertex>+                <position x="44.1269" y="-5.64147" z="64.4992" />+                <normal x="-0.354465" y="-0.34921" z="0.867414" />+                <texcoord u="10" v="0.583333" />+            </vertex>+            <vertex>+                <position x="44.1269" y="-5.64147" z="64.4992" />+                <normal x="-0.354465" y="-0.34921" z="0.867414" />+                <texcoord u="10" v="0.583333" />+            </vertex>+            <vertex>+                <position x="38.4372" y="0.00846095" z="61.8916" />+                <normal x="-0.704585" y="-0.0116911" z="0.709523" />+                <texcoord u="10" v="0.5" />+            </vertex>+            <vertex>+                <position x="38.4372" y="0.00846095" z="61.8916" />+                <normal x="-0.704585" y="-0.0116911" z="0.709523" />+                <texcoord u="10" v="0.5" />+            </vertex>+            <vertex>+                <position x="38.4372" y="0.00846095" z="61.8916" />+                <normal x="-0.704585" y="-0.0116911" z="0.709523" />+                <texcoord u="10" v="0.5" />+            </vertex>+            <vertex>+                <position x="35.8337" y="5.65613" z="56.1977" />+                <normal x="-0.869604" y="0.331234" z="0.366159" />+                <texcoord u="10" v="0.416667" />+            </vertex>+            <vertex>+                <position x="35.8337" y="5.65613" z="56.1977" />+                <normal x="-0.869604" y="0.331234" z="0.366159" />+                <texcoord u="10" v="0.416667" />+            </vertex>+            <vertex>+                <position x="35.8337" y="5.65613" z="56.1977" />+                <normal x="-0.869604" y="0.331234" z="0.366159" />+                <texcoord u="10" v="0.416667" />+            </vertex>+            <vertex>+                <position x="37.014" y="9.78824" z="48.9433" />+                <normal x="-0.803995" y="0.58983" z="-0.0754556" />+                <texcoord u="10" v="0.333333" />+            </vertex>+            <vertex>+                <position x="37.014" y="9.78824" z="48.9433" />+                <normal x="-0.803995" y="0.58983" z="-0.0754556" />+                <texcoord u="10" v="0.333333" />+            </vertex>+            <vertex>+                <position x="37.014" y="9.78824" z="48.9433" />+                <normal x="-0.803995" y="0.58983" z="-0.0754556" />+                <texcoord u="10" v="0.333333" />+            </vertex>+            <vertex>+                <position x="41.662" y="11.2976" z="42.0721" />+                <normal x="-0.520153" y="0.691259" z="-0.501599" />+                <texcoord u="10" v="0.25" />+            </vertex>+            <vertex>+                <position x="41.662" y="11.2976" z="42.0721" />+                <normal x="-0.520153" y="0.691259" z="-0.501599" />+                <texcoord u="10" v="0.25" />+            </vertex>+            <vertex>+                <position x="41.662" y="11.2976" z="42.0721" />+                <normal x="-0.520153" y="0.691259" z="-0.501599" />+                <texcoord u="10" v="0.25" />+            </vertex>+            <vertex>+                <position x="48.532" y="9.77978" z="37.4253" />+                <normal x="-0.090431" y="0.600216" z="-0.794709" />+                <texcoord u="10" v="0.166667" />+            </vertex>+            <vertex>+                <position x="48.532" y="9.77978" z="37.4253" />+                <normal x="-0.090431" y="0.600216" z="-0.794709" />+                <texcoord u="10" v="0.166667" />+            </vertex>+            <vertex>+                <position x="48.532" y="9.77978" z="37.4253" />+                <normal x="-0.090431" y="0.600216" z="-0.794709" />+                <texcoord u="10" v="0.166667" />+            </vertex>+            <vertex>+                <position x="55.7834" y="5.64148" z="36.248" />+                <normal x="0.364764" y="0.340444" z="-0.866629" />+                <texcoord u="10" v="0.0833335" />+            </vertex>+            <vertex>+                <position x="55.7834" y="5.64148" z="36.248" />+                <normal x="0.364764" y="0.340444" z="-0.866629" />+                <texcoord u="10" v="0.0833335" />+            </vertex>+            <vertex>+                <position x="55.7834" y="5.64148" z="36.248" />+                <normal x="0.364764" y="0.340444" z="-0.866629" />+                <texcoord u="10" v="0.0833335" />+            </vertex>+            <vertex>+                <position x="61.4732" y="-0.00846273" z="38.8556" />+                <normal x="0.71667" y="-0.00942222" z="-0.697349" />+                <texcoord u="10" v="1.78814e-07" />+            </vertex>+            <vertex>+                <position x="61.4732" y="-0.00846273" z="38.8556" />+                <normal x="0.71667" y="-0.00942222" z="-0.697349" />+                <texcoord u="10" v="1.78814e-07" />+            </vertex>+            <vertex>+                <position x="57.9224" y="-3.35676" z="35.0839" />+                <normal x="0.71448" y="0.0826043" z="-0.694762" />+                <texcoord u="9.91667" v="1.78814e-07" />+            </vertex>+        </vertexbuffer>+    </sharedgeometry>+    <submeshes>+        <submesh material="2 - Default" usesharedvertices="true" use32bitindexes="false" operationtype="triangle_list">+            <faces count="2880">+                <face v1="0" v2="12" v3="13" />+                <face v1="0" v2="13" v3="1" />+                <face v1="1" v2="13" v3="14" />+                <face v1="1" v2="14" v3="2" />+                <face v1="2" v2="14" v3="15" />+                <face v1="2" v2="15" v3="3" />+                <face v1="3" v2="15" v3="16" />+                <face v1="3" v2="16" v3="4" />+                <face v1="4" v2="16" v3="17" />+                <face v1="4" v2="17" v3="5" />+                <face v1="5" v2="17" v3="18" />+                <face v1="5" v2="18" v3="6" />+                <face v1="6" v2="18" v3="19" />+                <face v1="6" v2="19" v3="7" />+                <face v1="7" v2="19" v3="20" />+                <face v1="7" v2="20" v3="8" />+                <face v1="8" v2="20" v3="21" />+                <face v1="8" v2="21" v3="9" />+                <face v1="9" v2="21" v3="22" />+                <face v1="9" v2="22" v3="10" />+                <face v1="10" v2="22" v3="23" />+                <face v1="10" v2="23" v3="11" />+                <face v1="11" v2="23" v3="1440" />+                <face v1="11" v2="1441" v3="1442" />+                <face v1="12" v2="24" v3="25" />+                <face v1="12" v2="25" v3="13" />+                <face v1="13" v2="25" v3="26" />+                <face v1="13" v2="26" v3="14" />+                <face v1="14" v2="26" v3="27" />+                <face v1="14" v2="27" v3="15" />+                <face v1="15" v2="27" v3="28" />+                <face v1="15" v2="28" v3="16" />+                <face v1="16" v2="28" v3="29" />+                <face v1="16" v2="29" v3="17" />+                <face v1="17" v2="29" v3="30" />+                <face v1="17" v2="30" v3="18" />+                <face v1="18" v2="30" v3="31" />+                <face v1="18" v2="31" v3="19" />+                <face v1="19" v2="31" v3="32" />+                <face v1="19" v2="32" v3="20" />+                <face v1="20" v2="32" v3="33" />+                <face v1="20" v2="33" v3="21" />+                <face v1="21" v2="33" v3="34" />+                <face v1="21" v2="34" v3="22" />+                <face v1="22" v2="34" v3="35" />+                <face v1="22" v2="35" v3="23" />+                <face v1="23" v2="35" v3="1443" />+                <face v1="23" v2="1444" v3="1445" />+                <face v1="24" v2="36" v3="37" />+                <face v1="24" v2="37" v3="25" />+                <face v1="25" v2="37" v3="38" />+                <face v1="25" v2="38" v3="26" />+                <face v1="26" v2="38" v3="39" />+                <face v1="26" v2="39" v3="27" />+                <face v1="27" v2="39" v3="40" />+                <face v1="27" v2="40" v3="28" />+                <face v1="28" v2="40" v3="41" />+                <face v1="28" v2="41" v3="29" />+                <face v1="29" v2="41" v3="42" />+                <face v1="29" v2="42" v3="30" />+                <face v1="30" v2="42" v3="43" />+                <face v1="30" v2="43" v3="31" />+                <face v1="31" v2="43" v3="44" />+                <face v1="31" v2="44" v3="32" />+                <face v1="32" v2="44" v3="45" />+                <face v1="32" v2="45" v3="33" />+                <face v1="33" v2="45" v3="46" />+                <face v1="33" v2="46" v3="34" />+                <face v1="34" v2="46" v3="47" />+                <face v1="34" v2="47" v3="35" />+                <face v1="35" v2="47" v3="1446" />+                <face v1="35" v2="1447" v3="1448" />+                <face v1="36" v2="48" v3="49" />+                <face v1="36" v2="49" v3="37" />+                <face v1="37" v2="49" v3="50" />+                <face v1="37" v2="50" v3="38" />+                <face v1="38" v2="50" v3="51" />+                <face v1="38" v2="51" v3="39" />+                <face v1="39" v2="51" v3="52" />+                <face v1="39" v2="52" v3="40" />+                <face v1="40" v2="52" v3="53" />+                <face v1="40" v2="53" v3="41" />+                <face v1="41" v2="53" v3="54" />+                <face v1="41" v2="54" v3="42" />+                <face v1="42" v2="54" v3="55" />+                <face v1="42" v2="55" v3="43" />+                <face v1="43" v2="55" v3="56" />+                <face v1="43" v2="56" v3="44" />+                <face v1="44" v2="56" v3="57" />+                <face v1="44" v2="57" v3="45" />+                <face v1="45" v2="57" v3="58" />+                <face v1="45" v2="58" v3="46" />+                <face v1="46" v2="58" v3="59" />+                <face v1="46" v2="59" v3="47" />+                <face v1="47" v2="59" v3="1449" />+                <face v1="47" v2="1450" v3="1451" />+                <face v1="48" v2="60" v3="61" />+                <face v1="48" v2="61" v3="49" />+                <face v1="49" v2="61" v3="62" />+                <face v1="49" v2="62" v3="50" />+                <face v1="50" v2="62" v3="63" />+                <face v1="50" v2="63" v3="51" />+                <face v1="51" v2="63" v3="64" />+                <face v1="51" v2="64" v3="52" />+                <face v1="52" v2="64" v3="65" />+                <face v1="52" v2="65" v3="53" />+                <face v1="53" v2="65" v3="66" />+                <face v1="53" v2="66" v3="54" />+                <face v1="54" v2="66" v3="67" />+                <face v1="54" v2="67" v3="55" />+                <face v1="55" v2="67" v3="68" />+                <face v1="55" v2="68" v3="56" />+                <face v1="56" v2="68" v3="69" />+                <face v1="56" v2="69" v3="57" />+                <face v1="57" v2="69" v3="70" />+                <face v1="57" v2="70" v3="58" />+                <face v1="58" v2="70" v3="71" />+                <face v1="58" v2="71" v3="59" />+                <face v1="59" v2="71" v3="1452" />+                <face v1="59" v2="1453" v3="1454" />+                <face v1="60" v2="72" v3="73" />+                <face v1="60" v2="73" v3="61" />+                <face v1="61" v2="73" v3="74" />+                <face v1="61" v2="74" v3="62" />+                <face v1="62" v2="74" v3="75" />+                <face v1="62" v2="75" v3="63" />+                <face v1="63" v2="75" v3="76" />+                <face v1="63" v2="76" v3="64" />+                <face v1="64" v2="76" v3="77" />+                <face v1="64" v2="77" v3="65" />+                <face v1="65" v2="77" v3="78" />+                <face v1="65" v2="78" v3="66" />+                <face v1="66" v2="78" v3="79" />+                <face v1="66" v2="79" v3="67" />+                <face v1="67" v2="79" v3="80" />+                <face v1="67" v2="80" v3="68" />+                <face v1="68" v2="80" v3="81" />+                <face v1="68" v2="81" v3="69" />+                <face v1="69" v2="81" v3="82" />+                <face v1="69" v2="82" v3="70" />+                <face v1="70" v2="82" v3="83" />+                <face v1="70" v2="83" v3="71" />+                <face v1="71" v2="83" v3="1455" />+                <face v1="71" v2="1456" v3="1457" />+                <face v1="72" v2="84" v3="85" />+                <face v1="72" v2="85" v3="73" />+                <face v1="73" v2="85" v3="86" />+                <face v1="73" v2="86" v3="74" />+                <face v1="74" v2="86" v3="87" />+                <face v1="74" v2="87" v3="75" />+                <face v1="75" v2="87" v3="88" />+                <face v1="75" v2="88" v3="76" />+                <face v1="76" v2="88" v3="89" />+                <face v1="76" v2="89" v3="77" />+                <face v1="77" v2="89" v3="90" />+                <face v1="77" v2="90" v3="78" />+                <face v1="78" v2="90" v3="91" />+                <face v1="78" v2="91" v3="79" />+                <face v1="79" v2="91" v3="92" />+                <face v1="79" v2="92" v3="80" />+                <face v1="80" v2="92" v3="93" />+                <face v1="80" v2="93" v3="81" />+                <face v1="81" v2="93" v3="94" />+                <face v1="81" v2="94" v3="82" />+                <face v1="82" v2="94" v3="95" />+                <face v1="82" v2="95" v3="83" />+                <face v1="83" v2="95" v3="1458" />+                <face v1="83" v2="1459" v3="1460" />+                <face v1="84" v2="96" v3="97" />+                <face v1="84" v2="97" v3="85" />+                <face v1="85" v2="97" v3="98" />+                <face v1="85" v2="98" v3="86" />+                <face v1="86" v2="98" v3="99" />+                <face v1="86" v2="99" v3="87" />+                <face v1="87" v2="99" v3="100" />+                <face v1="87" v2="100" v3="88" />+                <face v1="88" v2="100" v3="101" />+                <face v1="88" v2="101" v3="89" />+                <face v1="89" v2="101" v3="102" />+                <face v1="89" v2="102" v3="90" />+                <face v1="90" v2="102" v3="103" />+                <face v1="90" v2="103" v3="91" />+                <face v1="91" v2="103" v3="104" />+                <face v1="91" v2="104" v3="92" />+                <face v1="92" v2="104" v3="105" />+                <face v1="92" v2="105" v3="93" />+                <face v1="93" v2="105" v3="106" />+                <face v1="93" v2="106" v3="94" />+                <face v1="94" v2="106" v3="107" />+                <face v1="94" v2="107" v3="95" />+                <face v1="95" v2="107" v3="1461" />+                <face v1="95" v2="1462" v3="1463" />+                <face v1="96" v2="108" v3="109" />+                <face v1="96" v2="109" v3="97" />+                <face v1="97" v2="109" v3="110" />+                <face v1="97" v2="110" v3="98" />+                <face v1="98" v2="110" v3="111" />+                <face v1="98" v2="111" v3="99" />+                <face v1="99" v2="111" v3="112" />+                <face v1="99" v2="112" v3="100" />+                <face v1="100" v2="112" v3="113" />+                <face v1="100" v2="113" v3="101" />+                <face v1="101" v2="113" v3="114" />+                <face v1="101" v2="114" v3="102" />+                <face v1="102" v2="114" v3="115" />+                <face v1="102" v2="115" v3="103" />+                <face v1="103" v2="115" v3="116" />+                <face v1="103" v2="116" v3="104" />+                <face v1="104" v2="116" v3="117" />+                <face v1="104" v2="117" v3="105" />+                <face v1="105" v2="117" v3="118" />+                <face v1="105" v2="118" v3="106" />+                <face v1="106" v2="118" v3="119" />+                <face v1="106" v2="119" v3="107" />+                <face v1="107" v2="119" v3="1464" />+                <face v1="107" v2="1465" v3="1466" />+                <face v1="108" v2="120" v3="121" />+                <face v1="108" v2="121" v3="109" />+                <face v1="109" v2="121" v3="122" />+                <face v1="109" v2="122" v3="110" />+                <face v1="110" v2="122" v3="123" />+                <face v1="110" v2="123" v3="111" />+                <face v1="111" v2="123" v3="124" />+                <face v1="111" v2="124" v3="112" />+                <face v1="112" v2="124" v3="125" />+                <face v1="112" v2="125" v3="113" />+                <face v1="113" v2="125" v3="126" />+                <face v1="113" v2="126" v3="114" />+                <face v1="114" v2="126" v3="127" />+                <face v1="114" v2="127" v3="115" />+                <face v1="115" v2="127" v3="128" />+                <face v1="115" v2="128" v3="116" />+                <face v1="116" v2="128" v3="129" />+                <face v1="116" v2="129" v3="117" />+                <face v1="117" v2="129" v3="130" />+                <face v1="117" v2="130" v3="118" />+                <face v1="118" v2="130" v3="131" />+                <face v1="118" v2="131" v3="119" />+                <face v1="119" v2="131" v3="1467" />+                <face v1="119" v2="1468" v3="1469" />+                <face v1="120" v2="132" v3="133" />+                <face v1="120" v2="133" v3="121" />+                <face v1="121" v2="133" v3="134" />+                <face v1="121" v2="134" v3="122" />+                <face v1="122" v2="134" v3="135" />+                <face v1="122" v2="135" v3="123" />+                <face v1="123" v2="135" v3="136" />+                <face v1="123" v2="136" v3="124" />+                <face v1="124" v2="136" v3="137" />+                <face v1="124" v2="137" v3="125" />+                <face v1="125" v2="137" v3="138" />+                <face v1="125" v2="138" v3="126" />+                <face v1="126" v2="138" v3="139" />+                <face v1="126" v2="139" v3="127" />+                <face v1="127" v2="139" v3="140" />+                <face v1="127" v2="140" v3="128" />+                <face v1="128" v2="140" v3="141" />+                <face v1="128" v2="141" v3="129" />+                <face v1="129" v2="141" v3="142" />+                <face v1="129" v2="142" v3="130" />+                <face v1="130" v2="142" v3="143" />+                <face v1="130" v2="143" v3="131" />+                <face v1="131" v2="143" v3="1470" />+                <face v1="131" v2="1471" v3="1472" />+                <face v1="132" v2="144" v3="145" />+                <face v1="132" v2="145" v3="133" />+                <face v1="133" v2="145" v3="146" />+                <face v1="133" v2="146" v3="134" />+                <face v1="134" v2="146" v3="147" />+                <face v1="134" v2="147" v3="135" />+                <face v1="135" v2="147" v3="148" />+                <face v1="135" v2="148" v3="136" />+                <face v1="136" v2="148" v3="149" />+                <face v1="136" v2="149" v3="137" />+                <face v1="137" v2="149" v3="150" />+                <face v1="137" v2="150" v3="138" />+                <face v1="138" v2="150" v3="151" />+                <face v1="138" v2="151" v3="139" />+                <face v1="139" v2="151" v3="152" />+                <face v1="139" v2="152" v3="140" />+                <face v1="140" v2="152" v3="153" />+                <face v1="140" v2="153" v3="141" />+                <face v1="141" v2="153" v3="154" />+                <face v1="141" v2="154" v3="142" />+                <face v1="142" v2="154" v3="155" />+                <face v1="142" v2="155" v3="143" />+                <face v1="143" v2="155" v3="1473" />+                <face v1="143" v2="1474" v3="1475" />+                <face v1="144" v2="156" v3="157" />+                <face v1="144" v2="157" v3="145" />+                <face v1="145" v2="157" v3="158" />+                <face v1="145" v2="158" v3="146" />+                <face v1="146" v2="158" v3="159" />+                <face v1="146" v2="159" v3="147" />+                <face v1="147" v2="159" v3="160" />+                <face v1="147" v2="160" v3="148" />+                <face v1="148" v2="160" v3="161" />+                <face v1="148" v2="161" v3="149" />+                <face v1="149" v2="161" v3="162" />+                <face v1="149" v2="162" v3="150" />+                <face v1="150" v2="162" v3="163" />+                <face v1="150" v2="163" v3="151" />+                <face v1="151" v2="163" v3="164" />+                <face v1="151" v2="164" v3="152" />+                <face v1="152" v2="164" v3="165" />+                <face v1="152" v2="165" v3="153" />+                <face v1="153" v2="165" v3="166" />+                <face v1="153" v2="166" v3="154" />+                <face v1="154" v2="166" v3="167" />+                <face v1="154" v2="167" v3="155" />+                <face v1="155" v2="167" v3="1476" />+                <face v1="155" v2="1477" v3="1478" />+                <face v1="156" v2="168" v3="169" />+                <face v1="156" v2="169" v3="157" />+                <face v1="157" v2="169" v3="170" />+                <face v1="157" v2="170" v3="158" />+                <face v1="158" v2="170" v3="171" />+                <face v1="158" v2="171" v3="159" />+                <face v1="159" v2="171" v3="172" />+                <face v1="159" v2="172" v3="160" />+                <face v1="160" v2="172" v3="173" />+                <face v1="160" v2="173" v3="161" />+                <face v1="161" v2="173" v3="174" />+                <face v1="161" v2="174" v3="162" />+                <face v1="162" v2="174" v3="175" />+                <face v1="162" v2="175" v3="163" />+                <face v1="163" v2="175" v3="176" />+                <face v1="163" v2="176" v3="164" />+                <face v1="164" v2="176" v3="177" />+                <face v1="164" v2="177" v3="165" />+                <face v1="165" v2="177" v3="178" />+                <face v1="165" v2="178" v3="166" />+                <face v1="166" v2="178" v3="179" />+                <face v1="166" v2="179" v3="167" />+                <face v1="167" v2="179" v3="1479" />+                <face v1="167" v2="1480" v3="1481" />+                <face v1="168" v2="180" v3="181" />+                <face v1="168" v2="181" v3="169" />+                <face v1="169" v2="181" v3="182" />+                <face v1="169" v2="182" v3="170" />+                <face v1="170" v2="182" v3="183" />+                <face v1="170" v2="183" v3="171" />+                <face v1="171" v2="183" v3="184" />+                <face v1="171" v2="184" v3="172" />+                <face v1="172" v2="184" v3="185" />+                <face v1="172" v2="185" v3="173" />+                <face v1="173" v2="185" v3="186" />+                <face v1="173" v2="186" v3="174" />+                <face v1="174" v2="186" v3="187" />+                <face v1="174" v2="187" v3="175" />+                <face v1="175" v2="187" v3="188" />+                <face v1="175" v2="188" v3="176" />+                <face v1="176" v2="188" v3="189" />+                <face v1="176" v2="189" v3="177" />+                <face v1="177" v2="189" v3="190" />+                <face v1="177" v2="190" v3="178" />+                <face v1="178" v2="190" v3="191" />+                <face v1="178" v2="191" v3="179" />+                <face v1="179" v2="191" v3="1482" />+                <face v1="179" v2="1483" v3="1484" />+                <face v1="180" v2="192" v3="193" />+                <face v1="180" v2="193" v3="181" />+                <face v1="181" v2="193" v3="194" />+                <face v1="181" v2="194" v3="182" />+                <face v1="182" v2="194" v3="195" />+                <face v1="182" v2="195" v3="183" />+                <face v1="183" v2="195" v3="196" />+                <face v1="183" v2="196" v3="184" />+                <face v1="184" v2="196" v3="197" />+                <face v1="184" v2="197" v3="185" />+                <face v1="185" v2="197" v3="198" />+                <face v1="185" v2="198" v3="186" />+                <face v1="186" v2="198" v3="199" />+                <face v1="186" v2="199" v3="187" />+                <face v1="187" v2="199" v3="200" />+                <face v1="187" v2="200" v3="188" />+                <face v1="188" v2="200" v3="201" />+                <face v1="188" v2="201" v3="189" />+                <face v1="189" v2="201" v3="202" />+                <face v1="189" v2="202" v3="190" />+                <face v1="190" v2="202" v3="203" />+                <face v1="190" v2="203" v3="191" />+                <face v1="191" v2="203" v3="1485" />+                <face v1="191" v2="1486" v3="1487" />+                <face v1="192" v2="204" v3="205" />+                <face v1="192" v2="205" v3="193" />+                <face v1="193" v2="205" v3="206" />+                <face v1="193" v2="206" v3="194" />+                <face v1="194" v2="206" v3="207" />+                <face v1="194" v2="207" v3="195" />+                <face v1="195" v2="207" v3="208" />+                <face v1="195" v2="208" v3="196" />+                <face v1="196" v2="208" v3="209" />+                <face v1="196" v2="209" v3="197" />+                <face v1="197" v2="209" v3="210" />+                <face v1="197" v2="210" v3="198" />+                <face v1="198" v2="210" v3="211" />+                <face v1="198" v2="211" v3="199" />+                <face v1="199" v2="211" v3="212" />+                <face v1="199" v2="212" v3="200" />+                <face v1="200" v2="212" v3="213" />+                <face v1="200" v2="213" v3="201" />+                <face v1="201" v2="213" v3="214" />+                <face v1="201" v2="214" v3="202" />+                <face v1="202" v2="214" v3="215" />+                <face v1="202" v2="215" v3="203" />+                <face v1="203" v2="215" v3="1488" />+                <face v1="203" v2="1489" v3="1490" />+                <face v1="204" v2="216" v3="217" />+                <face v1="204" v2="217" v3="205" />+                <face v1="205" v2="217" v3="218" />+                <face v1="205" v2="218" v3="206" />+                <face v1="206" v2="218" v3="219" />+                <face v1="206" v2="219" v3="207" />+                <face v1="207" v2="219" v3="220" />+                <face v1="207" v2="220" v3="208" />+                <face v1="208" v2="220" v3="221" />+                <face v1="208" v2="221" v3="209" />+                <face v1="209" v2="221" v3="222" />+                <face v1="209" v2="222" v3="210" />+                <face v1="210" v2="222" v3="223" />+                <face v1="210" v2="223" v3="211" />+                <face v1="211" v2="223" v3="224" />+                <face v1="211" v2="224" v3="212" />+                <face v1="212" v2="224" v3="225" />+                <face v1="212" v2="225" v3="213" />+                <face v1="213" v2="225" v3="226" />+                <face v1="213" v2="226" v3="214" />+                <face v1="214" v2="226" v3="227" />+                <face v1="214" v2="227" v3="215" />+                <face v1="215" v2="227" v3="1491" />+                <face v1="215" v2="1492" v3="1493" />+                <face v1="216" v2="228" v3="229" />+                <face v1="216" v2="229" v3="217" />+                <face v1="217" v2="229" v3="230" />+                <face v1="217" v2="230" v3="218" />+                <face v1="218" v2="230" v3="231" />+                <face v1="218" v2="231" v3="219" />+                <face v1="219" v2="231" v3="232" />+                <face v1="219" v2="232" v3="220" />+                <face v1="220" v2="232" v3="233" />+                <face v1="220" v2="233" v3="221" />+                <face v1="221" v2="233" v3="234" />+                <face v1="221" v2="234" v3="222" />+                <face v1="222" v2="234" v3="235" />+                <face v1="222" v2="235" v3="223" />+                <face v1="223" v2="235" v3="236" />+                <face v1="223" v2="236" v3="224" />+                <face v1="224" v2="236" v3="237" />+                <face v1="224" v2="237" v3="225" />+                <face v1="225" v2="237" v3="238" />+                <face v1="225" v2="238" v3="226" />+                <face v1="226" v2="238" v3="239" />+                <face v1="226" v2="239" v3="227" />+                <face v1="227" v2="239" v3="1494" />+                <face v1="227" v2="1495" v3="1496" />+                <face v1="228" v2="240" v3="241" />+                <face v1="228" v2="241" v3="229" />+                <face v1="229" v2="241" v3="242" />+                <face v1="229" v2="242" v3="230" />+                <face v1="230" v2="242" v3="243" />+                <face v1="230" v2="243" v3="231" />+                <face v1="231" v2="243" v3="244" />+                <face v1="231" v2="244" v3="232" />+                <face v1="232" v2="244" v3="245" />+                <face v1="232" v2="245" v3="233" />+                <face v1="233" v2="245" v3="246" />+                <face v1="233" v2="246" v3="234" />+                <face v1="234" v2="246" v3="247" />+                <face v1="234" v2="247" v3="235" />+                <face v1="235" v2="247" v3="248" />+                <face v1="235" v2="248" v3="236" />+                <face v1="236" v2="248" v3="249" />+                <face v1="236" v2="249" v3="237" />+                <face v1="237" v2="249" v3="250" />+                <face v1="237" v2="250" v3="238" />+                <face v1="238" v2="250" v3="251" />+                <face v1="238" v2="251" v3="239" />+                <face v1="239" v2="251" v3="1497" />+                <face v1="239" v2="1498" v3="1499" />+                <face v1="240" v2="252" v3="253" />+                <face v1="240" v2="253" v3="241" />+                <face v1="241" v2="253" v3="254" />+                <face v1="241" v2="254" v3="242" />+                <face v1="242" v2="254" v3="255" />+                <face v1="242" v2="255" v3="243" />+                <face v1="243" v2="255" v3="256" />+                <face v1="243" v2="256" v3="244" />+                <face v1="244" v2="256" v3="257" />+                <face v1="244" v2="257" v3="245" />+                <face v1="245" v2="257" v3="258" />+                <face v1="245" v2="258" v3="246" />+                <face v1="246" v2="258" v3="259" />+                <face v1="246" v2="259" v3="247" />+                <face v1="247" v2="259" v3="260" />+                <face v1="247" v2="260" v3="248" />+                <face v1="248" v2="260" v3="261" />+                <face v1="248" v2="261" v3="249" />+                <face v1="249" v2="261" v3="262" />+                <face v1="249" v2="262" v3="250" />+                <face v1="250" v2="262" v3="263" />+                <face v1="250" v2="263" v3="251" />+                <face v1="251" v2="263" v3="1500" />+                <face v1="251" v2="1501" v3="1502" />+                <face v1="252" v2="264" v3="265" />+                <face v1="252" v2="265" v3="253" />+                <face v1="253" v2="265" v3="266" />+                <face v1="253" v2="266" v3="254" />+                <face v1="254" v2="266" v3="267" />+                <face v1="254" v2="267" v3="255" />+                <face v1="255" v2="267" v3="268" />+                <face v1="255" v2="268" v3="256" />+                <face v1="256" v2="268" v3="269" />+                <face v1="256" v2="269" v3="257" />+                <face v1="257" v2="269" v3="270" />+                <face v1="257" v2="270" v3="258" />+                <face v1="258" v2="270" v3="271" />+                <face v1="258" v2="271" v3="259" />+                <face v1="259" v2="271" v3="272" />+                <face v1="259" v2="272" v3="260" />+                <face v1="260" v2="272" v3="273" />+                <face v1="260" v2="273" v3="261" />+                <face v1="261" v2="273" v3="274" />+                <face v1="261" v2="274" v3="262" />+                <face v1="262" v2="274" v3="275" />+                <face v1="262" v2="275" v3="263" />+                <face v1="263" v2="275" v3="1503" />+                <face v1="263" v2="1504" v3="1505" />+                <face v1="264" v2="276" v3="277" />+                <face v1="264" v2="277" v3="265" />+                <face v1="265" v2="277" v3="278" />+                <face v1="265" v2="278" v3="266" />+                <face v1="266" v2="278" v3="279" />+                <face v1="266" v2="279" v3="267" />+                <face v1="267" v2="279" v3="280" />+                <face v1="267" v2="280" v3="268" />+                <face v1="268" v2="280" v3="281" />+                <face v1="268" v2="281" v3="269" />+                <face v1="269" v2="281" v3="282" />+                <face v1="269" v2="282" v3="270" />+                <face v1="270" v2="282" v3="283" />+                <face v1="270" v2="283" v3="271" />+                <face v1="271" v2="283" v3="284" />+                <face v1="271" v2="284" v3="272" />+                <face v1="272" v2="284" v3="285" />+                <face v1="272" v2="285" v3="273" />+                <face v1="273" v2="285" v3="286" />+                <face v1="273" v2="286" v3="274" />+                <face v1="274" v2="286" v3="287" />+                <face v1="274" v2="287" v3="275" />+                <face v1="275" v2="287" v3="1506" />+                <face v1="275" v2="1507" v3="1508" />+                <face v1="276" v2="288" v3="289" />+                <face v1="276" v2="289" v3="277" />+                <face v1="277" v2="289" v3="290" />+                <face v1="277" v2="290" v3="278" />+                <face v1="278" v2="290" v3="291" />+                <face v1="278" v2="291" v3="279" />+                <face v1="279" v2="291" v3="292" />+                <face v1="279" v2="292" v3="280" />+                <face v1="280" v2="292" v3="293" />+                <face v1="280" v2="293" v3="281" />+                <face v1="281" v2="293" v3="294" />+                <face v1="281" v2="294" v3="282" />+                <face v1="282" v2="294" v3="295" />+                <face v1="282" v2="295" v3="283" />+                <face v1="283" v2="295" v3="296" />+                <face v1="283" v2="296" v3="284" />+                <face v1="284" v2="296" v3="297" />+                <face v1="284" v2="297" v3="285" />+                <face v1="285" v2="297" v3="298" />+                <face v1="285" v2="298" v3="286" />+                <face v1="286" v2="298" v3="299" />+                <face v1="286" v2="299" v3="287" />+                <face v1="287" v2="299" v3="1509" />+                <face v1="287" v2="1510" v3="1511" />+                <face v1="288" v2="300" v3="301" />+                <face v1="288" v2="301" v3="289" />+                <face v1="289" v2="301" v3="302" />+                <face v1="289" v2="302" v3="290" />+                <face v1="290" v2="302" v3="303" />+                <face v1="290" v2="303" v3="291" />+                <face v1="291" v2="303" v3="304" />+                <face v1="291" v2="304" v3="292" />+                <face v1="292" v2="304" v3="305" />+                <face v1="292" v2="305" v3="293" />+                <face v1="293" v2="305" v3="306" />+                <face v1="293" v2="306" v3="294" />+                <face v1="294" v2="306" v3="307" />+                <face v1="294" v2="307" v3="295" />+                <face v1="295" v2="307" v3="308" />+                <face v1="295" v2="308" v3="296" />+                <face v1="296" v2="308" v3="309" />+                <face v1="296" v2="309" v3="297" />+                <face v1="297" v2="309" v3="310" />+                <face v1="297" v2="310" v3="298" />+                <face v1="298" v2="310" v3="311" />+                <face v1="298" v2="311" v3="299" />+                <face v1="299" v2="311" v3="1512" />+                <face v1="299" v2="1513" v3="1514" />+                <face v1="300" v2="312" v3="313" />+                <face v1="300" v2="313" v3="301" />+                <face v1="301" v2="313" v3="314" />+                <face v1="301" v2="314" v3="302" />+                <face v1="302" v2="314" v3="315" />+                <face v1="302" v2="315" v3="303" />+                <face v1="303" v2="315" v3="316" />+                <face v1="303" v2="316" v3="304" />+                <face v1="304" v2="316" v3="317" />+                <face v1="304" v2="317" v3="305" />+                <face v1="305" v2="317" v3="318" />+                <face v1="305" v2="318" v3="306" />+                <face v1="306" v2="318" v3="319" />+                <face v1="306" v2="319" v3="307" />+                <face v1="307" v2="319" v3="320" />+                <face v1="307" v2="320" v3="308" />+                <face v1="308" v2="320" v3="321" />+                <face v1="308" v2="321" v3="309" />+                <face v1="309" v2="321" v3="322" />+                <face v1="309" v2="322" v3="310" />+                <face v1="310" v2="322" v3="323" />+                <face v1="310" v2="323" v3="311" />+                <face v1="311" v2="323" v3="1515" />+                <face v1="311" v2="1516" v3="1517" />+                <face v1="312" v2="324" v3="325" />+                <face v1="312" v2="325" v3="313" />+                <face v1="313" v2="325" v3="326" />+                <face v1="313" v2="326" v3="314" />+                <face v1="314" v2="326" v3="327" />+                <face v1="314" v2="327" v3="315" />+                <face v1="315" v2="327" v3="328" />+                <face v1="315" v2="328" v3="316" />+                <face v1="316" v2="328" v3="329" />+                <face v1="316" v2="329" v3="317" />+                <face v1="317" v2="329" v3="330" />+                <face v1="317" v2="330" v3="318" />+                <face v1="318" v2="330" v3="331" />+                <face v1="318" v2="331" v3="319" />+                <face v1="319" v2="331" v3="332" />+                <face v1="319" v2="332" v3="320" />+                <face v1="320" v2="332" v3="333" />+                <face v1="320" v2="333" v3="321" />+                <face v1="321" v2="333" v3="334" />+                <face v1="321" v2="334" v3="322" />+                <face v1="322" v2="334" v3="335" />+                <face v1="322" v2="335" v3="323" />+                <face v1="323" v2="335" v3="1518" />+                <face v1="323" v2="1519" v3="1520" />+                <face v1="324" v2="336" v3="337" />+                <face v1="324" v2="337" v3="325" />+                <face v1="325" v2="337" v3="338" />+                <face v1="325" v2="338" v3="326" />+                <face v1="326" v2="338" v3="339" />+                <face v1="326" v2="339" v3="327" />+                <face v1="327" v2="339" v3="340" />+                <face v1="327" v2="340" v3="328" />+                <face v1="328" v2="340" v3="341" />+                <face v1="328" v2="341" v3="329" />+                <face v1="329" v2="341" v3="342" />+                <face v1="329" v2="342" v3="330" />+                <face v1="330" v2="342" v3="343" />+                <face v1="330" v2="343" v3="331" />+                <face v1="331" v2="343" v3="344" />+                <face v1="331" v2="344" v3="332" />+                <face v1="332" v2="344" v3="345" />+                <face v1="332" v2="345" v3="333" />+                <face v1="333" v2="345" v3="346" />+                <face v1="333" v2="346" v3="334" />+                <face v1="334" v2="346" v3="347" />+                <face v1="334" v2="347" v3="335" />+                <face v1="335" v2="347" v3="1521" />+                <face v1="335" v2="1522" v3="1523" />+                <face v1="336" v2="348" v3="349" />+                <face v1="336" v2="349" v3="337" />+                <face v1="337" v2="349" v3="350" />+                <face v1="337" v2="350" v3="338" />+                <face v1="338" v2="350" v3="351" />+                <face v1="338" v2="351" v3="339" />+                <face v1="339" v2="351" v3="352" />+                <face v1="339" v2="352" v3="340" />+                <face v1="340" v2="352" v3="353" />+                <face v1="340" v2="353" v3="341" />+                <face v1="341" v2="353" v3="354" />+                <face v1="341" v2="354" v3="342" />+                <face v1="342" v2="354" v3="355" />+                <face v1="342" v2="355" v3="343" />+                <face v1="343" v2="355" v3="356" />+                <face v1="343" v2="356" v3="344" />+                <face v1="344" v2="356" v3="357" />+                <face v1="344" v2="357" v3="345" />+                <face v1="345" v2="357" v3="358" />+                <face v1="345" v2="358" v3="346" />+                <face v1="346" v2="358" v3="359" />+                <face v1="346" v2="359" v3="347" />+                <face v1="347" v2="359" v3="1524" />+                <face v1="347" v2="1525" v3="1526" />+                <face v1="348" v2="360" v3="361" />+                <face v1="348" v2="361" v3="349" />+                <face v1="349" v2="361" v3="362" />+                <face v1="349" v2="362" v3="350" />+                <face v1="350" v2="362" v3="363" />+                <face v1="350" v2="363" v3="351" />+                <face v1="351" v2="363" v3="364" />+                <face v1="351" v2="364" v3="352" />+                <face v1="352" v2="364" v3="365" />+                <face v1="352" v2="365" v3="353" />+                <face v1="353" v2="365" v3="366" />+                <face v1="353" v2="366" v3="354" />+                <face v1="354" v2="366" v3="367" />+                <face v1="354" v2="367" v3="355" />+                <face v1="355" v2="367" v3="368" />+                <face v1="355" v2="368" v3="356" />+                <face v1="356" v2="368" v3="369" />+                <face v1="356" v2="369" v3="357" />+                <face v1="357" v2="369" v3="370" />+                <face v1="357" v2="370" v3="358" />+                <face v1="358" v2="370" v3="371" />+                <face v1="358" v2="371" v3="359" />+                <face v1="359" v2="371" v3="1527" />+                <face v1="359" v2="1528" v3="1529" />+                <face v1="360" v2="372" v3="373" />+                <face v1="360" v2="373" v3="361" />+                <face v1="361" v2="373" v3="374" />+                <face v1="361" v2="374" v3="362" />+                <face v1="362" v2="374" v3="375" />+                <face v1="362" v2="375" v3="363" />+                <face v1="363" v2="375" v3="376" />+                <face v1="363" v2="376" v3="364" />+                <face v1="364" v2="376" v3="377" />+                <face v1="364" v2="377" v3="365" />+                <face v1="365" v2="377" v3="378" />+                <face v1="365" v2="378" v3="366" />+                <face v1="366" v2="378" v3="379" />+                <face v1="366" v2="379" v3="367" />+                <face v1="367" v2="379" v3="380" />+                <face v1="367" v2="380" v3="368" />+                <face v1="368" v2="380" v3="381" />+                <face v1="368" v2="381" v3="369" />+                <face v1="369" v2="381" v3="382" />+                <face v1="369" v2="382" v3="370" />+                <face v1="370" v2="382" v3="383" />+                <face v1="370" v2="383" v3="371" />+                <face v1="371" v2="383" v3="1530" />+                <face v1="371" v2="1531" v3="1532" />+                <face v1="372" v2="384" v3="385" />+                <face v1="372" v2="385" v3="373" />+                <face v1="373" v2="385" v3="386" />+                <face v1="373" v2="386" v3="374" />+                <face v1="374" v2="386" v3="387" />+                <face v1="374" v2="387" v3="375" />+                <face v1="375" v2="387" v3="388" />+                <face v1="375" v2="388" v3="376" />+                <face v1="376" v2="388" v3="389" />+                <face v1="376" v2="389" v3="377" />+                <face v1="377" v2="389" v3="390" />+                <face v1="377" v2="390" v3="378" />+                <face v1="378" v2="390" v3="391" />+                <face v1="378" v2="391" v3="379" />+                <face v1="379" v2="391" v3="392" />+                <face v1="379" v2="392" v3="380" />+                <face v1="380" v2="392" v3="393" />+                <face v1="380" v2="393" v3="381" />+                <face v1="381" v2="393" v3="394" />+                <face v1="381" v2="394" v3="382" />+                <face v1="382" v2="394" v3="395" />+                <face v1="382" v2="395" v3="383" />+                <face v1="383" v2="395" v3="1533" />+                <face v1="383" v2="1534" v3="1535" />+                <face v1="384" v2="396" v3="397" />+                <face v1="384" v2="397" v3="385" />+                <face v1="385" v2="397" v3="398" />+                <face v1="385" v2="398" v3="386" />+                <face v1="386" v2="398" v3="399" />+                <face v1="386" v2="399" v3="387" />+                <face v1="387" v2="399" v3="400" />+                <face v1="387" v2="400" v3="388" />+                <face v1="388" v2="400" v3="401" />+                <face v1="388" v2="401" v3="389" />+                <face v1="389" v2="401" v3="402" />+                <face v1="389" v2="402" v3="390" />+                <face v1="390" v2="402" v3="403" />+                <face v1="390" v2="403" v3="391" />+                <face v1="391" v2="403" v3="404" />+                <face v1="391" v2="404" v3="392" />+                <face v1="392" v2="404" v3="405" />+                <face v1="392" v2="405" v3="393" />+                <face v1="393" v2="405" v3="406" />+                <face v1="393" v2="406" v3="394" />+                <face v1="394" v2="406" v3="407" />+                <face v1="394" v2="407" v3="395" />+                <face v1="395" v2="407" v3="1536" />+                <face v1="395" v2="1537" v3="1538" />+                <face v1="396" v2="408" v3="409" />+                <face v1="396" v2="409" v3="397" />+                <face v1="397" v2="409" v3="410" />+                <face v1="397" v2="410" v3="398" />+                <face v1="398" v2="410" v3="411" />+                <face v1="398" v2="411" v3="399" />+                <face v1="399" v2="411" v3="412" />+                <face v1="399" v2="412" v3="400" />+                <face v1="400" v2="412" v3="413" />+                <face v1="400" v2="413" v3="401" />+                <face v1="401" v2="413" v3="414" />+                <face v1="401" v2="414" v3="402" />+                <face v1="402" v2="414" v3="415" />+                <face v1="402" v2="415" v3="403" />+                <face v1="403" v2="415" v3="416" />+                <face v1="403" v2="416" v3="404" />+                <face v1="404" v2="416" v3="417" />+                <face v1="404" v2="417" v3="405" />+                <face v1="405" v2="417" v3="418" />+                <face v1="405" v2="418" v3="406" />+                <face v1="406" v2="418" v3="419" />+                <face v1="406" v2="419" v3="407" />+                <face v1="407" v2="419" v3="1539" />+                <face v1="407" v2="1540" v3="1541" />+                <face v1="408" v2="420" v3="421" />+                <face v1="408" v2="421" v3="409" />+                <face v1="409" v2="421" v3="422" />+                <face v1="409" v2="422" v3="410" />+                <face v1="410" v2="422" v3="423" />+                <face v1="410" v2="423" v3="411" />+                <face v1="411" v2="423" v3="424" />+                <face v1="411" v2="424" v3="412" />+                <face v1="412" v2="424" v3="425" />+                <face v1="412" v2="425" v3="413" />+                <face v1="413" v2="425" v3="426" />+                <face v1="413" v2="426" v3="414" />+                <face v1="414" v2="426" v3="427" />+                <face v1="414" v2="427" v3="415" />+                <face v1="415" v2="427" v3="428" />+                <face v1="415" v2="428" v3="416" />+                <face v1="416" v2="428" v3="429" />+                <face v1="416" v2="429" v3="417" />+                <face v1="417" v2="429" v3="430" />+                <face v1="417" v2="430" v3="418" />+                <face v1="418" v2="430" v3="431" />+                <face v1="418" v2="431" v3="419" />+                <face v1="419" v2="431" v3="1542" />+                <face v1="419" v2="1543" v3="1544" />+                <face v1="420" v2="432" v3="433" />+                <face v1="420" v2="433" v3="421" />+                <face v1="421" v2="433" v3="434" />+                <face v1="421" v2="434" v3="422" />+                <face v1="422" v2="434" v3="435" />+                <face v1="422" v2="435" v3="423" />+                <face v1="423" v2="435" v3="436" />+                <face v1="423" v2="436" v3="424" />+                <face v1="424" v2="436" v3="437" />+                <face v1="424" v2="437" v3="425" />+                <face v1="425" v2="437" v3="438" />+                <face v1="425" v2="438" v3="426" />+                <face v1="426" v2="438" v3="439" />+                <face v1="426" v2="439" v3="427" />+                <face v1="427" v2="439" v3="440" />+                <face v1="427" v2="440" v3="428" />+                <face v1="428" v2="440" v3="441" />+                <face v1="428" v2="441" v3="429" />+                <face v1="429" v2="441" v3="442" />+                <face v1="429" v2="442" v3="430" />+                <face v1="430" v2="442" v3="443" />+                <face v1="430" v2="443" v3="431" />+                <face v1="431" v2="443" v3="1545" />+                <face v1="431" v2="1546" v3="1547" />+                <face v1="432" v2="444" v3="445" />+                <face v1="432" v2="445" v3="433" />+                <face v1="433" v2="445" v3="446" />+                <face v1="433" v2="446" v3="434" />+                <face v1="434" v2="446" v3="447" />+                <face v1="434" v2="447" v3="435" />+                <face v1="435" v2="447" v3="448" />+                <face v1="435" v2="448" v3="436" />+                <face v1="436" v2="448" v3="449" />+                <face v1="436" v2="449" v3="437" />+                <face v1="437" v2="449" v3="450" />+                <face v1="437" v2="450" v3="438" />+                <face v1="438" v2="450" v3="451" />+                <face v1="438" v2="451" v3="439" />+                <face v1="439" v2="451" v3="452" />+                <face v1="439" v2="452" v3="440" />+                <face v1="440" v2="452" v3="453" />+                <face v1="440" v2="453" v3="441" />+                <face v1="441" v2="453" v3="454" />+                <face v1="441" v2="454" v3="442" />+                <face v1="442" v2="454" v3="455" />+                <face v1="442" v2="455" v3="443" />+                <face v1="443" v2="455" v3="1548" />+                <face v1="443" v2="1549" v3="1550" />+                <face v1="444" v2="456" v3="457" />+                <face v1="444" v2="457" v3="445" />+                <face v1="445" v2="457" v3="458" />+                <face v1="445" v2="458" v3="446" />+                <face v1="446" v2="458" v3="459" />+                <face v1="446" v2="459" v3="447" />+                <face v1="447" v2="459" v3="460" />+                <face v1="447" v2="460" v3="448" />+                <face v1="448" v2="460" v3="461" />+                <face v1="448" v2="461" v3="449" />+                <face v1="449" v2="461" v3="462" />+                <face v1="449" v2="462" v3="450" />+                <face v1="450" v2="462" v3="463" />+                <face v1="450" v2="463" v3="451" />+                <face v1="451" v2="463" v3="464" />+                <face v1="451" v2="464" v3="452" />+                <face v1="452" v2="464" v3="465" />+                <face v1="452" v2="465" v3="453" />+                <face v1="453" v2="465" v3="466" />+                <face v1="453" v2="466" v3="454" />+                <face v1="454" v2="466" v3="467" />+                <face v1="454" v2="467" v3="455" />+                <face v1="455" v2="467" v3="1551" />+                <face v1="455" v2="1552" v3="1553" />+                <face v1="456" v2="468" v3="469" />+                <face v1="456" v2="469" v3="457" />+                <face v1="457" v2="469" v3="470" />+                <face v1="457" v2="470" v3="458" />+                <face v1="458" v2="470" v3="471" />+                <face v1="458" v2="471" v3="459" />+                <face v1="459" v2="471" v3="472" />+                <face v1="459" v2="472" v3="460" />+                <face v1="460" v2="472" v3="473" />+                <face v1="460" v2="473" v3="461" />+                <face v1="461" v2="473" v3="474" />+                <face v1="461" v2="474" v3="462" />+                <face v1="462" v2="474" v3="475" />+                <face v1="462" v2="475" v3="463" />+                <face v1="463" v2="475" v3="476" />+                <face v1="463" v2="476" v3="464" />+                <face v1="464" v2="476" v3="477" />+                <face v1="464" v2="477" v3="465" />+                <face v1="465" v2="477" v3="478" />+                <face v1="465" v2="478" v3="466" />+                <face v1="466" v2="478" v3="479" />+                <face v1="466" v2="479" v3="467" />+                <face v1="467" v2="479" v3="1554" />+                <face v1="467" v2="1555" v3="1556" />+                <face v1="468" v2="480" v3="481" />+                <face v1="468" v2="481" v3="469" />+                <face v1="469" v2="481" v3="482" />+                <face v1="469" v2="482" v3="470" />+                <face v1="470" v2="482" v3="483" />+                <face v1="470" v2="483" v3="471" />+                <face v1="471" v2="483" v3="484" />+                <face v1="471" v2="484" v3="472" />+                <face v1="472" v2="484" v3="485" />+                <face v1="472" v2="485" v3="473" />+                <face v1="473" v2="485" v3="486" />+                <face v1="473" v2="486" v3="474" />+                <face v1="474" v2="486" v3="487" />+                <face v1="474" v2="487" v3="475" />+                <face v1="475" v2="487" v3="488" />+                <face v1="475" v2="488" v3="476" />+                <face v1="476" v2="488" v3="489" />+                <face v1="476" v2="489" v3="477" />+                <face v1="477" v2="489" v3="490" />+                <face v1="477" v2="490" v3="478" />+                <face v1="478" v2="490" v3="491" />+                <face v1="478" v2="491" v3="479" />+                <face v1="479" v2="491" v3="1557" />+                <face v1="479" v2="1558" v3="1559" />+                <face v1="480" v2="492" v3="493" />+                <face v1="480" v2="493" v3="481" />+                <face v1="481" v2="493" v3="494" />+                <face v1="481" v2="494" v3="482" />+                <face v1="482" v2="494" v3="495" />+                <face v1="482" v2="495" v3="483" />+                <face v1="483" v2="495" v3="496" />+                <face v1="483" v2="496" v3="484" />+                <face v1="484" v2="496" v3="497" />+                <face v1="484" v2="497" v3="485" />+                <face v1="485" v2="497" v3="498" />+                <face v1="485" v2="498" v3="486" />+                <face v1="486" v2="498" v3="499" />+                <face v1="486" v2="499" v3="487" />+                <face v1="487" v2="499" v3="500" />+                <face v1="487" v2="500" v3="488" />+                <face v1="488" v2="500" v3="501" />+                <face v1="488" v2="501" v3="489" />+                <face v1="489" v2="501" v3="502" />+                <face v1="489" v2="502" v3="490" />+                <face v1="490" v2="502" v3="503" />+                <face v1="490" v2="503" v3="491" />+                <face v1="491" v2="503" v3="1560" />+                <face v1="491" v2="1561" v3="1562" />+                <face v1="492" v2="504" v3="505" />+                <face v1="492" v2="505" v3="493" />+                <face v1="493" v2="505" v3="506" />+                <face v1="493" v2="506" v3="494" />+                <face v1="494" v2="506" v3="507" />+                <face v1="494" v2="507" v3="495" />+                <face v1="495" v2="507" v3="508" />+                <face v1="495" v2="508" v3="496" />+                <face v1="496" v2="508" v3="509" />+                <face v1="496" v2="509" v3="497" />+                <face v1="497" v2="509" v3="510" />+                <face v1="497" v2="510" v3="498" />+                <face v1="498" v2="510" v3="511" />+                <face v1="498" v2="511" v3="499" />+                <face v1="499" v2="511" v3="512" />+                <face v1="499" v2="512" v3="500" />+                <face v1="500" v2="512" v3="513" />+                <face v1="500" v2="513" v3="501" />+                <face v1="501" v2="513" v3="514" />+                <face v1="501" v2="514" v3="502" />+                <face v1="502" v2="514" v3="515" />+                <face v1="502" v2="515" v3="503" />+                <face v1="503" v2="515" v3="1563" />+                <face v1="503" v2="1564" v3="1565" />+                <face v1="504" v2="516" v3="517" />+                <face v1="504" v2="517" v3="505" />+                <face v1="505" v2="517" v3="518" />+                <face v1="505" v2="518" v3="506" />+                <face v1="506" v2="518" v3="519" />+                <face v1="506" v2="519" v3="507" />+                <face v1="507" v2="519" v3="520" />+                <face v1="507" v2="520" v3="508" />+                <face v1="508" v2="520" v3="521" />+                <face v1="508" v2="521" v3="509" />+                <face v1="509" v2="521" v3="522" />+                <face v1="509" v2="522" v3="510" />+                <face v1="510" v2="522" v3="523" />+                <face v1="510" v2="523" v3="511" />+                <face v1="511" v2="523" v3="524" />+                <face v1="511" v2="524" v3="512" />+                <face v1="512" v2="524" v3="525" />+                <face v1="512" v2="525" v3="513" />+                <face v1="513" v2="525" v3="526" />+                <face v1="513" v2="526" v3="514" />+                <face v1="514" v2="526" v3="527" />+                <face v1="514" v2="527" v3="515" />+                <face v1="515" v2="527" v3="1566" />+                <face v1="515" v2="1567" v3="1568" />+                <face v1="516" v2="528" v3="529" />+                <face v1="516" v2="529" v3="517" />+                <face v1="517" v2="529" v3="530" />+                <face v1="517" v2="530" v3="518" />+                <face v1="518" v2="530" v3="531" />+                <face v1="518" v2="531" v3="519" />+                <face v1="519" v2="531" v3="532" />+                <face v1="519" v2="532" v3="520" />+                <face v1="520" v2="532" v3="533" />+                <face v1="520" v2="533" v3="521" />+                <face v1="521" v2="533" v3="534" />+                <face v1="521" v2="534" v3="522" />+                <face v1="522" v2="534" v3="535" />+                <face v1="522" v2="535" v3="523" />+                <face v1="523" v2="535" v3="536" />+                <face v1="523" v2="536" v3="524" />+                <face v1="524" v2="536" v3="537" />+                <face v1="524" v2="537" v3="525" />+                <face v1="525" v2="537" v3="538" />+                <face v1="525" v2="538" v3="526" />+                <face v1="526" v2="538" v3="539" />+                <face v1="526" v2="539" v3="527" />+                <face v1="527" v2="539" v3="1569" />+                <face v1="527" v2="1570" v3="1571" />+                <face v1="528" v2="540" v3="541" />+                <face v1="528" v2="541" v3="529" />+                <face v1="529" v2="541" v3="542" />+                <face v1="529" v2="542" v3="530" />+                <face v1="530" v2="542" v3="543" />+                <face v1="530" v2="543" v3="531" />+                <face v1="531" v2="543" v3="544" />+                <face v1="531" v2="544" v3="532" />+                <face v1="532" v2="544" v3="545" />+                <face v1="532" v2="545" v3="533" />+                <face v1="533" v2="545" v3="546" />+                <face v1="533" v2="546" v3="534" />+                <face v1="534" v2="546" v3="547" />+                <face v1="534" v2="547" v3="535" />+                <face v1="535" v2="547" v3="548" />+                <face v1="535" v2="548" v3="536" />+                <face v1="536" v2="548" v3="549" />+                <face v1="536" v2="549" v3="537" />+                <face v1="537" v2="549" v3="550" />+                <face v1="537" v2="550" v3="538" />+                <face v1="538" v2="550" v3="551" />+                <face v1="538" v2="551" v3="539" />+                <face v1="539" v2="551" v3="1572" />+                <face v1="539" v2="1573" v3="1574" />+                <face v1="540" v2="552" v3="553" />+                <face v1="540" v2="553" v3="541" />+                <face v1="541" v2="553" v3="554" />+                <face v1="541" v2="554" v3="542" />+                <face v1="542" v2="554" v3="555" />+                <face v1="542" v2="555" v3="543" />+                <face v1="543" v2="555" v3="556" />+                <face v1="543" v2="556" v3="544" />+                <face v1="544" v2="556" v3="557" />+                <face v1="544" v2="557" v3="545" />+                <face v1="545" v2="557" v3="558" />+                <face v1="545" v2="558" v3="546" />+                <face v1="546" v2="558" v3="559" />+                <face v1="546" v2="559" v3="547" />+                <face v1="547" v2="559" v3="560" />+                <face v1="547" v2="560" v3="548" />+                <face v1="548" v2="560" v3="561" />+                <face v1="548" v2="561" v3="549" />+                <face v1="549" v2="561" v3="562" />+                <face v1="549" v2="562" v3="550" />+                <face v1="550" v2="562" v3="563" />+                <face v1="550" v2="563" v3="551" />+                <face v1="551" v2="563" v3="1575" />+                <face v1="551" v2="1576" v3="1577" />+                <face v1="552" v2="564" v3="565" />+                <face v1="552" v2="565" v3="553" />+                <face v1="553" v2="565" v3="566" />+                <face v1="553" v2="566" v3="554" />+                <face v1="554" v2="566" v3="567" />+                <face v1="554" v2="567" v3="555" />+                <face v1="555" v2="567" v3="568" />+                <face v1="555" v2="568" v3="556" />+                <face v1="556" v2="568" v3="569" />+                <face v1="556" v2="569" v3="557" />+                <face v1="557" v2="569" v3="570" />+                <face v1="557" v2="570" v3="558" />+                <face v1="558" v2="570" v3="571" />+                <face v1="558" v2="571" v3="559" />+                <face v1="559" v2="571" v3="572" />+                <face v1="559" v2="572" v3="560" />+                <face v1="560" v2="572" v3="573" />+                <face v1="560" v2="573" v3="561" />+                <face v1="561" v2="573" v3="574" />+                <face v1="561" v2="574" v3="562" />+                <face v1="562" v2="574" v3="575" />+                <face v1="562" v2="575" v3="563" />+                <face v1="563" v2="575" v3="1578" />+                <face v1="563" v2="1579" v3="1580" />+                <face v1="564" v2="576" v3="577" />+                <face v1="564" v2="577" v3="565" />+                <face v1="565" v2="577" v3="578" />+                <face v1="565" v2="578" v3="566" />+                <face v1="566" v2="578" v3="579" />+                <face v1="566" v2="579" v3="567" />+                <face v1="567" v2="579" v3="580" />+                <face v1="567" v2="580" v3="568" />+                <face v1="568" v2="580" v3="581" />+                <face v1="568" v2="581" v3="569" />+                <face v1="569" v2="581" v3="582" />+                <face v1="569" v2="582" v3="570" />+                <face v1="570" v2="582" v3="583" />+                <face v1="570" v2="583" v3="571" />+                <face v1="571" v2="583" v3="584" />+                <face v1="571" v2="584" v3="572" />+                <face v1="572" v2="584" v3="585" />+                <face v1="572" v2="585" v3="573" />+                <face v1="573" v2="585" v3="586" />+                <face v1="573" v2="586" v3="574" />+                <face v1="574" v2="586" v3="587" />+                <face v1="574" v2="587" v3="575" />+                <face v1="575" v2="587" v3="1581" />+                <face v1="575" v2="1582" v3="1583" />+                <face v1="576" v2="588" v3="589" />+                <face v1="576" v2="589" v3="577" />+                <face v1="577" v2="589" v3="590" />+                <face v1="577" v2="590" v3="578" />+                <face v1="578" v2="590" v3="591" />+                <face v1="578" v2="591" v3="579" />+                <face v1="579" v2="591" v3="592" />+                <face v1="579" v2="592" v3="580" />+                <face v1="580" v2="592" v3="593" />+                <face v1="580" v2="593" v3="581" />+                <face v1="581" v2="593" v3="594" />+                <face v1="581" v2="594" v3="582" />+                <face v1="582" v2="594" v3="595" />+                <face v1="582" v2="595" v3="583" />+                <face v1="583" v2="595" v3="596" />+                <face v1="583" v2="596" v3="584" />+                <face v1="584" v2="596" v3="597" />+                <face v1="584" v2="597" v3="585" />+                <face v1="585" v2="597" v3="598" />+                <face v1="585" v2="598" v3="586" />+                <face v1="586" v2="598" v3="599" />+                <face v1="586" v2="599" v3="587" />+                <face v1="587" v2="599" v3="1584" />+                <face v1="587" v2="1585" v3="1586" />+                <face v1="588" v2="600" v3="601" />+                <face v1="588" v2="601" v3="589" />+                <face v1="589" v2="601" v3="602" />+                <face v1="589" v2="602" v3="590" />+                <face v1="590" v2="602" v3="603" />+                <face v1="590" v2="603" v3="591" />+                <face v1="591" v2="603" v3="604" />+                <face v1="591" v2="604" v3="592" />+                <face v1="592" v2="604" v3="605" />+                <face v1="592" v2="605" v3="593" />+                <face v1="593" v2="605" v3="606" />+                <face v1="593" v2="606" v3="594" />+                <face v1="594" v2="606" v3="607" />+                <face v1="594" v2="607" v3="595" />+                <face v1="595" v2="607" v3="608" />+                <face v1="595" v2="608" v3="596" />+                <face v1="596" v2="608" v3="609" />+                <face v1="596" v2="609" v3="597" />+                <face v1="597" v2="609" v3="610" />+                <face v1="597" v2="610" v3="598" />+                <face v1="598" v2="610" v3="611" />+                <face v1="598" v2="611" v3="599" />+                <face v1="599" v2="611" v3="1587" />+                <face v1="599" v2="1588" v3="1589" />+                <face v1="600" v2="612" v3="613" />+                <face v1="600" v2="613" v3="601" />+                <face v1="601" v2="613" v3="614" />+                <face v1="601" v2="614" v3="602" />+                <face v1="602" v2="614" v3="615" />+                <face v1="602" v2="615" v3="603" />+                <face v1="603" v2="615" v3="616" />+                <face v1="603" v2="616" v3="604" />+                <face v1="604" v2="616" v3="617" />+                <face v1="604" v2="617" v3="605" />+                <face v1="605" v2="617" v3="618" />+                <face v1="605" v2="618" v3="606" />+                <face v1="606" v2="618" v3="619" />+                <face v1="606" v2="619" v3="607" />+                <face v1="607" v2="619" v3="620" />+                <face v1="607" v2="620" v3="608" />+                <face v1="608" v2="620" v3="621" />+                <face v1="608" v2="621" v3="609" />+                <face v1="609" v2="621" v3="622" />+                <face v1="609" v2="622" v3="610" />+                <face v1="610" v2="622" v3="623" />+                <face v1="610" v2="623" v3="611" />+                <face v1="611" v2="623" v3="1590" />+                <face v1="611" v2="1591" v3="1592" />+                <face v1="612" v2="624" v3="625" />+                <face v1="612" v2="625" v3="613" />+                <face v1="613" v2="625" v3="626" />+                <face v1="613" v2="626" v3="614" />+                <face v1="614" v2="626" v3="627" />+                <face v1="614" v2="627" v3="615" />+                <face v1="615" v2="627" v3="628" />+                <face v1="615" v2="628" v3="616" />+                <face v1="616" v2="628" v3="629" />+                <face v1="616" v2="629" v3="617" />+                <face v1="617" v2="629" v3="630" />+                <face v1="617" v2="630" v3="618" />+                <face v1="618" v2="630" v3="631" />+                <face v1="618" v2="631" v3="619" />+                <face v1="619" v2="631" v3="632" />+                <face v1="619" v2="632" v3="620" />+                <face v1="620" v2="632" v3="633" />+                <face v1="620" v2="633" v3="621" />+                <face v1="621" v2="633" v3="634" />+                <face v1="621" v2="634" v3="622" />+                <face v1="622" v2="634" v3="635" />+                <face v1="622" v2="635" v3="623" />+                <face v1="623" v2="635" v3="1593" />+                <face v1="623" v2="1594" v3="1595" />+                <face v1="624" v2="636" v3="637" />+                <face v1="624" v2="637" v3="625" />+                <face v1="625" v2="637" v3="638" />+                <face v1="625" v2="638" v3="626" />+                <face v1="626" v2="638" v3="639" />+                <face v1="626" v2="639" v3="627" />+                <face v1="627" v2="639" v3="640" />+                <face v1="627" v2="640" v3="628" />+                <face v1="628" v2="640" v3="641" />+                <face v1="628" v2="641" v3="629" />+                <face v1="629" v2="641" v3="642" />+                <face v1="629" v2="642" v3="630" />+                <face v1="630" v2="642" v3="643" />+                <face v1="630" v2="643" v3="631" />+                <face v1="631" v2="643" v3="644" />+                <face v1="631" v2="644" v3="632" />+                <face v1="632" v2="644" v3="645" />+                <face v1="632" v2="645" v3="633" />+                <face v1="633" v2="645" v3="646" />+                <face v1="633" v2="646" v3="634" />+                <face v1="634" v2="646" v3="647" />+                <face v1="634" v2="647" v3="635" />+                <face v1="635" v2="647" v3="1596" />+                <face v1="635" v2="1597" v3="1598" />+                <face v1="636" v2="648" v3="649" />+                <face v1="636" v2="649" v3="637" />+                <face v1="637" v2="649" v3="650" />+                <face v1="637" v2="650" v3="638" />+                <face v1="638" v2="650" v3="651" />+                <face v1="638" v2="651" v3="639" />+                <face v1="639" v2="651" v3="652" />+                <face v1="639" v2="652" v3="640" />+                <face v1="640" v2="652" v3="653" />+                <face v1="640" v2="653" v3="641" />+                <face v1="641" v2="653" v3="654" />+                <face v1="641" v2="654" v3="642" />+                <face v1="642" v2="654" v3="655" />+                <face v1="642" v2="655" v3="643" />+                <face v1="643" v2="655" v3="656" />+                <face v1="643" v2="656" v3="644" />+                <face v1="644" v2="656" v3="657" />+                <face v1="644" v2="657" v3="645" />+                <face v1="645" v2="657" v3="658" />+                <face v1="645" v2="658" v3="646" />+                <face v1="646" v2="658" v3="659" />+                <face v1="646" v2="659" v3="647" />+                <face v1="647" v2="659" v3="1599" />+                <face v1="647" v2="1600" v3="1601" />+                <face v1="648" v2="660" v3="661" />+                <face v1="648" v2="661" v3="649" />+                <face v1="649" v2="661" v3="662" />+                <face v1="649" v2="662" v3="650" />+                <face v1="650" v2="662" v3="663" />+                <face v1="650" v2="663" v3="651" />+                <face v1="651" v2="663" v3="664" />+                <face v1="651" v2="664" v3="652" />+                <face v1="652" v2="664" v3="665" />+                <face v1="652" v2="665" v3="653" />+                <face v1="653" v2="665" v3="666" />+                <face v1="653" v2="666" v3="654" />+                <face v1="654" v2="666" v3="667" />+                <face v1="654" v2="667" v3="655" />+                <face v1="655" v2="667" v3="668" />+                <face v1="655" v2="668" v3="656" />+                <face v1="656" v2="668" v3="669" />+                <face v1="656" v2="669" v3="657" />+                <face v1="657" v2="669" v3="670" />+                <face v1="657" v2="670" v3="658" />+                <face v1="658" v2="670" v3="671" />+                <face v1="658" v2="671" v3="659" />+                <face v1="659" v2="671" v3="1602" />+                <face v1="659" v2="1603" v3="1604" />+                <face v1="660" v2="672" v3="673" />+                <face v1="660" v2="673" v3="661" />+                <face v1="661" v2="673" v3="674" />+                <face v1="661" v2="674" v3="662" />+                <face v1="662" v2="674" v3="675" />+                <face v1="662" v2="675" v3="663" />+                <face v1="663" v2="675" v3="676" />+                <face v1="663" v2="676" v3="664" />+                <face v1="664" v2="676" v3="677" />+                <face v1="664" v2="677" v3="665" />+                <face v1="665" v2="677" v3="678" />+                <face v1="665" v2="678" v3="666" />+                <face v1="666" v2="678" v3="679" />+                <face v1="666" v2="679" v3="667" />+                <face v1="667" v2="679" v3="680" />+                <face v1="667" v2="680" v3="668" />+                <face v1="668" v2="680" v3="681" />+                <face v1="668" v2="681" v3="669" />+                <face v1="669" v2="681" v3="682" />+                <face v1="669" v2="682" v3="670" />+                <face v1="670" v2="682" v3="683" />+                <face v1="670" v2="683" v3="671" />+                <face v1="671" v2="683" v3="1605" />+                <face v1="671" v2="1606" v3="1607" />+                <face v1="672" v2="684" v3="685" />+                <face v1="672" v2="685" v3="673" />+                <face v1="673" v2="685" v3="686" />+                <face v1="673" v2="686" v3="674" />+                <face v1="674" v2="686" v3="687" />+                <face v1="674" v2="687" v3="675" />+                <face v1="675" v2="687" v3="688" />+                <face v1="675" v2="688" v3="676" />+                <face v1="676" v2="688" v3="689" />+                <face v1="676" v2="689" v3="677" />+                <face v1="677" v2="689" v3="690" />+                <face v1="677" v2="690" v3="678" />+                <face v1="678" v2="690" v3="691" />+                <face v1="678" v2="691" v3="679" />+                <face v1="679" v2="691" v3="692" />+                <face v1="679" v2="692" v3="680" />+                <face v1="680" v2="692" v3="693" />+                <face v1="680" v2="693" v3="681" />+                <face v1="681" v2="693" v3="694" />+                <face v1="681" v2="694" v3="682" />+                <face v1="682" v2="694" v3="695" />+                <face v1="682" v2="695" v3="683" />+                <face v1="683" v2="695" v3="1608" />+                <face v1="683" v2="1609" v3="1610" />+                <face v1="684" v2="696" v3="697" />+                <face v1="684" v2="697" v3="685" />+                <face v1="685" v2="697" v3="698" />+                <face v1="685" v2="698" v3="686" />+                <face v1="686" v2="698" v3="699" />+                <face v1="686" v2="699" v3="687" />+                <face v1="687" v2="699" v3="700" />+                <face v1="687" v2="700" v3="688" />+                <face v1="688" v2="700" v3="701" />+                <face v1="688" v2="701" v3="689" />+                <face v1="689" v2="701" v3="702" />+                <face v1="689" v2="702" v3="690" />+                <face v1="690" v2="702" v3="703" />+                <face v1="690" v2="703" v3="691" />+                <face v1="691" v2="703" v3="704" />+                <face v1="691" v2="704" v3="692" />+                <face v1="692" v2="704" v3="705" />+                <face v1="692" v2="705" v3="693" />+                <face v1="693" v2="705" v3="706" />+                <face v1="693" v2="706" v3="694" />+                <face v1="694" v2="706" v3="707" />+                <face v1="694" v2="707" v3="695" />+                <face v1="695" v2="707" v3="1611" />+                <face v1="695" v2="1612" v3="1613" />+                <face v1="696" v2="708" v3="709" />+                <face v1="696" v2="709" v3="697" />+                <face v1="697" v2="709" v3="710" />+                <face v1="697" v2="710" v3="698" />+                <face v1="698" v2="710" v3="711" />+                <face v1="698" v2="711" v3="699" />+                <face v1="699" v2="711" v3="712" />+                <face v1="699" v2="712" v3="700" />+                <face v1="700" v2="712" v3="713" />+                <face v1="700" v2="713" v3="701" />+                <face v1="701" v2="713" v3="714" />+                <face v1="701" v2="714" v3="702" />+                <face v1="702" v2="714" v3="715" />+                <face v1="702" v2="715" v3="703" />+                <face v1="703" v2="715" v3="716" />+                <face v1="703" v2="716" v3="704" />+                <face v1="704" v2="716" v3="717" />+                <face v1="704" v2="717" v3="705" />+                <face v1="705" v2="717" v3="718" />+                <face v1="705" v2="718" v3="706" />+                <face v1="706" v2="718" v3="719" />+                <face v1="706" v2="719" v3="707" />+                <face v1="707" v2="719" v3="1614" />+                <face v1="707" v2="1615" v3="1616" />+                <face v1="708" v2="720" v3="721" />+                <face v1="708" v2="721" v3="709" />+                <face v1="709" v2="721" v3="722" />+                <face v1="709" v2="722" v3="710" />+                <face v1="710" v2="722" v3="723" />+                <face v1="710" v2="723" v3="711" />+                <face v1="711" v2="723" v3="724" />+                <face v1="711" v2="724" v3="712" />+                <face v1="712" v2="724" v3="725" />+                <face v1="712" v2="725" v3="713" />+                <face v1="713" v2="725" v3="726" />+                <face v1="713" v2="726" v3="714" />+                <face v1="714" v2="726" v3="727" />+                <face v1="714" v2="727" v3="715" />+                <face v1="715" v2="727" v3="728" />+                <face v1="715" v2="728" v3="716" />+                <face v1="716" v2="728" v3="729" />+                <face v1="716" v2="729" v3="717" />+                <face v1="717" v2="729" v3="730" />+                <face v1="717" v2="730" v3="718" />+                <face v1="718" v2="730" v3="731" />+                <face v1="718" v2="731" v3="719" />+                <face v1="719" v2="731" v3="1617" />+                <face v1="719" v2="1618" v3="1619" />+                <face v1="720" v2="732" v3="733" />+                <face v1="720" v2="733" v3="721" />+                <face v1="721" v2="733" v3="734" />+                <face v1="721" v2="734" v3="722" />+                <face v1="722" v2="734" v3="735" />+                <face v1="722" v2="735" v3="723" />+                <face v1="723" v2="735" v3="736" />+                <face v1="723" v2="736" v3="724" />+                <face v1="724" v2="736" v3="737" />+                <face v1="724" v2="737" v3="725" />+                <face v1="725" v2="737" v3="738" />+                <face v1="725" v2="738" v3="726" />+                <face v1="726" v2="738" v3="739" />+                <face v1="726" v2="739" v3="727" />+                <face v1="727" v2="739" v3="740" />+                <face v1="727" v2="740" v3="728" />+                <face v1="728" v2="740" v3="741" />+                <face v1="728" v2="741" v3="729" />+                <face v1="729" v2="741" v3="742" />+                <face v1="729" v2="742" v3="730" />+                <face v1="730" v2="742" v3="743" />+                <face v1="730" v2="743" v3="731" />+                <face v1="731" v2="743" v3="1620" />+                <face v1="731" v2="1621" v3="1622" />+                <face v1="732" v2="744" v3="745" />+                <face v1="732" v2="745" v3="733" />+                <face v1="733" v2="745" v3="746" />+                <face v1="733" v2="746" v3="734" />+                <face v1="734" v2="746" v3="747" />+                <face v1="734" v2="747" v3="735" />+                <face v1="735" v2="747" v3="748" />+                <face v1="735" v2="748" v3="736" />+                <face v1="736" v2="748" v3="749" />+                <face v1="736" v2="749" v3="737" />+                <face v1="737" v2="749" v3="750" />+                <face v1="737" v2="750" v3="738" />+                <face v1="738" v2="750" v3="751" />+                <face v1="738" v2="751" v3="739" />+                <face v1="739" v2="751" v3="752" />+                <face v1="739" v2="752" v3="740" />+                <face v1="740" v2="752" v3="753" />+                <face v1="740" v2="753" v3="741" />+                <face v1="741" v2="753" v3="754" />+                <face v1="741" v2="754" v3="742" />+                <face v1="742" v2="754" v3="755" />+                <face v1="742" v2="755" v3="743" />+                <face v1="743" v2="755" v3="1623" />+                <face v1="743" v2="1624" v3="1625" />+                <face v1="744" v2="756" v3="757" />+                <face v1="744" v2="757" v3="745" />+                <face v1="745" v2="757" v3="758" />+                <face v1="745" v2="758" v3="746" />+                <face v1="746" v2="758" v3="759" />+                <face v1="746" v2="759" v3="747" />+                <face v1="747" v2="759" v3="760" />+                <face v1="747" v2="760" v3="748" />+                <face v1="748" v2="760" v3="761" />+                <face v1="748" v2="761" v3="749" />+                <face v1="749" v2="761" v3="762" />+                <face v1="749" v2="762" v3="750" />+                <face v1="750" v2="762" v3="763" />+                <face v1="750" v2="763" v3="751" />+                <face v1="751" v2="763" v3="764" />+                <face v1="751" v2="764" v3="752" />+                <face v1="752" v2="764" v3="765" />+                <face v1="752" v2="765" v3="753" />+                <face v1="753" v2="765" v3="766" />+                <face v1="753" v2="766" v3="754" />+                <face v1="754" v2="766" v3="767" />+                <face v1="754" v2="767" v3="755" />+                <face v1="755" v2="767" v3="1626" />+                <face v1="755" v2="1627" v3="1628" />+                <face v1="756" v2="768" v3="769" />+                <face v1="756" v2="769" v3="757" />+                <face v1="757" v2="769" v3="770" />+                <face v1="757" v2="770" v3="758" />+                <face v1="758" v2="770" v3="771" />+                <face v1="758" v2="771" v3="759" />+                <face v1="759" v2="771" v3="772" />+                <face v1="759" v2="772" v3="760" />+                <face v1="760" v2="772" v3="773" />+                <face v1="760" v2="773" v3="761" />+                <face v1="761" v2="773" v3="774" />+                <face v1="761" v2="774" v3="762" />+                <face v1="762" v2="774" v3="775" />+                <face v1="762" v2="775" v3="763" />+                <face v1="763" v2="775" v3="776" />+                <face v1="763" v2="776" v3="764" />+                <face v1="764" v2="776" v3="777" />+                <face v1="764" v2="777" v3="765" />+                <face v1="765" v2="777" v3="778" />+                <face v1="765" v2="778" v3="766" />+                <face v1="766" v2="778" v3="779" />+                <face v1="766" v2="779" v3="767" />+                <face v1="767" v2="779" v3="1629" />+                <face v1="767" v2="1630" v3="1631" />+                <face v1="768" v2="780" v3="781" />+                <face v1="768" v2="781" v3="769" />+                <face v1="769" v2="781" v3="782" />+                <face v1="769" v2="782" v3="770" />+                <face v1="770" v2="782" v3="783" />+                <face v1="770" v2="783" v3="771" />+                <face v1="771" v2="783" v3="784" />+                <face v1="771" v2="784" v3="772" />+                <face v1="772" v2="784" v3="785" />+                <face v1="772" v2="785" v3="773" />+                <face v1="773" v2="785" v3="786" />+                <face v1="773" v2="786" v3="774" />+                <face v1="774" v2="786" v3="787" />+                <face v1="774" v2="787" v3="775" />+                <face v1="775" v2="787" v3="788" />+                <face v1="775" v2="788" v3="776" />+                <face v1="776" v2="788" v3="789" />+                <face v1="776" v2="789" v3="777" />+                <face v1="777" v2="789" v3="790" />+                <face v1="777" v2="790" v3="778" />+                <face v1="778" v2="790" v3="791" />+                <face v1="778" v2="791" v3="779" />+                <face v1="779" v2="791" v3="1632" />+                <face v1="779" v2="1633" v3="1634" />+                <face v1="780" v2="792" v3="793" />+                <face v1="780" v2="793" v3="781" />+                <face v1="781" v2="793" v3="794" />+                <face v1="781" v2="794" v3="782" />+                <face v1="782" v2="794" v3="795" />+                <face v1="782" v2="795" v3="783" />+                <face v1="783" v2="795" v3="796" />+                <face v1="783" v2="796" v3="784" />+                <face v1="784" v2="796" v3="797" />+                <face v1="784" v2="797" v3="785" />+                <face v1="785" v2="797" v3="798" />+                <face v1="785" v2="798" v3="786" />+                <face v1="786" v2="798" v3="799" />+                <face v1="786" v2="799" v3="787" />+                <face v1="787" v2="799" v3="800" />+                <face v1="787" v2="800" v3="788" />+                <face v1="788" v2="800" v3="801" />+                <face v1="788" v2="801" v3="789" />+                <face v1="789" v2="801" v3="802" />+                <face v1="789" v2="802" v3="790" />+                <face v1="790" v2="802" v3="803" />+                <face v1="790" v2="803" v3="791" />+                <face v1="791" v2="803" v3="1635" />+                <face v1="791" v2="1636" v3="1637" />+                <face v1="792" v2="804" v3="805" />+                <face v1="792" v2="805" v3="793" />+                <face v1="793" v2="805" v3="806" />+                <face v1="793" v2="806" v3="794" />+                <face v1="794" v2="806" v3="807" />+                <face v1="794" v2="807" v3="795" />+                <face v1="795" v2="807" v3="808" />+                <face v1="795" v2="808" v3="796" />+                <face v1="796" v2="808" v3="809" />+                <face v1="796" v2="809" v3="797" />+                <face v1="797" v2="809" v3="810" />+                <face v1="797" v2="810" v3="798" />+                <face v1="798" v2="810" v3="811" />+                <face v1="798" v2="811" v3="799" />+                <face v1="799" v2="811" v3="812" />+                <face v1="799" v2="812" v3="800" />+                <face v1="800" v2="812" v3="813" />+                <face v1="800" v2="813" v3="801" />+                <face v1="801" v2="813" v3="814" />+                <face v1="801" v2="814" v3="802" />+                <face v1="802" v2="814" v3="815" />+                <face v1="802" v2="815" v3="803" />+                <face v1="803" v2="815" v3="1638" />+                <face v1="803" v2="1639" v3="1640" />+                <face v1="804" v2="816" v3="817" />+                <face v1="804" v2="817" v3="805" />+                <face v1="805" v2="817" v3="818" />+                <face v1="805" v2="818" v3="806" />+                <face v1="806" v2="818" v3="819" />+                <face v1="806" v2="819" v3="807" />+                <face v1="807" v2="819" v3="820" />+                <face v1="807" v2="820" v3="808" />+                <face v1="808" v2="820" v3="821" />+                <face v1="808" v2="821" v3="809" />+                <face v1="809" v2="821" v3="822" />+                <face v1="809" v2="822" v3="810" />+                <face v1="810" v2="822" v3="823" />+                <face v1="810" v2="823" v3="811" />+                <face v1="811" v2="823" v3="824" />+                <face v1="811" v2="824" v3="812" />+                <face v1="812" v2="824" v3="825" />+                <face v1="812" v2="825" v3="813" />+                <face v1="813" v2="825" v3="826" />+                <face v1="813" v2="826" v3="814" />+                <face v1="814" v2="826" v3="827" />+                <face v1="814" v2="827" v3="815" />+                <face v1="815" v2="827" v3="1641" />+                <face v1="815" v2="1642" v3="1643" />+                <face v1="816" v2="828" v3="829" />+                <face v1="816" v2="829" v3="817" />+                <face v1="817" v2="829" v3="830" />+                <face v1="817" v2="830" v3="818" />+                <face v1="818" v2="830" v3="831" />+                <face v1="818" v2="831" v3="819" />+                <face v1="819" v2="831" v3="832" />+                <face v1="819" v2="832" v3="820" />+                <face v1="820" v2="832" v3="833" />+                <face v1="820" v2="833" v3="821" />+                <face v1="821" v2="833" v3="834" />+                <face v1="821" v2="834" v3="822" />+                <face v1="822" v2="834" v3="835" />+                <face v1="822" v2="835" v3="823" />+                <face v1="823" v2="835" v3="836" />+                <face v1="823" v2="836" v3="824" />+                <face v1="824" v2="836" v3="837" />+                <face v1="824" v2="837" v3="825" />+                <face v1="825" v2="837" v3="838" />+                <face v1="825" v2="838" v3="826" />+                <face v1="826" v2="838" v3="839" />+                <face v1="826" v2="839" v3="827" />+                <face v1="827" v2="839" v3="1644" />+                <face v1="827" v2="1645" v3="1646" />+                <face v1="828" v2="840" v3="841" />+                <face v1="828" v2="841" v3="829" />+                <face v1="829" v2="841" v3="842" />+                <face v1="829" v2="842" v3="830" />+                <face v1="830" v2="842" v3="843" />+                <face v1="830" v2="843" v3="831" />+                <face v1="831" v2="843" v3="844" />+                <face v1="831" v2="844" v3="832" />+                <face v1="832" v2="844" v3="845" />+                <face v1="832" v2="845" v3="833" />+                <face v1="833" v2="845" v3="846" />+                <face v1="833" v2="846" v3="834" />+                <face v1="834" v2="846" v3="847" />+                <face v1="834" v2="847" v3="835" />+                <face v1="835" v2="847" v3="848" />+                <face v1="835" v2="848" v3="836" />+                <face v1="836" v2="848" v3="849" />+                <face v1="836" v2="849" v3="837" />+                <face v1="837" v2="849" v3="850" />+                <face v1="837" v2="850" v3="838" />+                <face v1="838" v2="850" v3="851" />+                <face v1="838" v2="851" v3="839" />+                <face v1="839" v2="851" v3="1647" />+                <face v1="839" v2="1648" v3="1649" />+                <face v1="840" v2="852" v3="853" />+                <face v1="840" v2="853" v3="841" />+                <face v1="841" v2="853" v3="854" />+                <face v1="841" v2="854" v3="842" />+                <face v1="842" v2="854" v3="855" />+                <face v1="842" v2="855" v3="843" />+                <face v1="843" v2="855" v3="856" />+                <face v1="843" v2="856" v3="844" />+                <face v1="844" v2="856" v3="857" />+                <face v1="844" v2="857" v3="845" />+                <face v1="845" v2="857" v3="858" />+                <face v1="845" v2="858" v3="846" />+                <face v1="846" v2="858" v3="859" />+                <face v1="846" v2="859" v3="847" />+                <face v1="847" v2="859" v3="860" />+                <face v1="847" v2="860" v3="848" />+                <face v1="848" v2="860" v3="861" />+                <face v1="848" v2="861" v3="849" />+                <face v1="849" v2="861" v3="862" />+                <face v1="849" v2="862" v3="850" />+                <face v1="850" v2="862" v3="863" />+                <face v1="850" v2="863" v3="851" />+                <face v1="851" v2="863" v3="1650" />+                <face v1="851" v2="1651" v3="1652" />+                <face v1="852" v2="864" v3="865" />+                <face v1="852" v2="865" v3="853" />+                <face v1="853" v2="865" v3="866" />+                <face v1="853" v2="866" v3="854" />+                <face v1="854" v2="866" v3="867" />+                <face v1="854" v2="867" v3="855" />+                <face v1="855" v2="867" v3="868" />+                <face v1="855" v2="868" v3="856" />+                <face v1="856" v2="868" v3="869" />+                <face v1="856" v2="869" v3="857" />+                <face v1="857" v2="869" v3="870" />+                <face v1="857" v2="870" v3="858" />+                <face v1="858" v2="870" v3="871" />+                <face v1="858" v2="871" v3="859" />+                <face v1="859" v2="871" v3="872" />+                <face v1="859" v2="872" v3="860" />+                <face v1="860" v2="872" v3="873" />+                <face v1="860" v2="873" v3="861" />+                <face v1="861" v2="873" v3="874" />+                <face v1="861" v2="874" v3="862" />+                <face v1="862" v2="874" v3="875" />+                <face v1="862" v2="875" v3="863" />+                <face v1="863" v2="875" v3="1653" />+                <face v1="863" v2="1654" v3="1655" />+                <face v1="864" v2="876" v3="877" />+                <face v1="864" v2="877" v3="865" />+                <face v1="865" v2="877" v3="878" />+                <face v1="865" v2="878" v3="866" />+                <face v1="866" v2="878" v3="879" />+                <face v1="866" v2="879" v3="867" />+                <face v1="867" v2="879" v3="880" />+                <face v1="867" v2="880" v3="868" />+                <face v1="868" v2="880" v3="881" />+                <face v1="868" v2="881" v3="869" />+                <face v1="869" v2="881" v3="882" />+                <face v1="869" v2="882" v3="870" />+                <face v1="870" v2="882" v3="883" />+                <face v1="870" v2="883" v3="871" />+                <face v1="871" v2="883" v3="884" />+                <face v1="871" v2="884" v3="872" />+                <face v1="872" v2="884" v3="885" />+                <face v1="872" v2="885" v3="873" />+                <face v1="873" v2="885" v3="886" />+                <face v1="873" v2="886" v3="874" />+                <face v1="874" v2="886" v3="887" />+                <face v1="874" v2="887" v3="875" />+                <face v1="875" v2="887" v3="1656" />+                <face v1="875" v2="1657" v3="1658" />+                <face v1="876" v2="888" v3="889" />+                <face v1="876" v2="889" v3="877" />+                <face v1="877" v2="889" v3="890" />+                <face v1="877" v2="890" v3="878" />+                <face v1="878" v2="890" v3="891" />+                <face v1="878" v2="891" v3="879" />+                <face v1="879" v2="891" v3="892" />+                <face v1="879" v2="892" v3="880" />+                <face v1="880" v2="892" v3="893" />+                <face v1="880" v2="893" v3="881" />+                <face v1="881" v2="893" v3="894" />+                <face v1="881" v2="894" v3="882" />+                <face v1="882" v2="894" v3="895" />+                <face v1="882" v2="895" v3="883" />+                <face v1="883" v2="895" v3="896" />+                <face v1="883" v2="896" v3="884" />+                <face v1="884" v2="896" v3="897" />+                <face v1="884" v2="897" v3="885" />+                <face v1="885" v2="897" v3="898" />+                <face v1="885" v2="898" v3="886" />+                <face v1="886" v2="898" v3="899" />+                <face v1="886" v2="899" v3="887" />+                <face v1="887" v2="899" v3="1659" />+                <face v1="887" v2="1660" v3="1661" />+                <face v1="888" v2="900" v3="901" />+                <face v1="888" v2="901" v3="889" />+                <face v1="889" v2="901" v3="902" />+                <face v1="889" v2="902" v3="890" />+                <face v1="890" v2="902" v3="903" />+                <face v1="890" v2="903" v3="891" />+                <face v1="891" v2="903" v3="904" />+                <face v1="891" v2="904" v3="892" />+                <face v1="892" v2="904" v3="905" />+                <face v1="892" v2="905" v3="893" />+                <face v1="893" v2="905" v3="906" />+                <face v1="893" v2="906" v3="894" />+                <face v1="894" v2="906" v3="907" />+                <face v1="894" v2="907" v3="895" />+                <face v1="895" v2="907" v3="908" />+                <face v1="895" v2="908" v3="896" />+                <face v1="896" v2="908" v3="909" />+                <face v1="896" v2="909" v3="897" />+                <face v1="897" v2="909" v3="910" />+                <face v1="897" v2="910" v3="898" />+                <face v1="898" v2="910" v3="911" />+                <face v1="898" v2="911" v3="899" />+                <face v1="899" v2="911" v3="1662" />+                <face v1="899" v2="1663" v3="1664" />+                <face v1="900" v2="912" v3="913" />+                <face v1="900" v2="913" v3="901" />+                <face v1="901" v2="913" v3="914" />+                <face v1="901" v2="914" v3="902" />+                <face v1="902" v2="914" v3="915" />+                <face v1="902" v2="915" v3="903" />+                <face v1="903" v2="915" v3="916" />+                <face v1="903" v2="916" v3="904" />+                <face v1="904" v2="916" v3="917" />+                <face v1="904" v2="917" v3="905" />+                <face v1="905" v2="917" v3="918" />+                <face v1="905" v2="918" v3="906" />+                <face v1="906" v2="918" v3="919" />+                <face v1="906" v2="919" v3="907" />+                <face v1="907" v2="919" v3="920" />+                <face v1="907" v2="920" v3="908" />+                <face v1="908" v2="920" v3="921" />+                <face v1="908" v2="921" v3="909" />+                <face v1="909" v2="921" v3="922" />+                <face v1="909" v2="922" v3="910" />+                <face v1="910" v2="922" v3="923" />+                <face v1="910" v2="923" v3="911" />+                <face v1="911" v2="923" v3="1665" />+                <face v1="911" v2="1666" v3="1667" />+                <face v1="912" v2="924" v3="925" />+                <face v1="912" v2="925" v3="913" />+                <face v1="913" v2="925" v3="926" />+                <face v1="913" v2="926" v3="914" />+                <face v1="914" v2="926" v3="927" />+                <face v1="914" v2="927" v3="915" />+                <face v1="915" v2="927" v3="928" />+                <face v1="915" v2="928" v3="916" />+                <face v1="916" v2="928" v3="929" />+                <face v1="916" v2="929" v3="917" />+                <face v1="917" v2="929" v3="930" />+                <face v1="917" v2="930" v3="918" />+                <face v1="918" v2="930" v3="931" />+                <face v1="918" v2="931" v3="919" />+                <face v1="919" v2="931" v3="932" />+                <face v1="919" v2="932" v3="920" />+                <face v1="920" v2="932" v3="933" />+                <face v1="920" v2="933" v3="921" />+                <face v1="921" v2="933" v3="934" />+                <face v1="921" v2="934" v3="922" />+                <face v1="922" v2="934" v3="935" />+                <face v1="922" v2="935" v3="923" />+                <face v1="923" v2="935" v3="1668" />+                <face v1="923" v2="1669" v3="1670" />+                <face v1="924" v2="936" v3="937" />+                <face v1="924" v2="937" v3="925" />+                <face v1="925" v2="937" v3="938" />+                <face v1="925" v2="938" v3="926" />+                <face v1="926" v2="938" v3="939" />+                <face v1="926" v2="939" v3="927" />+                <face v1="927" v2="939" v3="940" />+                <face v1="927" v2="940" v3="928" />+                <face v1="928" v2="940" v3="941" />+                <face v1="928" v2="941" v3="929" />+                <face v1="929" v2="941" v3="942" />+                <face v1="929" v2="942" v3="930" />+                <face v1="930" v2="942" v3="943" />+                <face v1="930" v2="943" v3="931" />+                <face v1="931" v2="943" v3="944" />+                <face v1="931" v2="944" v3="932" />+                <face v1="932" v2="944" v3="945" />+                <face v1="932" v2="945" v3="933" />+                <face v1="933" v2="945" v3="946" />+                <face v1="933" v2="946" v3="934" />+                <face v1="934" v2="946" v3="947" />+                <face v1="934" v2="947" v3="935" />+                <face v1="935" v2="947" v3="1671" />+                <face v1="935" v2="1672" v3="1673" />+                <face v1="936" v2="948" v3="949" />+                <face v1="936" v2="949" v3="937" />+                <face v1="937" v2="949" v3="950" />+                <face v1="937" v2="950" v3="938" />+                <face v1="938" v2="950" v3="951" />+                <face v1="938" v2="951" v3="939" />+                <face v1="939" v2="951" v3="952" />+                <face v1="939" v2="952" v3="940" />+                <face v1="940" v2="952" v3="953" />+                <face v1="940" v2="953" v3="941" />+                <face v1="941" v2="953" v3="954" />+                <face v1="941" v2="954" v3="942" />+                <face v1="942" v2="954" v3="955" />+                <face v1="942" v2="955" v3="943" />+                <face v1="943" v2="955" v3="956" />+                <face v1="943" v2="956" v3="944" />+                <face v1="944" v2="956" v3="957" />+                <face v1="944" v2="957" v3="945" />+                <face v1="945" v2="957" v3="958" />+                <face v1="945" v2="958" v3="946" />+                <face v1="946" v2="958" v3="959" />+                <face v1="946" v2="959" v3="947" />+                <face v1="947" v2="959" v3="1674" />+                <face v1="947" v2="1675" v3="1676" />+                <face v1="948" v2="960" v3="961" />+                <face v1="948" v2="961" v3="949" />+                <face v1="949" v2="961" v3="962" />+                <face v1="949" v2="962" v3="950" />+                <face v1="950" v2="962" v3="963" />+                <face v1="950" v2="963" v3="951" />+                <face v1="951" v2="963" v3="964" />+                <face v1="951" v2="964" v3="952" />+                <face v1="952" v2="964" v3="965" />+                <face v1="952" v2="965" v3="953" />+                <face v1="953" v2="965" v3="966" />+                <face v1="953" v2="966" v3="954" />+                <face v1="954" v2="966" v3="967" />+                <face v1="954" v2="967" v3="955" />+                <face v1="955" v2="967" v3="968" />+                <face v1="955" v2="968" v3="956" />+                <face v1="956" v2="968" v3="969" />+                <face v1="956" v2="969" v3="957" />+                <face v1="957" v2="969" v3="970" />+                <face v1="957" v2="970" v3="958" />+                <face v1="958" v2="970" v3="971" />+                <face v1="958" v2="971" v3="959" />+                <face v1="959" v2="971" v3="1677" />+                <face v1="959" v2="1678" v3="1679" />+                <face v1="960" v2="972" v3="973" />+                <face v1="960" v2="973" v3="961" />+                <face v1="961" v2="973" v3="974" />+                <face v1="961" v2="974" v3="962" />+                <face v1="962" v2="974" v3="975" />+                <face v1="962" v2="975" v3="963" />+                <face v1="963" v2="975" v3="976" />+                <face v1="963" v2="976" v3="964" />+                <face v1="964" v2="976" v3="977" />+                <face v1="964" v2="977" v3="965" />+                <face v1="965" v2="977" v3="978" />+                <face v1="965" v2="978" v3="966" />+                <face v1="966" v2="978" v3="979" />+                <face v1="966" v2="979" v3="967" />+                <face v1="967" v2="979" v3="980" />+                <face v1="967" v2="980" v3="968" />+                <face v1="968" v2="980" v3="981" />+                <face v1="968" v2="981" v3="969" />+                <face v1="969" v2="981" v3="982" />+                <face v1="969" v2="982" v3="970" />+                <face v1="970" v2="982" v3="983" />+                <face v1="970" v2="983" v3="971" />+                <face v1="971" v2="983" v3="1680" />+                <face v1="971" v2="1681" v3="1682" />+                <face v1="972" v2="984" v3="985" />+                <face v1="972" v2="985" v3="973" />+                <face v1="973" v2="985" v3="986" />+                <face v1="973" v2="986" v3="974" />+                <face v1="974" v2="986" v3="987" />+                <face v1="974" v2="987" v3="975" />+                <face v1="975" v2="987" v3="988" />+                <face v1="975" v2="988" v3="976" />+                <face v1="976" v2="988" v3="989" />+                <face v1="976" v2="989" v3="977" />+                <face v1="977" v2="989" v3="990" />+                <face v1="977" v2="990" v3="978" />+                <face v1="978" v2="990" v3="991" />+                <face v1="978" v2="991" v3="979" />+                <face v1="979" v2="991" v3="992" />+                <face v1="979" v2="992" v3="980" />+                <face v1="980" v2="992" v3="993" />+                <face v1="980" v2="993" v3="981" />+                <face v1="981" v2="993" v3="994" />+                <face v1="981" v2="994" v3="982" />+                <face v1="982" v2="994" v3="995" />+                <face v1="982" v2="995" v3="983" />+                <face v1="983" v2="995" v3="1683" />+                <face v1="983" v2="1684" v3="1685" />+                <face v1="984" v2="996" v3="997" />+                <face v1="984" v2="997" v3="985" />+                <face v1="985" v2="997" v3="998" />+                <face v1="985" v2="998" v3="986" />+                <face v1="986" v2="998" v3="999" />+                <face v1="986" v2="999" v3="987" />+                <face v1="987" v2="999" v3="1000" />+                <face v1="987" v2="1000" v3="988" />+                <face v1="988" v2="1000" v3="1001" />+                <face v1="988" v2="1001" v3="989" />+                <face v1="989" v2="1001" v3="1002" />+                <face v1="989" v2="1002" v3="990" />+                <face v1="990" v2="1002" v3="1003" />+                <face v1="990" v2="1003" v3="991" />+                <face v1="991" v2="1003" v3="1004" />+                <face v1="991" v2="1004" v3="992" />+                <face v1="992" v2="1004" v3="1005" />+                <face v1="992" v2="1005" v3="993" />+                <face v1="993" v2="1005" v3="1006" />+                <face v1="993" v2="1006" v3="994" />+                <face v1="994" v2="1006" v3="1007" />+                <face v1="994" v2="1007" v3="995" />+                <face v1="995" v2="1007" v3="1686" />+                <face v1="995" v2="1687" v3="1688" />+                <face v1="996" v2="1008" v3="1009" />+                <face v1="996" v2="1009" v3="997" />+                <face v1="997" v2="1009" v3="1010" />+                <face v1="997" v2="1010" v3="998" />+                <face v1="998" v2="1010" v3="1011" />+                <face v1="998" v2="1011" v3="999" />+                <face v1="999" v2="1011" v3="1012" />+                <face v1="999" v2="1012" v3="1000" />+                <face v1="1000" v2="1012" v3="1013" />+                <face v1="1000" v2="1013" v3="1001" />+                <face v1="1001" v2="1013" v3="1014" />+                <face v1="1001" v2="1014" v3="1002" />+                <face v1="1002" v2="1014" v3="1015" />+                <face v1="1002" v2="1015" v3="1003" />+                <face v1="1003" v2="1015" v3="1016" />+                <face v1="1003" v2="1016" v3="1004" />+                <face v1="1004" v2="1016" v3="1017" />+                <face v1="1004" v2="1017" v3="1005" />+                <face v1="1005" v2="1017" v3="1018" />+                <face v1="1005" v2="1018" v3="1006" />+                <face v1="1006" v2="1018" v3="1019" />+                <face v1="1006" v2="1019" v3="1007" />+                <face v1="1007" v2="1019" v3="1689" />+                <face v1="1007" v2="1690" v3="1691" />+                <face v1="1008" v2="1020" v3="1021" />+                <face v1="1008" v2="1021" v3="1009" />+                <face v1="1009" v2="1021" v3="1022" />+                <face v1="1009" v2="1022" v3="1010" />+                <face v1="1010" v2="1022" v3="1023" />+                <face v1="1010" v2="1023" v3="1011" />+                <face v1="1011" v2="1023" v3="1024" />+                <face v1="1011" v2="1024" v3="1012" />+                <face v1="1012" v2="1024" v3="1025" />+                <face v1="1012" v2="1025" v3="1013" />+                <face v1="1013" v2="1025" v3="1026" />+                <face v1="1013" v2="1026" v3="1014" />+                <face v1="1014" v2="1026" v3="1027" />+                <face v1="1014" v2="1027" v3="1015" />+                <face v1="1015" v2="1027" v3="1028" />+                <face v1="1015" v2="1028" v3="1016" />+                <face v1="1016" v2="1028" v3="1029" />+                <face v1="1016" v2="1029" v3="1017" />+                <face v1="1017" v2="1029" v3="1030" />+                <face v1="1017" v2="1030" v3="1018" />+                <face v1="1018" v2="1030" v3="1031" />+                <face v1="1018" v2="1031" v3="1019" />+                <face v1="1019" v2="1031" v3="1692" />+                <face v1="1019" v2="1693" v3="1694" />+                <face v1="1020" v2="1032" v3="1033" />+                <face v1="1020" v2="1033" v3="1021" />+                <face v1="1021" v2="1033" v3="1034" />+                <face v1="1021" v2="1034" v3="1022" />+                <face v1="1022" v2="1034" v3="1035" />+                <face v1="1022" v2="1035" v3="1023" />+                <face v1="1023" v2="1035" v3="1036" />+                <face v1="1023" v2="1036" v3="1024" />+                <face v1="1024" v2="1036" v3="1037" />+                <face v1="1024" v2="1037" v3="1025" />+                <face v1="1025" v2="1037" v3="1038" />+                <face v1="1025" v2="1038" v3="1026" />+                <face v1="1026" v2="1038" v3="1039" />+                <face v1="1026" v2="1039" v3="1027" />+                <face v1="1027" v2="1039" v3="1040" />+                <face v1="1027" v2="1040" v3="1028" />+                <face v1="1028" v2="1040" v3="1041" />+                <face v1="1028" v2="1041" v3="1029" />+                <face v1="1029" v2="1041" v3="1042" />+                <face v1="1029" v2="1042" v3="1030" />+                <face v1="1030" v2="1042" v3="1043" />+                <face v1="1030" v2="1043" v3="1031" />+                <face v1="1031" v2="1043" v3="1695" />+                <face v1="1031" v2="1696" v3="1697" />+                <face v1="1032" v2="1044" v3="1045" />+                <face v1="1032" v2="1045" v3="1033" />+                <face v1="1033" v2="1045" v3="1046" />+                <face v1="1033" v2="1046" v3="1034" />+                <face v1="1034" v2="1046" v3="1047" />+                <face v1="1034" v2="1047" v3="1035" />+                <face v1="1035" v2="1047" v3="1048" />+                <face v1="1035" v2="1048" v3="1036" />+                <face v1="1036" v2="1048" v3="1049" />+                <face v1="1036" v2="1049" v3="1037" />+                <face v1="1037" v2="1049" v3="1050" />+                <face v1="1037" v2="1050" v3="1038" />+                <face v1="1038" v2="1050" v3="1051" />+                <face v1="1038" v2="1051" v3="1039" />+                <face v1="1039" v2="1051" v3="1052" />+                <face v1="1039" v2="1052" v3="1040" />+                <face v1="1040" v2="1052" v3="1053" />+                <face v1="1040" v2="1053" v3="1041" />+                <face v1="1041" v2="1053" v3="1054" />+                <face v1="1041" v2="1054" v3="1042" />+                <face v1="1042" v2="1054" v3="1055" />+                <face v1="1042" v2="1055" v3="1043" />+                <face v1="1043" v2="1055" v3="1698" />+                <face v1="1043" v2="1699" v3="1700" />+                <face v1="1044" v2="1056" v3="1057" />+                <face v1="1044" v2="1057" v3="1045" />+                <face v1="1045" v2="1057" v3="1058" />+                <face v1="1045" v2="1058" v3="1046" />+                <face v1="1046" v2="1058" v3="1059" />+                <face v1="1046" v2="1059" v3="1047" />+                <face v1="1047" v2="1059" v3="1060" />+                <face v1="1047" v2="1060" v3="1048" />+                <face v1="1048" v2="1060" v3="1061" />+                <face v1="1048" v2="1061" v3="1049" />+                <face v1="1049" v2="1061" v3="1062" />+                <face v1="1049" v2="1062" v3="1050" />+                <face v1="1050" v2="1062" v3="1063" />+                <face v1="1050" v2="1063" v3="1051" />+                <face v1="1051" v2="1063" v3="1064" />+                <face v1="1051" v2="1064" v3="1052" />+                <face v1="1052" v2="1064" v3="1065" />+                <face v1="1052" v2="1065" v3="1053" />+                <face v1="1053" v2="1065" v3="1066" />+                <face v1="1053" v2="1066" v3="1054" />+                <face v1="1054" v2="1066" v3="1067" />+                <face v1="1054" v2="1067" v3="1055" />+                <face v1="1055" v2="1067" v3="1701" />+                <face v1="1055" v2="1702" v3="1703" />+                <face v1="1056" v2="1068" v3="1069" />+                <face v1="1056" v2="1069" v3="1057" />+                <face v1="1057" v2="1069" v3="1070" />+                <face v1="1057" v2="1070" v3="1058" />+                <face v1="1058" v2="1070" v3="1071" />+                <face v1="1058" v2="1071" v3="1059" />+                <face v1="1059" v2="1071" v3="1072" />+                <face v1="1059" v2="1072" v3="1060" />+                <face v1="1060" v2="1072" v3="1073" />+                <face v1="1060" v2="1073" v3="1061" />+                <face v1="1061" v2="1073" v3="1074" />+                <face v1="1061" v2="1074" v3="1062" />+                <face v1="1062" v2="1074" v3="1075" />+                <face v1="1062" v2="1075" v3="1063" />+                <face v1="1063" v2="1075" v3="1076" />+                <face v1="1063" v2="1076" v3="1064" />+                <face v1="1064" v2="1076" v3="1077" />+                <face v1="1064" v2="1077" v3="1065" />+                <face v1="1065" v2="1077" v3="1078" />+                <face v1="1065" v2="1078" v3="1066" />+                <face v1="1066" v2="1078" v3="1079" />+                <face v1="1066" v2="1079" v3="1067" />+                <face v1="1067" v2="1079" v3="1704" />+                <face v1="1067" v2="1705" v3="1706" />+                <face v1="1068" v2="1080" v3="1081" />+                <face v1="1068" v2="1081" v3="1069" />+                <face v1="1069" v2="1081" v3="1082" />+                <face v1="1069" v2="1082" v3="1070" />+                <face v1="1070" v2="1082" v3="1083" />+                <face v1="1070" v2="1083" v3="1071" />+                <face v1="1071" v2="1083" v3="1084" />+                <face v1="1071" v2="1084" v3="1072" />+                <face v1="1072" v2="1084" v3="1085" />+                <face v1="1072" v2="1085" v3="1073" />+                <face v1="1073" v2="1085" v3="1086" />+                <face v1="1073" v2="1086" v3="1074" />+                <face v1="1074" v2="1086" v3="1087" />+                <face v1="1074" v2="1087" v3="1075" />+                <face v1="1075" v2="1087" v3="1088" />+                <face v1="1075" v2="1088" v3="1076" />+                <face v1="1076" v2="1088" v3="1089" />+                <face v1="1076" v2="1089" v3="1077" />+                <face v1="1077" v2="1089" v3="1090" />+                <face v1="1077" v2="1090" v3="1078" />+                <face v1="1078" v2="1090" v3="1091" />+                <face v1="1078" v2="1091" v3="1079" />+                <face v1="1079" v2="1091" v3="1707" />+                <face v1="1079" v2="1708" v3="1709" />+                <face v1="1080" v2="1092" v3="1093" />+                <face v1="1080" v2="1093" v3="1081" />+                <face v1="1081" v2="1093" v3="1094" />+                <face v1="1081" v2="1094" v3="1082" />+                <face v1="1082" v2="1094" v3="1095" />+                <face v1="1082" v2="1095" v3="1083" />+                <face v1="1083" v2="1095" v3="1096" />+                <face v1="1083" v2="1096" v3="1084" />+                <face v1="1084" v2="1096" v3="1097" />+                <face v1="1084" v2="1097" v3="1085" />+                <face v1="1085" v2="1097" v3="1098" />+                <face v1="1085" v2="1098" v3="1086" />+                <face v1="1086" v2="1098" v3="1099" />+                <face v1="1086" v2="1099" v3="1087" />+                <face v1="1087" v2="1099" v3="1100" />+                <face v1="1087" v2="1100" v3="1088" />+                <face v1="1088" v2="1100" v3="1101" />+                <face v1="1088" v2="1101" v3="1089" />+                <face v1="1089" v2="1101" v3="1102" />+                <face v1="1089" v2="1102" v3="1090" />+                <face v1="1090" v2="1102" v3="1103" />+                <face v1="1090" v2="1103" v3="1091" />+                <face v1="1091" v2="1103" v3="1710" />+                <face v1="1091" v2="1711" v3="1712" />+                <face v1="1092" v2="1104" v3="1105" />+                <face v1="1092" v2="1105" v3="1093" />+                <face v1="1093" v2="1105" v3="1106" />+                <face v1="1093" v2="1106" v3="1094" />+                <face v1="1094" v2="1106" v3="1107" />+                <face v1="1094" v2="1107" v3="1095" />+                <face v1="1095" v2="1107" v3="1108" />+                <face v1="1095" v2="1108" v3="1096" />+                <face v1="1096" v2="1108" v3="1109" />+                <face v1="1096" v2="1109" v3="1097" />+                <face v1="1097" v2="1109" v3="1110" />+                <face v1="1097" v2="1110" v3="1098" />+                <face v1="1098" v2="1110" v3="1111" />+                <face v1="1098" v2="1111" v3="1099" />+                <face v1="1099" v2="1111" v3="1112" />+                <face v1="1099" v2="1112" v3="1100" />+                <face v1="1100" v2="1112" v3="1113" />+                <face v1="1100" v2="1113" v3="1101" />+                <face v1="1101" v2="1113" v3="1114" />+                <face v1="1101" v2="1114" v3="1102" />+                <face v1="1102" v2="1114" v3="1115" />+                <face v1="1102" v2="1115" v3="1103" />+                <face v1="1103" v2="1115" v3="1713" />+                <face v1="1103" v2="1714" v3="1715" />+                <face v1="1104" v2="1116" v3="1117" />+                <face v1="1104" v2="1117" v3="1105" />+                <face v1="1105" v2="1117" v3="1118" />+                <face v1="1105" v2="1118" v3="1106" />+                <face v1="1106" v2="1118" v3="1119" />+                <face v1="1106" v2="1119" v3="1107" />+                <face v1="1107" v2="1119" v3="1120" />+                <face v1="1107" v2="1120" v3="1108" />+                <face v1="1108" v2="1120" v3="1121" />+                <face v1="1108" v2="1121" v3="1109" />+                <face v1="1109" v2="1121" v3="1122" />+                <face v1="1109" v2="1122" v3="1110" />+                <face v1="1110" v2="1122" v3="1123" />+                <face v1="1110" v2="1123" v3="1111" />+                <face v1="1111" v2="1123" v3="1124" />+                <face v1="1111" v2="1124" v3="1112" />+                <face v1="1112" v2="1124" v3="1125" />+                <face v1="1112" v2="1125" v3="1113" />+                <face v1="1113" v2="1125" v3="1126" />+                <face v1="1113" v2="1126" v3="1114" />+                <face v1="1114" v2="1126" v3="1127" />+                <face v1="1114" v2="1127" v3="1115" />+                <face v1="1115" v2="1127" v3="1716" />+                <face v1="1115" v2="1717" v3="1718" />+                <face v1="1116" v2="1128" v3="1129" />+                <face v1="1116" v2="1129" v3="1117" />+                <face v1="1117" v2="1129" v3="1130" />+                <face v1="1117" v2="1130" v3="1118" />+                <face v1="1118" v2="1130" v3="1131" />+                <face v1="1118" v2="1131" v3="1119" />+                <face v1="1119" v2="1131" v3="1132" />+                <face v1="1119" v2="1132" v3="1120" />+                <face v1="1120" v2="1132" v3="1133" />+                <face v1="1120" v2="1133" v3="1121" />+                <face v1="1121" v2="1133" v3="1134" />+                <face v1="1121" v2="1134" v3="1122" />+                <face v1="1122" v2="1134" v3="1135" />+                <face v1="1122" v2="1135" v3="1123" />+                <face v1="1123" v2="1135" v3="1136" />+                <face v1="1123" v2="1136" v3="1124" />+                <face v1="1124" v2="1136" v3="1137" />+                <face v1="1124" v2="1137" v3="1125" />+                <face v1="1125" v2="1137" v3="1138" />+                <face v1="1125" v2="1138" v3="1126" />+                <face v1="1126" v2="1138" v3="1139" />+                <face v1="1126" v2="1139" v3="1127" />+                <face v1="1127" v2="1139" v3="1719" />+                <face v1="1127" v2="1720" v3="1721" />+                <face v1="1128" v2="1140" v3="1141" />+                <face v1="1128" v2="1141" v3="1129" />+                <face v1="1129" v2="1141" v3="1142" />+                <face v1="1129" v2="1142" v3="1130" />+                <face v1="1130" v2="1142" v3="1143" />+                <face v1="1130" v2="1143" v3="1131" />+                <face v1="1131" v2="1143" v3="1144" />+                <face v1="1131" v2="1144" v3="1132" />+                <face v1="1132" v2="1144" v3="1145" />+                <face v1="1132" v2="1145" v3="1133" />+                <face v1="1133" v2="1145" v3="1146" />+                <face v1="1133" v2="1146" v3="1134" />+                <face v1="1134" v2="1146" v3="1147" />+                <face v1="1134" v2="1147" v3="1135" />+                <face v1="1135" v2="1147" v3="1148" />+                <face v1="1135" v2="1148" v3="1136" />+                <face v1="1136" v2="1148" v3="1149" />+                <face v1="1136" v2="1149" v3="1137" />+                <face v1="1137" v2="1149" v3="1150" />+                <face v1="1137" v2="1150" v3="1138" />+                <face v1="1138" v2="1150" v3="1151" />+                <face v1="1138" v2="1151" v3="1139" />+                <face v1="1139" v2="1151" v3="1722" />+                <face v1="1139" v2="1723" v3="1724" />+                <face v1="1140" v2="1152" v3="1153" />+                <face v1="1140" v2="1153" v3="1141" />+                <face v1="1141" v2="1153" v3="1154" />+                <face v1="1141" v2="1154" v3="1142" />+                <face v1="1142" v2="1154" v3="1155" />+                <face v1="1142" v2="1155" v3="1143" />+                <face v1="1143" v2="1155" v3="1156" />+                <face v1="1143" v2="1156" v3="1144" />+                <face v1="1144" v2="1156" v3="1157" />+                <face v1="1144" v2="1157" v3="1145" />+                <face v1="1145" v2="1157" v3="1158" />+                <face v1="1145" v2="1158" v3="1146" />+                <face v1="1146" v2="1158" v3="1159" />+                <face v1="1146" v2="1159" v3="1147" />+                <face v1="1147" v2="1159" v3="1160" />+                <face v1="1147" v2="1160" v3="1148" />+                <face v1="1148" v2="1160" v3="1161" />+                <face v1="1148" v2="1161" v3="1149" />+                <face v1="1149" v2="1161" v3="1162" />+                <face v1="1149" v2="1162" v3="1150" />+                <face v1="1150" v2="1162" v3="1163" />+                <face v1="1150" v2="1163" v3="1151" />+                <face v1="1151" v2="1163" v3="1725" />+                <face v1="1151" v2="1726" v3="1727" />+                <face v1="1152" v2="1164" v3="1165" />+                <face v1="1152" v2="1165" v3="1153" />+                <face v1="1153" v2="1165" v3="1166" />+                <face v1="1153" v2="1166" v3="1154" />+                <face v1="1154" v2="1166" v3="1167" />+                <face v1="1154" v2="1167" v3="1155" />+                <face v1="1155" v2="1167" v3="1168" />+                <face v1="1155" v2="1168" v3="1156" />+                <face v1="1156" v2="1168" v3="1169" />+                <face v1="1156" v2="1169" v3="1157" />+                <face v1="1157" v2="1169" v3="1170" />+                <face v1="1157" v2="1170" v3="1158" />+                <face v1="1158" v2="1170" v3="1171" />+                <face v1="1158" v2="1171" v3="1159" />+                <face v1="1159" v2="1171" v3="1172" />+                <face v1="1159" v2="1172" v3="1160" />+                <face v1="1160" v2="1172" v3="1173" />+                <face v1="1160" v2="1173" v3="1161" />+                <face v1="1161" v2="1173" v3="1174" />+                <face v1="1161" v2="1174" v3="1162" />+                <face v1="1162" v2="1174" v3="1175" />+                <face v1="1162" v2="1175" v3="1163" />+                <face v1="1163" v2="1175" v3="1728" />+                <face v1="1163" v2="1729" v3="1730" />+                <face v1="1164" v2="1176" v3="1177" />+                <face v1="1164" v2="1177" v3="1165" />+                <face v1="1165" v2="1177" v3="1178" />+                <face v1="1165" v2="1178" v3="1166" />+                <face v1="1166" v2="1178" v3="1179" />+                <face v1="1166" v2="1179" v3="1167" />+                <face v1="1167" v2="1179" v3="1180" />+                <face v1="1167" v2="1180" v3="1168" />+                <face v1="1168" v2="1180" v3="1181" />+                <face v1="1168" v2="1181" v3="1169" />+                <face v1="1169" v2="1181" v3="1182" />+                <face v1="1169" v2="1182" v3="1170" />+                <face v1="1170" v2="1182" v3="1183" />+                <face v1="1170" v2="1183" v3="1171" />+                <face v1="1171" v2="1183" v3="1184" />+                <face v1="1171" v2="1184" v3="1172" />+                <face v1="1172" v2="1184" v3="1185" />+                <face v1="1172" v2="1185" v3="1173" />+                <face v1="1173" v2="1185" v3="1186" />+                <face v1="1173" v2="1186" v3="1174" />+                <face v1="1174" v2="1186" v3="1187" />+                <face v1="1174" v2="1187" v3="1175" />+                <face v1="1175" v2="1187" v3="1731" />+                <face v1="1175" v2="1732" v3="1733" />+                <face v1="1176" v2="1188" v3="1189" />+                <face v1="1176" v2="1189" v3="1177" />+                <face v1="1177" v2="1189" v3="1190" />+                <face v1="1177" v2="1190" v3="1178" />+                <face v1="1178" v2="1190" v3="1191" />+                <face v1="1178" v2="1191" v3="1179" />+                <face v1="1179" v2="1191" v3="1192" />+                <face v1="1179" v2="1192" v3="1180" />+                <face v1="1180" v2="1192" v3="1193" />+                <face v1="1180" v2="1193" v3="1181" />+                <face v1="1181" v2="1193" v3="1194" />+                <face v1="1181" v2="1194" v3="1182" />+                <face v1="1182" v2="1194" v3="1195" />+                <face v1="1182" v2="1195" v3="1183" />+                <face v1="1183" v2="1195" v3="1196" />+                <face v1="1183" v2="1196" v3="1184" />+                <face v1="1184" v2="1196" v3="1197" />+                <face v1="1184" v2="1197" v3="1185" />+                <face v1="1185" v2="1197" v3="1198" />+                <face v1="1185" v2="1198" v3="1186" />+                <face v1="1186" v2="1198" v3="1199" />+                <face v1="1186" v2="1199" v3="1187" />+                <face v1="1187" v2="1199" v3="1734" />+                <face v1="1187" v2="1735" v3="1736" />+                <face v1="1188" v2="1200" v3="1201" />+                <face v1="1188" v2="1201" v3="1189" />+                <face v1="1189" v2="1201" v3="1202" />+                <face v1="1189" v2="1202" v3="1190" />+                <face v1="1190" v2="1202" v3="1203" />+                <face v1="1190" v2="1203" v3="1191" />+                <face v1="1191" v2="1203" v3="1204" />+                <face v1="1191" v2="1204" v3="1192" />+                <face v1="1192" v2="1204" v3="1205" />+                <face v1="1192" v2="1205" v3="1193" />+                <face v1="1193" v2="1205" v3="1206" />+                <face v1="1193" v2="1206" v3="1194" />+                <face v1="1194" v2="1206" v3="1207" />+                <face v1="1194" v2="1207" v3="1195" />+                <face v1="1195" v2="1207" v3="1208" />+                <face v1="1195" v2="1208" v3="1196" />+                <face v1="1196" v2="1208" v3="1209" />+                <face v1="1196" v2="1209" v3="1197" />+                <face v1="1197" v2="1209" v3="1210" />+                <face v1="1197" v2="1210" v3="1198" />+                <face v1="1198" v2="1210" v3="1211" />+                <face v1="1198" v2="1211" v3="1199" />+                <face v1="1199" v2="1211" v3="1737" />+                <face v1="1199" v2="1738" v3="1739" />+                <face v1="1200" v2="1212" v3="1213" />+                <face v1="1200" v2="1213" v3="1201" />+                <face v1="1201" v2="1213" v3="1214" />+                <face v1="1201" v2="1214" v3="1202" />+                <face v1="1202" v2="1214" v3="1215" />+                <face v1="1202" v2="1215" v3="1203" />+                <face v1="1203" v2="1215" v3="1216" />+                <face v1="1203" v2="1216" v3="1204" />+                <face v1="1204" v2="1216" v3="1217" />+                <face v1="1204" v2="1217" v3="1205" />+                <face v1="1205" v2="1217" v3="1218" />+                <face v1="1205" v2="1218" v3="1206" />+                <face v1="1206" v2="1218" v3="1219" />+                <face v1="1206" v2="1219" v3="1207" />+                <face v1="1207" v2="1219" v3="1220" />+                <face v1="1207" v2="1220" v3="1208" />+                <face v1="1208" v2="1220" v3="1221" />+                <face v1="1208" v2="1221" v3="1209" />+                <face v1="1209" v2="1221" v3="1222" />+                <face v1="1209" v2="1222" v3="1210" />+                <face v1="1210" v2="1222" v3="1223" />+                <face v1="1210" v2="1223" v3="1211" />+                <face v1="1211" v2="1223" v3="1740" />+                <face v1="1211" v2="1741" v3="1742" />+                <face v1="1212" v2="1224" v3="1225" />+                <face v1="1212" v2="1225" v3="1213" />+                <face v1="1213" v2="1225" v3="1226" />+                <face v1="1213" v2="1226" v3="1214" />+                <face v1="1214" v2="1226" v3="1227" />+                <face v1="1214" v2="1227" v3="1215" />+                <face v1="1215" v2="1227" v3="1228" />+                <face v1="1215" v2="1228" v3="1216" />+                <face v1="1216" v2="1228" v3="1229" />+                <face v1="1216" v2="1229" v3="1217" />+                <face v1="1217" v2="1229" v3="1230" />+                <face v1="1217" v2="1230" v3="1218" />+                <face v1="1218" v2="1230" v3="1231" />+                <face v1="1218" v2="1231" v3="1219" />+                <face v1="1219" v2="1231" v3="1232" />+                <face v1="1219" v2="1232" v3="1220" />+                <face v1="1220" v2="1232" v3="1233" />+                <face v1="1220" v2="1233" v3="1221" />+                <face v1="1221" v2="1233" v3="1234" />+                <face v1="1221" v2="1234" v3="1222" />+                <face v1="1222" v2="1234" v3="1235" />+                <face v1="1222" v2="1235" v3="1223" />+                <face v1="1223" v2="1235" v3="1743" />+                <face v1="1223" v2="1744" v3="1745" />+                <face v1="1224" v2="1236" v3="1237" />+                <face v1="1224" v2="1237" v3="1225" />+                <face v1="1225" v2="1237" v3="1238" />+                <face v1="1225" v2="1238" v3="1226" />+                <face v1="1226" v2="1238" v3="1239" />+                <face v1="1226" v2="1239" v3="1227" />+                <face v1="1227" v2="1239" v3="1240" />+                <face v1="1227" v2="1240" v3="1228" />+                <face v1="1228" v2="1240" v3="1241" />+                <face v1="1228" v2="1241" v3="1229" />+                <face v1="1229" v2="1241" v3="1242" />+                <face v1="1229" v2="1242" v3="1230" />+                <face v1="1230" v2="1242" v3="1243" />+                <face v1="1230" v2="1243" v3="1231" />+                <face v1="1231" v2="1243" v3="1244" />+                <face v1="1231" v2="1244" v3="1232" />+                <face v1="1232" v2="1244" v3="1245" />+                <face v1="1232" v2="1245" v3="1233" />+                <face v1="1233" v2="1245" v3="1246" />+                <face v1="1233" v2="1246" v3="1234" />+                <face v1="1234" v2="1246" v3="1247" />+                <face v1="1234" v2="1247" v3="1235" />+                <face v1="1235" v2="1247" v3="1746" />+                <face v1="1235" v2="1747" v3="1748" />+                <face v1="1236" v2="1248" v3="1249" />+                <face v1="1236" v2="1249" v3="1237" />+                <face v1="1237" v2="1249" v3="1250" />+                <face v1="1237" v2="1250" v3="1238" />+                <face v1="1238" v2="1250" v3="1251" />+                <face v1="1238" v2="1251" v3="1239" />+                <face v1="1239" v2="1251" v3="1252" />+                <face v1="1239" v2="1252" v3="1240" />+                <face v1="1240" v2="1252" v3="1253" />+                <face v1="1240" v2="1253" v3="1241" />+                <face v1="1241" v2="1253" v3="1254" />+                <face v1="1241" v2="1254" v3="1242" />+                <face v1="1242" v2="1254" v3="1255" />+                <face v1="1242" v2="1255" v3="1243" />+                <face v1="1243" v2="1255" v3="1256" />+                <face v1="1243" v2="1256" v3="1244" />+                <face v1="1244" v2="1256" v3="1257" />+                <face v1="1244" v2="1257" v3="1245" />+                <face v1="1245" v2="1257" v3="1258" />+                <face v1="1245" v2="1258" v3="1246" />+                <face v1="1246" v2="1258" v3="1259" />+                <face v1="1246" v2="1259" v3="1247" />+                <face v1="1247" v2="1259" v3="1749" />+                <face v1="1247" v2="1750" v3="1751" />+                <face v1="1248" v2="1260" v3="1261" />+                <face v1="1248" v2="1261" v3="1249" />+                <face v1="1249" v2="1261" v3="1262" />+                <face v1="1249" v2="1262" v3="1250" />+                <face v1="1250" v2="1262" v3="1263" />+                <face v1="1250" v2="1263" v3="1251" />+                <face v1="1251" v2="1263" v3="1264" />+                <face v1="1251" v2="1264" v3="1252" />+                <face v1="1252" v2="1264" v3="1265" />+                <face v1="1252" v2="1265" v3="1253" />+                <face v1="1253" v2="1265" v3="1266" />+                <face v1="1253" v2="1266" v3="1254" />+                <face v1="1254" v2="1266" v3="1267" />+                <face v1="1254" v2="1267" v3="1255" />+                <face v1="1255" v2="1267" v3="1268" />+                <face v1="1255" v2="1268" v3="1256" />+                <face v1="1256" v2="1268" v3="1269" />+                <face v1="1256" v2="1269" v3="1257" />+                <face v1="1257" v2="1269" v3="1270" />+                <face v1="1257" v2="1270" v3="1258" />+                <face v1="1258" v2="1270" v3="1271" />+                <face v1="1258" v2="1271" v3="1259" />+                <face v1="1259" v2="1271" v3="1752" />+                <face v1="1259" v2="1753" v3="1754" />+                <face v1="1260" v2="1272" v3="1273" />+                <face v1="1260" v2="1273" v3="1261" />+                <face v1="1261" v2="1273" v3="1274" />+                <face v1="1261" v2="1274" v3="1262" />+                <face v1="1262" v2="1274" v3="1275" />+                <face v1="1262" v2="1275" v3="1263" />+                <face v1="1263" v2="1275" v3="1276" />+                <face v1="1263" v2="1276" v3="1264" />+                <face v1="1264" v2="1276" v3="1277" />+                <face v1="1264" v2="1277" v3="1265" />+                <face v1="1265" v2="1277" v3="1278" />+                <face v1="1265" v2="1278" v3="1266" />+                <face v1="1266" v2="1278" v3="1279" />+                <face v1="1266" v2="1279" v3="1267" />+                <face v1="1267" v2="1279" v3="1280" />+                <face v1="1267" v2="1280" v3="1268" />+                <face v1="1268" v2="1280" v3="1281" />+                <face v1="1268" v2="1281" v3="1269" />+                <face v1="1269" v2="1281" v3="1282" />+                <face v1="1269" v2="1282" v3="1270" />+                <face v1="1270" v2="1282" v3="1283" />+                <face v1="1270" v2="1283" v3="1271" />+                <face v1="1271" v2="1283" v3="1755" />+                <face v1="1271" v2="1756" v3="1757" />+                <face v1="1272" v2="1284" v3="1285" />+                <face v1="1272" v2="1285" v3="1273" />+                <face v1="1273" v2="1285" v3="1286" />+                <face v1="1273" v2="1286" v3="1274" />+                <face v1="1274" v2="1286" v3="1287" />+                <face v1="1274" v2="1287" v3="1275" />+                <face v1="1275" v2="1287" v3="1288" />+                <face v1="1275" v2="1288" v3="1276" />+                <face v1="1276" v2="1288" v3="1289" />+                <face v1="1276" v2="1289" v3="1277" />+                <face v1="1277" v2="1289" v3="1290" />+                <face v1="1277" v2="1290" v3="1278" />+                <face v1="1278" v2="1290" v3="1291" />+                <face v1="1278" v2="1291" v3="1279" />+                <face v1="1279" v2="1291" v3="1292" />+                <face v1="1279" v2="1292" v3="1280" />+                <face v1="1280" v2="1292" v3="1293" />+                <face v1="1280" v2="1293" v3="1281" />+                <face v1="1281" v2="1293" v3="1294" />+                <face v1="1281" v2="1294" v3="1282" />+                <face v1="1282" v2="1294" v3="1295" />+                <face v1="1282" v2="1295" v3="1283" />+                <face v1="1283" v2="1295" v3="1758" />+                <face v1="1283" v2="1759" v3="1760" />+                <face v1="1284" v2="1296" v3="1297" />+                <face v1="1284" v2="1297" v3="1285" />+                <face v1="1285" v2="1297" v3="1298" />+                <face v1="1285" v2="1298" v3="1286" />+                <face v1="1286" v2="1298" v3="1299" />+                <face v1="1286" v2="1299" v3="1287" />+                <face v1="1287" v2="1299" v3="1300" />+                <face v1="1287" v2="1300" v3="1288" />+                <face v1="1288" v2="1300" v3="1301" />+                <face v1="1288" v2="1301" v3="1289" />+                <face v1="1289" v2="1301" v3="1302" />+                <face v1="1289" v2="1302" v3="1290" />+                <face v1="1290" v2="1302" v3="1303" />+                <face v1="1290" v2="1303" v3="1291" />+                <face v1="1291" v2="1303" v3="1304" />+                <face v1="1291" v2="1304" v3="1292" />+                <face v1="1292" v2="1304" v3="1305" />+                <face v1="1292" v2="1305" v3="1293" />+                <face v1="1293" v2="1305" v3="1306" />+                <face v1="1293" v2="1306" v3="1294" />+                <face v1="1294" v2="1306" v3="1307" />+                <face v1="1294" v2="1307" v3="1295" />+                <face v1="1295" v2="1307" v3="1761" />+                <face v1="1295" v2="1762" v3="1763" />+                <face v1="1296" v2="1308" v3="1309" />+                <face v1="1296" v2="1309" v3="1297" />+                <face v1="1297" v2="1309" v3="1310" />+                <face v1="1297" v2="1310" v3="1298" />+                <face v1="1298" v2="1310" v3="1311" />+                <face v1="1298" v2="1311" v3="1299" />+                <face v1="1299" v2="1311" v3="1312" />+                <face v1="1299" v2="1312" v3="1300" />+                <face v1="1300" v2="1312" v3="1313" />+                <face v1="1300" v2="1313" v3="1301" />+                <face v1="1301" v2="1313" v3="1314" />+                <face v1="1301" v2="1314" v3="1302" />+                <face v1="1302" v2="1314" v3="1315" />+                <face v1="1302" v2="1315" v3="1303" />+                <face v1="1303" v2="1315" v3="1316" />+                <face v1="1303" v2="1316" v3="1304" />+                <face v1="1304" v2="1316" v3="1317" />+                <face v1="1304" v2="1317" v3="1305" />+                <face v1="1305" v2="1317" v3="1318" />+                <face v1="1305" v2="1318" v3="1306" />+                <face v1="1306" v2="1318" v3="1319" />+                <face v1="1306" v2="1319" v3="1307" />+                <face v1="1307" v2="1319" v3="1764" />+                <face v1="1307" v2="1765" v3="1766" />+                <face v1="1308" v2="1320" v3="1321" />+                <face v1="1308" v2="1321" v3="1309" />+                <face v1="1309" v2="1321" v3="1322" />+                <face v1="1309" v2="1322" v3="1310" />+                <face v1="1310" v2="1322" v3="1323" />+                <face v1="1310" v2="1323" v3="1311" />+                <face v1="1311" v2="1323" v3="1324" />+                <face v1="1311" v2="1324" v3="1312" />+                <face v1="1312" v2="1324" v3="1325" />+                <face v1="1312" v2="1325" v3="1313" />+                <face v1="1313" v2="1325" v3="1326" />+                <face v1="1313" v2="1326" v3="1314" />+                <face v1="1314" v2="1326" v3="1327" />+                <face v1="1314" v2="1327" v3="1315" />+                <face v1="1315" v2="1327" v3="1328" />+                <face v1="1315" v2="1328" v3="1316" />+                <face v1="1316" v2="1328" v3="1329" />+                <face v1="1316" v2="1329" v3="1317" />+                <face v1="1317" v2="1329" v3="1330" />+                <face v1="1317" v2="1330" v3="1318" />+                <face v1="1318" v2="1330" v3="1331" />+                <face v1="1318" v2="1331" v3="1319" />+                <face v1="1319" v2="1331" v3="1767" />+                <face v1="1319" v2="1768" v3="1769" />+                <face v1="1320" v2="1332" v3="1333" />+                <face v1="1320" v2="1333" v3="1321" />+                <face v1="1321" v2="1333" v3="1334" />+                <face v1="1321" v2="1334" v3="1322" />+                <face v1="1322" v2="1334" v3="1335" />+                <face v1="1322" v2="1335" v3="1323" />+                <face v1="1323" v2="1335" v3="1336" />+                <face v1="1323" v2="1336" v3="1324" />+                <face v1="1324" v2="1336" v3="1337" />+                <face v1="1324" v2="1337" v3="1325" />+                <face v1="1325" v2="1337" v3="1338" />+                <face v1="1325" v2="1338" v3="1326" />+                <face v1="1326" v2="1338" v3="1339" />+                <face v1="1326" v2="1339" v3="1327" />+                <face v1="1327" v2="1339" v3="1340" />+                <face v1="1327" v2="1340" v3="1328" />+                <face v1="1328" v2="1340" v3="1341" />+                <face v1="1328" v2="1341" v3="1329" />+                <face v1="1329" v2="1341" v3="1342" />+                <face v1="1329" v2="1342" v3="1330" />+                <face v1="1330" v2="1342" v3="1343" />+                <face v1="1330" v2="1343" v3="1331" />+                <face v1="1331" v2="1343" v3="1770" />+                <face v1="1331" v2="1771" v3="1772" />+                <face v1="1332" v2="1344" v3="1345" />+                <face v1="1332" v2="1345" v3="1333" />+                <face v1="1333" v2="1345" v3="1346" />+                <face v1="1333" v2="1346" v3="1334" />+                <face v1="1334" v2="1346" v3="1347" />+                <face v1="1334" v2="1347" v3="1335" />+                <face v1="1335" v2="1347" v3="1348" />+                <face v1="1335" v2="1348" v3="1336" />+                <face v1="1336" v2="1348" v3="1349" />+                <face v1="1336" v2="1349" v3="1337" />+                <face v1="1337" v2="1349" v3="1350" />+                <face v1="1337" v2="1350" v3="1338" />+                <face v1="1338" v2="1350" v3="1351" />+                <face v1="1338" v2="1351" v3="1339" />+                <face v1="1339" v2="1351" v3="1352" />+                <face v1="1339" v2="1352" v3="1340" />+                <face v1="1340" v2="1352" v3="1353" />+                <face v1="1340" v2="1353" v3="1341" />+                <face v1="1341" v2="1353" v3="1354" />+                <face v1="1341" v2="1354" v3="1342" />+                <face v1="1342" v2="1354" v3="1355" />+                <face v1="1342" v2="1355" v3="1343" />+                <face v1="1343" v2="1355" v3="1773" />+                <face v1="1343" v2="1774" v3="1775" />+                <face v1="1344" v2="1356" v3="1357" />+                <face v1="1344" v2="1357" v3="1345" />+                <face v1="1345" v2="1357" v3="1358" />+                <face v1="1345" v2="1358" v3="1346" />+                <face v1="1346" v2="1358" v3="1359" />+                <face v1="1346" v2="1359" v3="1347" />+                <face v1="1347" v2="1359" v3="1360" />+                <face v1="1347" v2="1360" v3="1348" />+                <face v1="1348" v2="1360" v3="1361" />+                <face v1="1348" v2="1361" v3="1349" />+                <face v1="1349" v2="1361" v3="1362" />+                <face v1="1349" v2="1362" v3="1350" />+                <face v1="1350" v2="1362" v3="1363" />+                <face v1="1350" v2="1363" v3="1351" />+                <face v1="1351" v2="1363" v3="1364" />+                <face v1="1351" v2="1364" v3="1352" />+                <face v1="1352" v2="1364" v3="1365" />+                <face v1="1352" v2="1365" v3="1353" />+                <face v1="1353" v2="1365" v3="1366" />+                <face v1="1353" v2="1366" v3="1354" />+                <face v1="1354" v2="1366" v3="1367" />+                <face v1="1354" v2="1367" v3="1355" />+                <face v1="1355" v2="1367" v3="1776" />+                <face v1="1355" v2="1777" v3="1778" />+                <face v1="1356" v2="1368" v3="1369" />+                <face v1="1356" v2="1369" v3="1357" />+                <face v1="1357" v2="1369" v3="1370" />+                <face v1="1357" v2="1370" v3="1358" />+                <face v1="1358" v2="1370" v3="1371" />+                <face v1="1358" v2="1371" v3="1359" />+                <face v1="1359" v2="1371" v3="1372" />+                <face v1="1359" v2="1372" v3="1360" />+                <face v1="1360" v2="1372" v3="1373" />+                <face v1="1360" v2="1373" v3="1361" />+                <face v1="1361" v2="1373" v3="1374" />+                <face v1="1361" v2="1374" v3="1362" />+                <face v1="1362" v2="1374" v3="1375" />+                <face v1="1362" v2="1375" v3="1363" />+                <face v1="1363" v2="1375" v3="1376" />+                <face v1="1363" v2="1376" v3="1364" />+                <face v1="1364" v2="1376" v3="1377" />+                <face v1="1364" v2="1377" v3="1365" />+                <face v1="1365" v2="1377" v3="1378" />+                <face v1="1365" v2="1378" v3="1366" />+                <face v1="1366" v2="1378" v3="1379" />+                <face v1="1366" v2="1379" v3="1367" />+                <face v1="1367" v2="1379" v3="1779" />+                <face v1="1367" v2="1780" v3="1781" />+                <face v1="1368" v2="1380" v3="1381" />+                <face v1="1368" v2="1381" v3="1369" />+                <face v1="1369" v2="1381" v3="1382" />+                <face v1="1369" v2="1382" v3="1370" />+                <face v1="1370" v2="1382" v3="1383" />+                <face v1="1370" v2="1383" v3="1371" />+                <face v1="1371" v2="1383" v3="1384" />+                <face v1="1371" v2="1384" v3="1372" />+                <face v1="1372" v2="1384" v3="1385" />+                <face v1="1372" v2="1385" v3="1373" />+                <face v1="1373" v2="1385" v3="1386" />+                <face v1="1373" v2="1386" v3="1374" />+                <face v1="1374" v2="1386" v3="1387" />+                <face v1="1374" v2="1387" v3="1375" />+                <face v1="1375" v2="1387" v3="1388" />+                <face v1="1375" v2="1388" v3="1376" />+                <face v1="1376" v2="1388" v3="1389" />+                <face v1="1376" v2="1389" v3="1377" />+                <face v1="1377" v2="1389" v3="1390" />+                <face v1="1377" v2="1390" v3="1378" />+                <face v1="1378" v2="1390" v3="1391" />+                <face v1="1378" v2="1391" v3="1379" />+                <face v1="1379" v2="1391" v3="1782" />+                <face v1="1379" v2="1783" v3="1784" />+                <face v1="1380" v2="1392" v3="1393" />+                <face v1="1380" v2="1393" v3="1381" />+                <face v1="1381" v2="1393" v3="1394" />+                <face v1="1381" v2="1394" v3="1382" />+                <face v1="1382" v2="1394" v3="1395" />+                <face v1="1382" v2="1395" v3="1383" />+                <face v1="1383" v2="1395" v3="1396" />+                <face v1="1383" v2="1396" v3="1384" />+                <face v1="1384" v2="1396" v3="1397" />+                <face v1="1384" v2="1397" v3="1385" />+                <face v1="1385" v2="1397" v3="1398" />+                <face v1="1385" v2="1398" v3="1386" />+                <face v1="1386" v2="1398" v3="1399" />+                <face v1="1386" v2="1399" v3="1387" />+                <face v1="1387" v2="1399" v3="1400" />+                <face v1="1387" v2="1400" v3="1388" />+                <face v1="1388" v2="1400" v3="1401" />+                <face v1="1388" v2="1401" v3="1389" />+                <face v1="1389" v2="1401" v3="1402" />+                <face v1="1389" v2="1402" v3="1390" />+                <face v1="1390" v2="1402" v3="1403" />+                <face v1="1390" v2="1403" v3="1391" />+                <face v1="1391" v2="1403" v3="1785" />+                <face v1="1391" v2="1786" v3="1787" />+                <face v1="1392" v2="1404" v3="1405" />+                <face v1="1392" v2="1405" v3="1393" />+                <face v1="1393" v2="1405" v3="1406" />+                <face v1="1393" v2="1406" v3="1394" />+                <face v1="1394" v2="1406" v3="1407" />+                <face v1="1394" v2="1407" v3="1395" />+                <face v1="1395" v2="1407" v3="1408" />+                <face v1="1395" v2="1408" v3="1396" />+                <face v1="1396" v2="1408" v3="1409" />+                <face v1="1396" v2="1409" v3="1397" />+                <face v1="1397" v2="1409" v3="1410" />+                <face v1="1397" v2="1410" v3="1398" />+                <face v1="1398" v2="1410" v3="1411" />+                <face v1="1398" v2="1411" v3="1399" />+                <face v1="1399" v2="1411" v3="1412" />+                <face v1="1399" v2="1412" v3="1400" />+                <face v1="1400" v2="1412" v3="1413" />+                <face v1="1400" v2="1413" v3="1401" />+                <face v1="1401" v2="1413" v3="1414" />+                <face v1="1401" v2="1414" v3="1402" />+                <face v1="1402" v2="1414" v3="1415" />+                <face v1="1402" v2="1415" v3="1403" />+                <face v1="1403" v2="1415" v3="1788" />+                <face v1="1403" v2="1789" v3="1790" />+                <face v1="1404" v2="1416" v3="1417" />+                <face v1="1404" v2="1417" v3="1405" />+                <face v1="1405" v2="1417" v3="1418" />+                <face v1="1405" v2="1418" v3="1406" />+                <face v1="1406" v2="1418" v3="1419" />+                <face v1="1406" v2="1419" v3="1407" />+                <face v1="1407" v2="1419" v3="1420" />+                <face v1="1407" v2="1420" v3="1408" />+                <face v1="1408" v2="1420" v3="1421" />+                <face v1="1408" v2="1421" v3="1409" />+                <face v1="1409" v2="1421" v3="1422" />+                <face v1="1409" v2="1422" v3="1410" />+                <face v1="1410" v2="1422" v3="1423" />+                <face v1="1410" v2="1423" v3="1411" />+                <face v1="1411" v2="1423" v3="1424" />+                <face v1="1411" v2="1424" v3="1412" />+                <face v1="1412" v2="1424" v3="1425" />+                <face v1="1412" v2="1425" v3="1413" />+                <face v1="1413" v2="1425" v3="1426" />+                <face v1="1413" v2="1426" v3="1414" />+                <face v1="1414" v2="1426" v3="1427" />+                <face v1="1414" v2="1427" v3="1415" />+                <face v1="1415" v2="1427" v3="1791" />+                <face v1="1415" v2="1792" v3="1793" />+                <face v1="1416" v2="1428" v3="1429" />+                <face v1="1416" v2="1429" v3="1417" />+                <face v1="1417" v2="1429" v3="1430" />+                <face v1="1417" v2="1430" v3="1418" />+                <face v1="1418" v2="1430" v3="1431" />+                <face v1="1418" v2="1431" v3="1419" />+                <face v1="1419" v2="1431" v3="1432" />+                <face v1="1419" v2="1432" v3="1420" />+                <face v1="1420" v2="1432" v3="1433" />+                <face v1="1420" v2="1433" v3="1421" />+                <face v1="1421" v2="1433" v3="1434" />+                <face v1="1421" v2="1434" v3="1422" />+                <face v1="1422" v2="1434" v3="1435" />+                <face v1="1422" v2="1435" v3="1423" />+                <face v1="1423" v2="1435" v3="1436" />+                <face v1="1423" v2="1436" v3="1424" />+                <face v1="1424" v2="1436" v3="1437" />+                <face v1="1424" v2="1437" v3="1425" />+                <face v1="1425" v2="1437" v3="1438" />+                <face v1="1425" v2="1438" v3="1426" />+                <face v1="1426" v2="1438" v3="1439" />+                <face v1="1426" v2="1439" v3="1427" />+                <face v1="1427" v2="1439" v3="1794" />+                <face v1="1427" v2="1795" v3="1796" />+                <face v1="1428" v2="1797" v3="1798" />+                <face v1="1428" v2="1799" v3="1429" />+                <face v1="1429" v2="1800" v3="1801" />+                <face v1="1429" v2="1802" v3="1430" />+                <face v1="1430" v2="1803" v3="1804" />+                <face v1="1430" v2="1805" v3="1431" />+                <face v1="1431" v2="1806" v3="1807" />+                <face v1="1431" v2="1808" v3="1432" />+                <face v1="1432" v2="1809" v3="1810" />+                <face v1="1432" v2="1811" v3="1433" />+                <face v1="1433" v2="1812" v3="1813" />+                <face v1="1433" v2="1814" v3="1434" />+                <face v1="1434" v2="1815" v3="1816" />+                <face v1="1434" v2="1817" v3="1435" />+                <face v1="1435" v2="1818" v3="1819" />+                <face v1="1435" v2="1820" v3="1436" />+                <face v1="1436" v2="1821" v3="1822" />+                <face v1="1436" v2="1823" v3="1437" />+                <face v1="1437" v2="1824" v3="1825" />+                <face v1="1437" v2="1826" v3="1438" />+                <face v1="1438" v2="1827" v3="1828" />+                <face v1="1438" v2="1829" v3="1439" />+                <face v1="1439" v2="1830" v3="1831" />+                <face v1="1439" v2="1832" v3="1833" />+            </faces>+        </submesh>+    </submeshes>+    <levelofdetail strategy="Distance" numlevels="6" manual="false">+        <lodgenerated value="500">+            <lodfacelist submeshindex="0" numfaces="2304">+                <face v1="0" v2="12" v3="13" />+                <face v1="0" v2="13" v3="1" />+                <face v1="1" v2="13" v3="14" />+                <face v1="1" v2="14" v3="2" />+                <face v1="2" v2="14" v3="15" />+                <face v1="2" v2="15" v3="3" />+                <face v1="3" v2="15" v3="16" />+                <face v1="3" v2="16" v3="4" />+                <face v1="4" v2="16" v3="17" />+                <face v1="4" v2="17" v3="5" />+                <face v1="5" v2="17" v3="18" />+                <face v1="5" v2="18" v3="6" />+                <face v1="6" v2="18" v3="19" />+                <face v1="6" v2="19" v3="7" />+                <face v1="7" v2="19" v3="20" />+                <face v1="7" v2="20" v3="8" />+                <face v1="8" v2="20" v3="21" />+                <face v1="8" v2="21" v3="9" />+                <face v1="9" v2="21" v3="22" />+                <face v1="9" v2="22" v3="10" />+                <face v1="10" v2="22" v3="23" />+                <face v1="10" v2="23" v3="11" />+                <face v1="11" v2="23" v3="1440" />+                <face v1="11" v2="1441" v3="1442" />+                <face v1="12" v2="24" v3="25" />+                <face v1="12" v2="25" v3="13" />+                <face v1="13" v2="25" v3="26" />+                <face v1="13" v2="26" v3="14" />+                <face v1="14" v2="26" v3="27" />+                <face v1="14" v2="27" v3="15" />+                <face v1="15" v2="27" v3="28" />+                <face v1="15" v2="28" v3="16" />+                <face v1="16" v2="28" v3="29" />+                <face v1="16" v2="29" v3="17" />+                <face v1="17" v2="29" v3="30" />+                <face v1="17" v2="30" v3="18" />+                <face v1="18" v2="30" v3="31" />+                <face v1="18" v2="31" v3="19" />+                <face v1="19" v2="31" v3="32" />+                <face v1="19" v2="32" v3="20" />+                <face v1="20" v2="32" v3="33" />+                <face v1="20" v2="33" v3="21" />+                <face v1="21" v2="33" v3="34" />+                <face v1="21" v2="34" v3="22" />+                <face v1="22" v2="34" v3="35" />+                <face v1="22" v2="35" v3="23" />+                <face v1="23" v2="35" v3="1443" />+                <face v1="23" v2="1444" v3="1445" />+                <face v1="24" v2="36" v3="37" />+                <face v1="24" v2="37" v3="25" />+                <face v1="25" v2="37" v3="38" />+                <face v1="25" v2="38" v3="26" />+                <face v1="26" v2="38" v3="39" />+                <face v1="26" v2="39" v3="27" />+                <face v1="27" v2="39" v3="40" />+                <face v1="27" v2="40" v3="28" />+                <face v1="28" v2="40" v3="41" />+                <face v1="28" v2="41" v3="29" />+                <face v1="29" v2="41" v3="42" />+                <face v1="29" v2="42" v3="30" />+                <face v1="30" v2="42" v3="43" />+                <face v1="30" v2="43" v3="31" />+                <face v1="31" v2="43" v3="44" />+                <face v1="31" v2="44" v3="32" />+                <face v1="32" v2="44" v3="45" />+                <face v1="32" v2="45" v3="33" />+                <face v1="33" v2="45" v3="46" />+                <face v1="33" v2="46" v3="34" />+                <face v1="34" v2="46" v3="47" />+                <face v1="34" v2="47" v3="35" />+                <face v1="35" v2="47" v3="1446" />+                <face v1="35" v2="1447" v3="1448" />+                <face v1="36" v2="48" v3="49" />+                <face v1="36" v2="49" v3="37" />+                <face v1="37" v2="49" v3="50" />+                <face v1="37" v2="50" v3="38" />+                <face v1="38" v2="50" v3="51" />+                <face v1="38" v2="51" v3="39" />+                <face v1="39" v2="51" v3="52" />+                <face v1="39" v2="52" v3="40" />+                <face v1="40" v2="52" v3="53" />+                <face v1="40" v2="53" v3="41" />+                <face v1="41" v2="53" v3="54" />+                <face v1="41" v2="54" v3="42" />+                <face v1="42" v2="54" v3="55" />+                <face v1="42" v2="55" v3="43" />+                <face v1="43" v2="55" v3="56" />+                <face v1="43" v2="56" v3="44" />+                <face v1="44" v2="56" v3="57" />+                <face v1="44" v2="57" v3="45" />+                <face v1="45" v2="57" v3="58" />+                <face v1="45" v2="58" v3="46" />+                <face v1="46" v2="58" v3="59" />+                <face v1="46" v2="59" v3="47" />+                <face v1="47" v2="59" v3="1449" />+                <face v1="47" v2="1450" v3="1451" />+                <face v1="48" v2="60" v3="61" />+                <face v1="48" v2="61" v3="49" />+                <face v1="49" v2="61" v3="62" />+                <face v1="49" v2="62" v3="50" />+                <face v1="50" v2="62" v3="63" />+                <face v1="50" v2="63" v3="51" />+                <face v1="51" v2="63" v3="64" />+                <face v1="51" v2="64" v3="52" />+                <face v1="52" v2="64" v3="65" />+                <face v1="52" v2="65" v3="53" />+                <face v1="53" v2="65" v3="66" />+                <face v1="53" v2="66" v3="54" />+                <face v1="54" v2="66" v3="67" />+                <face v1="54" v2="67" v3="55" />+                <face v1="55" v2="67" v3="68" />+                <face v1="55" v2="68" v3="56" />+                <face v1="56" v2="68" v3="69" />+                <face v1="56" v2="69" v3="57" />+                <face v1="57" v2="69" v3="70" />+                <face v1="57" v2="70" v3="58" />+                <face v1="58" v2="70" v3="71" />+                <face v1="58" v2="71" v3="59" />+                <face v1="59" v2="71" v3="1452" />+                <face v1="59" v2="1453" v3="1454" />+                <face v1="60" v2="72" v3="73" />+                <face v1="60" v2="73" v3="61" />+                <face v1="61" v2="73" v3="74" />+                <face v1="61" v2="74" v3="62" />+                <face v1="62" v2="74" v3="75" />+                <face v1="62" v2="75" v3="63" />+                <face v1="63" v2="75" v3="76" />+                <face v1="63" v2="76" v3="64" />+                <face v1="64" v2="76" v3="77" />+                <face v1="64" v2="77" v3="65" />+                <face v1="65" v2="77" v3="78" />+                <face v1="65" v2="78" v3="66" />+                <face v1="66" v2="78" v3="79" />+                <face v1="66" v2="79" v3="67" />+                <face v1="67" v2="79" v3="80" />+                <face v1="67" v2="80" v3="68" />+                <face v1="68" v2="80" v3="81" />+                <face v1="68" v2="81" v3="69" />+                <face v1="69" v2="81" v3="82" />+                <face v1="69" v2="82" v3="70" />+                <face v1="70" v2="82" v3="83" />+                <face v1="70" v2="83" v3="71" />+                <face v1="71" v2="83" v3="1455" />+                <face v1="71" v2="1456" v3="1457" />+                <face v1="72" v2="84" v3="85" />+                <face v1="72" v2="85" v3="73" />+                <face v1="73" v2="85" v3="86" />+                <face v1="73" v2="86" v3="74" />+                <face v1="74" v2="86" v3="87" />+                <face v1="74" v2="87" v3="75" />+                <face v1="75" v2="87" v3="88" />+                <face v1="75" v2="88" v3="76" />+                <face v1="76" v2="88" v3="89" />+                <face v1="76" v2="89" v3="77" />+                <face v1="77" v2="89" v3="90" />+                <face v1="77" v2="90" v3="78" />+                <face v1="78" v2="90" v3="91" />+                <face v1="78" v2="91" v3="79" />+                <face v1="79" v2="91" v3="92" />+                <face v1="79" v2="92" v3="80" />+                <face v1="80" v2="92" v3="93" />+                <face v1="80" v2="93" v3="81" />+                <face v1="81" v2="93" v3="94" />+                <face v1="81" v2="94" v3="82" />+                <face v1="82" v2="94" v3="95" />+                <face v1="82" v2="95" v3="83" />+                <face v1="83" v2="95" v3="1458" />+                <face v1="83" v2="1459" v3="1460" />+                <face v1="84" v2="96" v3="97" />+                <face v1="84" v2="97" v3="85" />+                <face v1="85" v2="97" v3="98" />+                <face v1="85" v2="98" v3="86" />+                <face v1="86" v2="98" v3="99" />+                <face v1="86" v2="99" v3="87" />+                <face v1="87" v2="99" v3="100" />+                <face v1="87" v2="100" v3="88" />+                <face v1="88" v2="100" v3="101" />+                <face v1="88" v2="101" v3="89" />+                <face v1="89" v2="101" v3="90" />+                <face v1="90" v2="103" v3="91" />+                <face v1="91" v2="103" v3="104" />+                <face v1="91" v2="104" v3="92" />+                <face v1="92" v2="104" v3="105" />+                <face v1="92" v2="105" v3="93" />+                <face v1="93" v2="105" v3="106" />+                <face v1="93" v2="106" v3="94" />+                <face v1="94" v2="106" v3="107" />+                <face v1="94" v2="107" v3="95" />+                <face v1="95" v2="107" v3="1461" />+                <face v1="95" v2="1462" v3="1463" />+                <face v1="96" v2="108" v3="109" />+                <face v1="96" v2="109" v3="97" />+                <face v1="97" v2="109" v3="110" />+                <face v1="97" v2="110" v3="98" />+                <face v1="98" v2="110" v3="111" />+                <face v1="98" v2="111" v3="99" />+                <face v1="99" v2="111" v3="112" />+                <face v1="99" v2="112" v3="100" />+                <face v1="100" v2="112" v3="113" />+                <face v1="100" v2="113" v3="101" />+                <face v1="101" v2="113" v3="114" />+                <face v1="101" v2="114" v3="90" />+                <face v1="90" v2="114" v3="115" />+                <face v1="90" v2="115" v3="103" />+                <face v1="103" v2="115" v3="116" />+                <face v1="103" v2="116" v3="104" />+                <face v1="104" v2="116" v3="117" />+                <face v1="104" v2="117" v3="105" />+                <face v1="105" v2="117" v3="118" />+                <face v1="105" v2="118" v3="106" />+                <face v1="106" v2="118" v3="119" />+                <face v1="106" v2="119" v3="107" />+                <face v1="107" v2="119" v3="1464" />+                <face v1="107" v2="1465" v3="1466" />+                <face v1="108" v2="121" v3="109" />+                <face v1="109" v2="121" v3="122" />+                <face v1="109" v2="122" v3="110" />+                <face v1="110" v2="122" v3="123" />+                <face v1="110" v2="123" v3="111" />+                <face v1="111" v2="123" v3="124" />+                <face v1="111" v2="124" v3="112" />+                <face v1="112" v2="124" v3="125" />+                <face v1="112" v2="125" v3="113" />+                <face v1="113" v2="125" v3="114" />+                <face v1="114" v2="127" v3="115" />+                <face v1="115" v2="127" v3="128" />+                <face v1="115" v2="128" v3="116" />+                <face v1="116" v2="128" v3="129" />+                <face v1="116" v2="129" v3="117" />+                <face v1="117" v2="129" v3="130" />+                <face v1="117" v2="130" v3="118" />+                <face v1="118" v2="130" v3="131" />+                <face v1="118" v2="131" v3="119" />+                <face v1="119" v2="131" v3="1469" />+                <face v1="1469" v2="132" v3="133" />+                <face v1="1469" v2="133" v3="121" />+                <face v1="121" v2="133" v3="134" />+                <face v1="121" v2="134" v3="122" />+                <face v1="122" v2="134" v3="135" />+                <face v1="122" v2="135" v3="123" />+                <face v1="123" v2="135" v3="136" />+                <face v1="123" v2="136" v3="124" />+                <face v1="124" v2="136" v3="137" />+                <face v1="124" v2="137" v3="125" />+                <face v1="125" v2="137" v3="138" />+                <face v1="125" v2="138" v3="114" />+                <face v1="114" v2="138" v3="139" />+                <face v1="114" v2="139" v3="127" />+                <face v1="127" v2="139" v3="140" />+                <face v1="127" v2="140" v3="128" />+                <face v1="128" v2="140" v3="141" />+                <face v1="128" v2="141" v3="129" />+                <face v1="129" v2="141" v3="142" />+                <face v1="129" v2="142" v3="130" />+                <face v1="130" v2="142" v3="143" />+                <face v1="130" v2="143" v3="131" />+                <face v1="131" v2="143" v3="1470" />+                <face v1="131" v2="1471" v3="1469" />+                <face v1="132" v2="144" v3="145" />+                <face v1="132" v2="145" v3="133" />+                <face v1="133" v2="145" v3="146" />+                <face v1="133" v2="146" v3="134" />+                <face v1="134" v2="146" v3="147" />+                <face v1="134" v2="147" v3="135" />+                <face v1="135" v2="147" v3="148" />+                <face v1="135" v2="148" v3="136" />+                <face v1="136" v2="148" v3="149" />+                <face v1="136" v2="149" v3="137" />+                <face v1="137" v2="149" v3="150" />+                <face v1="137" v2="150" v3="138" />+                <face v1="138" v2="150" v3="151" />+                <face v1="138" v2="151" v3="139" />+                <face v1="139" v2="151" v3="152" />+                <face v1="139" v2="152" v3="140" />+                <face v1="140" v2="152" v3="153" />+                <face v1="140" v2="153" v3="141" />+                <face v1="141" v2="153" v3="154" />+                <face v1="141" v2="154" v3="142" />+                <face v1="142" v2="154" v3="155" />+                <face v1="142" v2="155" v3="143" />+                <face v1="143" v2="155" v3="1473" />+                <face v1="143" v2="1474" v3="1475" />+                <face v1="144" v2="156" v3="157" />+                <face v1="144" v2="157" v3="145" />+                <face v1="145" v2="157" v3="158" />+                <face v1="145" v2="158" v3="146" />+                <face v1="146" v2="158" v3="159" />+                <face v1="146" v2="159" v3="147" />+                <face v1="147" v2="159" v3="160" />+                <face v1="147" v2="160" v3="148" />+                <face v1="148" v2="160" v3="161" />+                <face v1="148" v2="161" v3="149" />+                <face v1="149" v2="161" v3="162" />+                <face v1="149" v2="162" v3="150" />+                <face v1="150" v2="162" v3="163" />+                <face v1="150" v2="163" v3="151" />+                <face v1="151" v2="163" v3="164" />+                <face v1="151" v2="164" v3="152" />+                <face v1="152" v2="164" v3="165" />+                <face v1="152" v2="165" v3="153" />+                <face v1="153" v2="165" v3="166" />+                <face v1="153" v2="166" v3="154" />+                <face v1="154" v2="166" v3="167" />+                <face v1="154" v2="167" v3="155" />+                <face v1="155" v2="167" v3="1476" />+                <face v1="155" v2="1477" v3="1478" />+                <face v1="156" v2="168" v3="169" />+                <face v1="156" v2="169" v3="157" />+                <face v1="157" v2="169" v3="170" />+                <face v1="157" v2="170" v3="158" />+                <face v1="158" v2="170" v3="171" />+                <face v1="158" v2="171" v3="159" />+                <face v1="159" v2="171" v3="172" />+                <face v1="159" v2="172" v3="160" />+                <face v1="160" v2="172" v3="173" />+                <face v1="160" v2="173" v3="161" />+                <face v1="161" v2="173" v3="174" />+                <face v1="161" v2="174" v3="162" />+                <face v1="162" v2="174" v3="175" />+                <face v1="162" v2="175" v3="163" />+                <face v1="163" v2="175" v3="176" />+                <face v1="163" v2="176" v3="164" />+                <face v1="164" v2="176" v3="177" />+                <face v1="164" v2="177" v3="165" />+                <face v1="165" v2="177" v3="178" />+                <face v1="165" v2="178" v3="166" />+                <face v1="166" v2="178" v3="179" />+                <face v1="166" v2="179" v3="167" />+                <face v1="167" v2="179" v3="1479" />+                <face v1="167" v2="1480" v3="1481" />+                <face v1="168" v2="180" v3="181" />+                <face v1="168" v2="181" v3="169" />+                <face v1="169" v2="181" v3="182" />+                <face v1="169" v2="182" v3="170" />+                <face v1="170" v2="182" v3="183" />+                <face v1="170" v2="183" v3="171" />+                <face v1="171" v2="183" v3="184" />+                <face v1="171" v2="184" v3="172" />+                <face v1="172" v2="184" v3="185" />+                <face v1="172" v2="185" v3="173" />+                <face v1="173" v2="185" v3="186" />+                <face v1="173" v2="186" v3="174" />+                <face v1="174" v2="186" v3="187" />+                <face v1="174" v2="187" v3="175" />+                <face v1="175" v2="187" v3="188" />+                <face v1="175" v2="188" v3="176" />+                <face v1="176" v2="188" v3="189" />+                <face v1="176" v2="189" v3="177" />+                <face v1="177" v2="189" v3="190" />+                <face v1="177" v2="190" v3="178" />+                <face v1="178" v2="190" v3="191" />+                <face v1="178" v2="191" v3="179" />+                <face v1="179" v2="191" v3="1482" />+                <face v1="179" v2="1483" v3="1484" />+                <face v1="180" v2="192" v3="193" />+                <face v1="180" v2="193" v3="181" />+                <face v1="181" v2="193" v3="194" />+                <face v1="181" v2="194" v3="182" />+                <face v1="182" v2="194" v3="195" />+                <face v1="182" v2="195" v3="183" />+                <face v1="183" v2="195" v3="196" />+                <face v1="183" v2="196" v3="184" />+                <face v1="184" v2="196" v3="197" />+                <face v1="184" v2="197" v3="185" />+                <face v1="185" v2="197" v3="198" />+                <face v1="185" v2="198" v3="186" />+                <face v1="186" v2="198" v3="199" />+                <face v1="186" v2="199" v3="187" />+                <face v1="187" v2="199" v3="200" />+                <face v1="187" v2="200" v3="188" />+                <face v1="188" v2="200" v3="201" />+                <face v1="188" v2="201" v3="189" />+                <face v1="189" v2="201" v3="202" />+                <face v1="189" v2="202" v3="190" />+                <face v1="190" v2="202" v3="203" />+                <face v1="190" v2="203" v3="191" />+                <face v1="191" v2="203" v3="1485" />+                <face v1="191" v2="1486" v3="1487" />+                <face v1="192" v2="204" v3="205" />+                <face v1="192" v2="205" v3="193" />+                <face v1="193" v2="205" v3="206" />+                <face v1="193" v2="206" v3="194" />+                <face v1="194" v2="206" v3="207" />+                <face v1="194" v2="207" v3="195" />+                <face v1="195" v2="207" v3="208" />+                <face v1="195" v2="208" v3="196" />+                <face v1="196" v2="208" v3="209" />+                <face v1="196" v2="209" v3="197" />+                <face v1="197" v2="209" v3="210" />+                <face v1="197" v2="210" v3="198" />+                <face v1="198" v2="210" v3="211" />+                <face v1="198" v2="211" v3="199" />+                <face v1="199" v2="211" v3="212" />+                <face v1="199" v2="212" v3="200" />+                <face v1="200" v2="212" v3="213" />+                <face v1="200" v2="213" v3="201" />+                <face v1="201" v2="213" v3="214" />+                <face v1="201" v2="214" v3="202" />+                <face v1="202" v2="214" v3="215" />+                <face v1="202" v2="215" v3="203" />+                <face v1="203" v2="215" v3="1488" />+                <face v1="203" v2="1489" v3="1490" />+                <face v1="204" v2="216" v3="217" />+                <face v1="204" v2="217" v3="205" />+                <face v1="205" v2="217" v3="218" />+                <face v1="205" v2="218" v3="206" />+                <face v1="206" v2="218" v3="219" />+                <face v1="206" v2="219" v3="207" />+                <face v1="207" v2="219" v3="220" />+                <face v1="207" v2="220" v3="208" />+                <face v1="208" v2="220" v3="221" />+                <face v1="208" v2="221" v3="209" />+                <face v1="209" v2="221" v3="222" />+                <face v1="209" v2="222" v3="210" />+                <face v1="210" v2="222" v3="223" />+                <face v1="210" v2="223" v3="211" />+                <face v1="211" v2="223" v3="224" />+                <face v1="211" v2="224" v3="212" />+                <face v1="212" v2="224" v3="225" />+                <face v1="212" v2="225" v3="213" />+                <face v1="213" v2="225" v3="226" />+                <face v1="213" v2="226" v3="214" />+                <face v1="214" v2="226" v3="227" />+                <face v1="214" v2="227" v3="215" />+                <face v1="215" v2="227" v3="1491" />+                <face v1="215" v2="1492" v3="1493" />+                <face v1="216" v2="228" v3="229" />+                <face v1="216" v2="229" v3="217" />+                <face v1="217" v2="229" v3="230" />+                <face v1="217" v2="230" v3="218" />+                <face v1="218" v2="230" v3="231" />+                <face v1="218" v2="231" v3="219" />+                <face v1="219" v2="231" v3="232" />+                <face v1="219" v2="232" v3="220" />+                <face v1="220" v2="232" v3="233" />+                <face v1="220" v2="233" v3="221" />+                <face v1="221" v2="233" v3="234" />+                <face v1="221" v2="234" v3="222" />+                <face v1="222" v2="234" v3="235" />+                <face v1="222" v2="235" v3="223" />+                <face v1="223" v2="235" v3="236" />+                <face v1="223" v2="236" v3="224" />+                <face v1="224" v2="236" v3="237" />+                <face v1="224" v2="237" v3="225" />+                <face v1="225" v2="237" v3="238" />+                <face v1="225" v2="238" v3="226" />+                <face v1="226" v2="238" v3="239" />+                <face v1="226" v2="239" v3="227" />+                <face v1="227" v2="239" v3="1494" />+                <face v1="227" v2="1495" v3="1496" />+                <face v1="228" v2="240" v3="241" />+                <face v1="228" v2="241" v3="229" />+                <face v1="229" v2="241" v3="242" />+                <face v1="229" v2="242" v3="230" />+                <face v1="230" v2="242" v3="243" />+                <face v1="230" v2="243" v3="231" />+                <face v1="231" v2="243" v3="244" />+                <face v1="231" v2="244" v3="232" />+                <face v1="232" v2="244" v3="245" />+                <face v1="232" v2="245" v3="233" />+                <face v1="233" v2="245" v3="246" />+                <face v1="233" v2="246" v3="234" />+                <face v1="234" v2="246" v3="247" />+                <face v1="234" v2="247" v3="235" />+                <face v1="235" v2="247" v3="248" />+                <face v1="235" v2="248" v3="236" />+                <face v1="236" v2="248" v3="249" />+                <face v1="236" v2="249" v3="237" />+                <face v1="237" v2="249" v3="250" />+                <face v1="237" v2="250" v3="238" />+                <face v1="238" v2="250" v3="251" />+                <face v1="238" v2="251" v3="239" />+                <face v1="239" v2="251" v3="1497" />+                <face v1="239" v2="1498" v3="1499" />+                <face v1="240" v2="252" v3="253" />+                <face v1="240" v2="253" v3="241" />+                <face v1="241" v2="253" v3="254" />+                <face v1="241" v2="254" v3="242" />+                <face v1="242" v2="254" v3="255" />+                <face v1="242" v2="255" v3="243" />+                <face v1="243" v2="255" v3="256" />+                <face v1="243" v2="256" v3="244" />+                <face v1="244" v2="256" v3="257" />+                <face v1="244" v2="257" v3="245" />+                <face v1="245" v2="257" v3="258" />+                <face v1="245" v2="258" v3="246" />+                <face v1="246" v2="258" v3="259" />+                <face v1="246" v2="259" v3="247" />+                <face v1="247" v2="259" v3="260" />+                <face v1="247" v2="260" v3="248" />+                <face v1="248" v2="260" v3="261" />+                <face v1="248" v2="261" v3="249" />+                <face v1="249" v2="261" v3="262" />+                <face v1="249" v2="262" v3="250" />+                <face v1="250" v2="262" v3="263" />+                <face v1="250" v2="263" v3="251" />+                <face v1="251" v2="263" v3="1500" />+                <face v1="251" v2="1501" v3="1502" />+                <face v1="252" v2="264" v3="265" />+                <face v1="252" v2="265" v3="253" />+                <face v1="253" v2="265" v3="266" />+                <face v1="253" v2="266" v3="254" />+                <face v1="254" v2="266" v3="267" />+                <face v1="254" v2="267" v3="255" />+                <face v1="255" v2="267" v3="268" />+                <face v1="255" v2="268" v3="256" />+                <face v1="256" v2="268" v3="269" />+                <face v1="256" v2="269" v3="257" />+                <face v1="257" v2="269" v3="270" />+                <face v1="257" v2="270" v3="258" />+                <face v1="258" v2="270" v3="271" />+                <face v1="258" v2="271" v3="259" />+                <face v1="259" v2="271" v3="272" />+                <face v1="259" v2="272" v3="260" />+                <face v1="260" v2="272" v3="273" />+                <face v1="260" v2="273" v3="261" />+                <face v1="261" v2="273" v3="274" />+                <face v1="261" v2="274" v3="262" />+                <face v1="262" v2="274" v3="275" />+                <face v1="262" v2="275" v3="263" />+                <face v1="263" v2="275" v3="1503" />+                <face v1="263" v2="1504" v3="1505" />+                <face v1="264" v2="276" v3="277" />+                <face v1="264" v2="277" v3="265" />+                <face v1="265" v2="277" v3="278" />+                <face v1="265" v2="278" v3="266" />+                <face v1="266" v2="278" v3="279" />+                <face v1="266" v2="279" v3="267" />+                <face v1="267" v2="279" v3="280" />+                <face v1="267" v2="280" v3="268" />+                <face v1="268" v2="280" v3="281" />+                <face v1="268" v2="281" v3="269" />+                <face v1="269" v2="281" v3="282" />+                <face v1="269" v2="282" v3="270" />+                <face v1="270" v2="282" v3="283" />+                <face v1="270" v2="283" v3="271" />+                <face v1="271" v2="283" v3="284" />+                <face v1="271" v2="284" v3="272" />+                <face v1="272" v2="284" v3="285" />+                <face v1="272" v2="285" v3="273" />+                <face v1="273" v2="285" v3="286" />+                <face v1="273" v2="286" v3="274" />+                <face v1="274" v2="286" v3="287" />+                <face v1="274" v2="287" v3="275" />+                <face v1="275" v2="287" v3="1506" />+                <face v1="275" v2="1507" v3="1508" />+                <face v1="276" v2="288" v3="289" />+                <face v1="276" v2="289" v3="277" />+                <face v1="277" v2="289" v3="290" />+                <face v1="277" v2="290" v3="278" />+                <face v1="278" v2="290" v3="291" />+                <face v1="278" v2="291" v3="279" />+                <face v1="279" v2="291" v3="292" />+                <face v1="279" v2="292" v3="280" />+                <face v1="280" v2="292" v3="293" />+                <face v1="280" v2="293" v3="281" />+                <face v1="281" v2="293" v3="294" />+                <face v1="281" v2="294" v3="282" />+                <face v1="282" v2="294" v3="295" />+                <face v1="282" v2="295" v3="283" />+                <face v1="283" v2="295" v3="296" />+                <face v1="283" v2="296" v3="284" />+                <face v1="284" v2="296" v3="297" />+                <face v1="284" v2="297" v3="285" />+                <face v1="285" v2="297" v3="298" />+                <face v1="285" v2="298" v3="286" />+                <face v1="286" v2="298" v3="323" />+                <face v1="286" v2="323" v3="287" />+                <face v1="287" v2="323" v3="1509" />+                <face v1="287" v2="1510" v3="1511" />+                <face v1="288" v2="301" v3="289" />+                <face v1="289" v2="301" v3="290" />+                <face v1="290" v2="303" v3="291" />+                <face v1="291" v2="303" v3="292" />+                <face v1="292" v2="377" v3="293" />+                <face v1="293" v2="377" v3="318" />+                <face v1="293" v2="318" v3="294" />+                <face v1="294" v2="318" v3="307" />+                <face v1="294" v2="307" v3="295" />+                <face v1="295" v2="307" v3="308" />+                <face v1="295" v2="308" v3="296" />+                <face v1="296" v2="308" v3="297" />+                <face v1="297" v2="322" v3="298" />+                <face v1="298" v2="322" v3="323" />+                <face v1="1514" v2="312" v3="301" />+                <face v1="301" v2="314" v3="290" />+                <face v1="290" v2="314" v3="303" />+                <face v1="303" v2="316" v3="292" />+                <face v1="292" v2="316" v3="377" />+                <face v1="308" v2="321" v3="297" />+                <face v1="297" v2="321" v3="322" />+                <face v1="323" v2="1516" v3="1514" />+                <face v1="312" v2="325" v3="301" />+                <face v1="301" v2="325" v3="314" />+                <face v1="314" v2="327" v3="303" />+                <face v1="303" v2="327" v3="316" />+                <face v1="318" v2="331" v3="307" />+                <face v1="307" v2="331" v3="332" />+                <face v1="307" v2="332" v3="308" />+                <face v1="308" v2="332" v3="321" />+                <face v1="321" v2="358" v3="322" />+                <face v1="322" v2="358" v3="371" />+                <face v1="322" v2="371" v3="323" />+                <face v1="323" v2="371" v3="1520" />+                <face v1="1520" v2="336" v3="325" />+                <face v1="325" v2="338" v3="314" />+                <face v1="314" v2="338" v3="327" />+                <face v1="332" v2="345" v3="321" />+                <face v1="321" v2="345" v3="358" />+                <face v1="371" v2="1522" v3="1520" />+                <face v1="1526" v2="397" v3="325" />+                <face v1="325" v2="397" v3="362" />+                <face v1="325" v2="362" v3="338" />+                <face v1="338" v2="362" v3="327" />+                <face v1="362" v2="375" v3="327" />+                <face v1="327" v2="375" v3="316" />+                <face v1="331" v2="380" v3="332" />+                <face v1="332" v2="380" v3="345" />+                <face v1="362" v2="399" v3="375" />+                <face v1="375" v2="399" v3="388" />+                <face v1="375" v2="388" v3="316" />+                <face v1="316" v2="388" v3="377" />+                <face v1="380" v2="393" v3="345" />+                <face v1="345" v2="393" v3="358" />+                <face v1="397" v2="410" v3="362" />+                <face v1="362" v2="410" v3="399" />+                <face v1="399" v2="412" v3="388" />+                <face v1="388" v2="412" v3="401" />+                <face v1="388" v2="401" v3="377" />+                <face v1="377" v2="401" v3="318" />+                <face v1="393" v2="406" v3="358" />+                <face v1="358" v2="406" v3="407" />+                <face v1="358" v2="407" v3="371" />+                <face v1="371" v2="407" v3="1526" />+                <face v1="1526" v2="408" v3="397" />+                <face v1="410" v2="423" v3="399" />+                <face v1="399" v2="423" v3="412" />+                <face v1="412" v2="425" v3="401" />+                <face v1="401" v2="425" v3="414" />+                <face v1="401" v2="414" v3="318" />+                <face v1="318" v2="414" v3="415" />+                <face v1="318" v2="415" v3="331" />+                <face v1="331" v2="415" v3="416" />+                <face v1="331" v2="416" v3="380" />+                <face v1="380" v2="416" v3="417" />+                <face v1="380" v2="417" v3="393" />+                <face v1="393" v2="417" v3="406" />+                <face v1="407" v2="1540" v3="1526" />+                <face v1="397" v2="434" v3="410" />+                <face v1="410" v2="434" v3="423" />+                <face v1="423" v2="436" v3="412" />+                <face v1="412" v2="436" v3="425" />+                <face v1="417" v2="430" v3="406" />+                <face v1="406" v2="430" v3="431" />+                <face v1="406" v2="431" v3="407" />+                <face v1="407" v2="431" v3="1544" />+                <face v1="1544" v2="432" v3="433" />+                <face v1="1544" v2="433" v3="397" />+                <face v1="397" v2="433" v3="434" />+                <face v1="434" v2="435" v3="423" />+                <face v1="423" v2="435" v3="436" />+                <face v1="436" v2="437" v3="425" />+                <face v1="425" v2="437" v3="438" />+                <face v1="425" v2="438" v3="414" />+                <face v1="414" v2="438" v3="439" />+                <face v1="414" v2="439" v3="415" />+                <face v1="415" v2="439" v3="440" />+                <face v1="415" v2="440" v3="416" />+                <face v1="416" v2="440" v3="441" />+                <face v1="416" v2="441" v3="417" />+                <face v1="417" v2="441" v3="442" />+                <face v1="417" v2="442" v3="430" />+                <face v1="430" v2="442" v3="443" />+                <face v1="430" v2="443" v3="431" />+                <face v1="431" v2="443" v3="1545" />+                <face v1="431" v2="1546" v3="1544" />+                <face v1="432" v2="444" v3="445" />+                <face v1="432" v2="445" v3="433" />+                <face v1="433" v2="445" v3="446" />+                <face v1="433" v2="446" v3="434" />+                <face v1="434" v2="446" v3="447" />+                <face v1="434" v2="447" v3="435" />+                <face v1="435" v2="447" v3="448" />+                <face v1="435" v2="448" v3="436" />+                <face v1="436" v2="448" v3="449" />+                <face v1="436" v2="449" v3="437" />+                <face v1="437" v2="449" v3="450" />+                <face v1="437" v2="450" v3="438" />+                <face v1="438" v2="450" v3="451" />+                <face v1="438" v2="451" v3="439" />+                <face v1="439" v2="451" v3="452" />+                <face v1="439" v2="452" v3="440" />+                <face v1="440" v2="452" v3="453" />+                <face v1="440" v2="453" v3="441" />+                <face v1="441" v2="453" v3="454" />+                <face v1="441" v2="454" v3="442" />+                <face v1="442" v2="454" v3="455" />+                <face v1="442" v2="455" v3="443" />+                <face v1="443" v2="455" v3="1548" />+                <face v1="443" v2="1549" v3="1550" />+                <face v1="444" v2="456" v3="457" />+                <face v1="444" v2="457" v3="445" />+                <face v1="445" v2="457" v3="458" />+                <face v1="445" v2="458" v3="446" />+                <face v1="446" v2="458" v3="459" />+                <face v1="446" v2="459" v3="447" />+                <face v1="447" v2="459" v3="460" />+                <face v1="447" v2="460" v3="448" />+                <face v1="448" v2="460" v3="461" />+                <face v1="448" v2="461" v3="449" />+                <face v1="449" v2="461" v3="462" />+                <face v1="449" v2="462" v3="450" />+                <face v1="450" v2="462" v3="463" />+                <face v1="450" v2="463" v3="451" />+                <face v1="451" v2="463" v3="464" />+                <face v1="451" v2="464" v3="452" />+                <face v1="452" v2="464" v3="465" />+                <face v1="452" v2="465" v3="453" />+                <face v1="453" v2="465" v3="466" />+                <face v1="453" v2="466" v3="454" />+                <face v1="454" v2="466" v3="467" />+                <face v1="454" v2="467" v3="455" />+                <face v1="455" v2="467" v3="1551" />+                <face v1="455" v2="1552" v3="1553" />+                <face v1="456" v2="468" v3="469" />+                <face v1="456" v2="469" v3="457" />+                <face v1="457" v2="469" v3="470" />+                <face v1="457" v2="470" v3="458" />+                <face v1="458" v2="470" v3="471" />+                <face v1="458" v2="471" v3="459" />+                <face v1="459" v2="471" v3="472" />+                <face v1="459" v2="472" v3="460" />+                <face v1="460" v2="472" v3="473" />+                <face v1="460" v2="473" v3="461" />+                <face v1="461" v2="473" v3="474" />+                <face v1="461" v2="474" v3="462" />+                <face v1="462" v2="474" v3="475" />+                <face v1="462" v2="475" v3="463" />+                <face v1="463" v2="475" v3="476" />+                <face v1="463" v2="476" v3="464" />+                <face v1="464" v2="476" v3="477" />+                <face v1="464" v2="477" v3="465" />+                <face v1="465" v2="477" v3="478" />+                <face v1="465" v2="478" v3="466" />+                <face v1="466" v2="478" v3="479" />+                <face v1="466" v2="479" v3="467" />+                <face v1="467" v2="479" v3="1554" />+                <face v1="467" v2="1555" v3="1556" />+                <face v1="468" v2="480" v3="481" />+                <face v1="468" v2="481" v3="469" />+                <face v1="469" v2="481" v3="482" />+                <face v1="469" v2="482" v3="470" />+                <face v1="470" v2="482" v3="483" />+                <face v1="470" v2="483" v3="471" />+                <face v1="471" v2="483" v3="484" />+                <face v1="471" v2="484" v3="472" />+                <face v1="472" v2="484" v3="485" />+                <face v1="472" v2="485" v3="473" />+                <face v1="473" v2="485" v3="486" />+                <face v1="473" v2="486" v3="474" />+                <face v1="474" v2="486" v3="487" />+                <face v1="474" v2="487" v3="475" />+                <face v1="475" v2="487" v3="488" />+                <face v1="475" v2="488" v3="476" />+                <face v1="476" v2="488" v3="489" />+                <face v1="476" v2="489" v3="477" />+                <face v1="477" v2="489" v3="490" />+                <face v1="477" v2="490" v3="478" />+                <face v1="478" v2="490" v3="491" />+                <face v1="478" v2="491" v3="479" />+                <face v1="479" v2="491" v3="1557" />+                <face v1="479" v2="1558" v3="1559" />+                <face v1="480" v2="492" v3="493" />+                <face v1="480" v2="493" v3="481" />+                <face v1="481" v2="493" v3="494" />+                <face v1="481" v2="494" v3="482" />+                <face v1="482" v2="494" v3="495" />+                <face v1="482" v2="495" v3="483" />+                <face v1="483" v2="495" v3="496" />+                <face v1="483" v2="496" v3="484" />+                <face v1="484" v2="496" v3="497" />+                <face v1="484" v2="497" v3="485" />+                <face v1="485" v2="497" v3="498" />+                <face v1="485" v2="498" v3="486" />+                <face v1="486" v2="498" v3="499" />+                <face v1="486" v2="499" v3="487" />+                <face v1="487" v2="499" v3="500" />+                <face v1="487" v2="500" v3="488" />+                <face v1="488" v2="500" v3="501" />+                <face v1="488" v2="501" v3="489" />+                <face v1="489" v2="501" v3="502" />+                <face v1="489" v2="502" v3="490" />+                <face v1="490" v2="502" v3="503" />+                <face v1="490" v2="503" v3="491" />+                <face v1="491" v2="503" v3="1560" />+                <face v1="491" v2="1561" v3="1562" />+                <face v1="492" v2="504" v3="505" />+                <face v1="492" v2="505" v3="493" />+                <face v1="493" v2="505" v3="506" />+                <face v1="493" v2="506" v3="494" />+                <face v1="494" v2="506" v3="507" />+                <face v1="494" v2="507" v3="495" />+                <face v1="495" v2="507" v3="508" />+                <face v1="495" v2="508" v3="496" />+                <face v1="496" v2="508" v3="509" />+                <face v1="496" v2="509" v3="497" />+                <face v1="497" v2="509" v3="510" />+                <face v1="497" v2="510" v3="498" />+                <face v1="498" v2="510" v3="511" />+                <face v1="498" v2="511" v3="499" />+                <face v1="499" v2="511" v3="512" />+                <face v1="499" v2="512" v3="500" />+                <face v1="500" v2="512" v3="513" />+                <face v1="500" v2="513" v3="501" />+                <face v1="501" v2="513" v3="514" />+                <face v1="501" v2="514" v3="502" />+                <face v1="502" v2="514" v3="515" />+                <face v1="502" v2="515" v3="503" />+                <face v1="503" v2="515" v3="1563" />+                <face v1="503" v2="1564" v3="1565" />+                <face v1="504" v2="516" v3="517" />+                <face v1="504" v2="517" v3="505" />+                <face v1="505" v2="517" v3="518" />+                <face v1="505" v2="518" v3="506" />+                <face v1="506" v2="518" v3="519" />+                <face v1="506" v2="519" v3="507" />+                <face v1="507" v2="519" v3="520" />+                <face v1="507" v2="520" v3="508" />+                <face v1="508" v2="520" v3="521" />+                <face v1="508" v2="521" v3="509" />+                <face v1="509" v2="521" v3="522" />+                <face v1="509" v2="522" v3="510" />+                <face v1="510" v2="522" v3="523" />+                <face v1="510" v2="523" v3="511" />+                <face v1="511" v2="523" v3="524" />+                <face v1="511" v2="524" v3="512" />+                <face v1="512" v2="524" v3="525" />+                <face v1="512" v2="525" v3="513" />+                <face v1="513" v2="525" v3="526" />+                <face v1="513" v2="526" v3="514" />+                <face v1="514" v2="526" v3="527" />+                <face v1="514" v2="527" v3="515" />+                <face v1="515" v2="527" v3="1566" />+                <face v1="515" v2="1567" v3="1568" />+                <face v1="516" v2="528" v3="529" />+                <face v1="516" v2="529" v3="517" />+                <face v1="517" v2="529" v3="530" />+                <face v1="517" v2="530" v3="518" />+                <face v1="518" v2="530" v3="531" />+                <face v1="518" v2="531" v3="519" />+                <face v1="519" v2="531" v3="532" />+                <face v1="519" v2="532" v3="520" />+                <face v1="520" v2="532" v3="533" />+                <face v1="520" v2="533" v3="521" />+                <face v1="521" v2="533" v3="534" />+                <face v1="521" v2="534" v3="522" />+                <face v1="522" v2="534" v3="535" />+                <face v1="522" v2="535" v3="523" />+                <face v1="523" v2="535" v3="536" />+                <face v1="523" v2="536" v3="524" />+                <face v1="524" v2="536" v3="537" />+                <face v1="524" v2="537" v3="525" />+                <face v1="525" v2="537" v3="538" />+                <face v1="525" v2="538" v3="526" />+                <face v1="526" v2="538" v3="539" />+                <face v1="526" v2="539" v3="527" />+                <face v1="527" v2="539" v3="1569" />+                <face v1="527" v2="1570" v3="1571" />+                <face v1="528" v2="540" v3="541" />+                <face v1="528" v2="541" v3="529" />+                <face v1="529" v2="541" v3="542" />+                <face v1="529" v2="542" v3="530" />+                <face v1="530" v2="542" v3="543" />+                <face v1="530" v2="543" v3="531" />+                <face v1="531" v2="543" v3="544" />+                <face v1="531" v2="544" v3="532" />+                <face v1="532" v2="544" v3="545" />+                <face v1="532" v2="545" v3="533" />+                <face v1="533" v2="545" v3="546" />+                <face v1="533" v2="546" v3="534" />+                <face v1="534" v2="546" v3="547" />+                <face v1="534" v2="547" v3="535" />+                <face v1="535" v2="547" v3="548" />+                <face v1="535" v2="548" v3="536" />+                <face v1="536" v2="548" v3="549" />+                <face v1="536" v2="549" v3="537" />+                <face v1="537" v2="549" v3="550" />+                <face v1="537" v2="550" v3="538" />+                <face v1="538" v2="550" v3="551" />+                <face v1="538" v2="551" v3="539" />+                <face v1="539" v2="551" v3="1572" />+                <face v1="539" v2="1573" v3="1574" />+                <face v1="540" v2="552" v3="553" />+                <face v1="540" v2="553" v3="541" />+                <face v1="541" v2="553" v3="554" />+                <face v1="541" v2="554" v3="542" />+                <face v1="542" v2="554" v3="555" />+                <face v1="542" v2="555" v3="543" />+                <face v1="543" v2="555" v3="556" />+                <face v1="543" v2="556" v3="544" />+                <face v1="544" v2="556" v3="557" />+                <face v1="544" v2="557" v3="545" />+                <face v1="545" v2="557" v3="558" />+                <face v1="545" v2="558" v3="546" />+                <face v1="546" v2="558" v3="559" />+                <face v1="546" v2="559" v3="547" />+                <face v1="547" v2="559" v3="560" />+                <face v1="547" v2="560" v3="548" />+                <face v1="548" v2="560" v3="561" />+                <face v1="548" v2="561" v3="549" />+                <face v1="549" v2="561" v3="562" />+                <face v1="549" v2="562" v3="550" />+                <face v1="550" v2="562" v3="563" />+                <face v1="550" v2="563" v3="551" />+                <face v1="551" v2="563" v3="1575" />+                <face v1="551" v2="1576" v3="1577" />+                <face v1="552" v2="564" v3="565" />+                <face v1="552" v2="565" v3="553" />+                <face v1="553" v2="565" v3="566" />+                <face v1="553" v2="566" v3="554" />+                <face v1="554" v2="566" v3="567" />+                <face v1="554" v2="567" v3="555" />+                <face v1="555" v2="567" v3="568" />+                <face v1="555" v2="568" v3="556" />+                <face v1="556" v2="568" v3="569" />+                <face v1="556" v2="569" v3="557" />+                <face v1="557" v2="569" v3="570" />+                <face v1="557" v2="570" v3="558" />+                <face v1="558" v2="570" v3="571" />+                <face v1="558" v2="571" v3="559" />+                <face v1="559" v2="571" v3="572" />+                <face v1="559" v2="572" v3="560" />+                <face v1="560" v2="572" v3="573" />+                <face v1="560" v2="573" v3="561" />+                <face v1="561" v2="573" v3="574" />+                <face v1="561" v2="574" v3="562" />+                <face v1="562" v2="574" v3="575" />+                <face v1="562" v2="575" v3="563" />+                <face v1="563" v2="575" v3="1578" />+                <face v1="563" v2="1579" v3="1580" />+                <face v1="564" v2="577" v3="565" />+                <face v1="565" v2="577" v3="578" />+                <face v1="565" v2="578" v3="566" />+                <face v1="566" v2="578" v3="579" />+                <face v1="566" v2="579" v3="567" />+                <face v1="567" v2="579" v3="580" />+                <face v1="567" v2="580" v3="568" />+                <face v1="568" v2="580" v3="581" />+                <face v1="568" v2="581" v3="569" />+                <face v1="569" v2="581" v3="570" />+                <face v1="570" v2="583" v3="571" />+                <face v1="571" v2="583" v3="584" />+                <face v1="571" v2="584" v3="572" />+                <face v1="572" v2="584" v3="585" />+                <face v1="572" v2="585" v3="573" />+                <face v1="573" v2="585" v3="586" />+                <face v1="573" v2="586" v3="574" />+                <face v1="574" v2="586" v3="587" />+                <face v1="574" v2="587" v3="575" />+                <face v1="575" v2="587" v3="1583" />+                <face v1="1583" v2="588" v3="589" />+                <face v1="1583" v2="589" v3="577" />+                <face v1="577" v2="589" v3="590" />+                <face v1="577" v2="590" v3="578" />+                <face v1="578" v2="590" v3="591" />+                <face v1="578" v2="591" v3="579" />+                <face v1="579" v2="591" v3="592" />+                <face v1="579" v2="592" v3="580" />+                <face v1="580" v2="592" v3="593" />+                <face v1="580" v2="593" v3="581" />+                <face v1="581" v2="593" v3="594" />+                <face v1="581" v2="594" v3="570" />+                <face v1="570" v2="594" v3="595" />+                <face v1="570" v2="595" v3="583" />+                <face v1="583" v2="595" v3="596" />+                <face v1="583" v2="596" v3="584" />+                <face v1="584" v2="596" v3="597" />+                <face v1="584" v2="597" v3="585" />+                <face v1="585" v2="597" v3="598" />+                <face v1="585" v2="598" v3="586" />+                <face v1="586" v2="598" v3="599" />+                <face v1="586" v2="599" v3="587" />+                <face v1="587" v2="599" v3="1584" />+                <face v1="587" v2="1585" v3="1583" />+                <face v1="588" v2="601" v3="589" />+                <face v1="589" v2="601" v3="602" />+                <face v1="589" v2="602" v3="590" />+                <face v1="590" v2="602" v3="603" />+                <face v1="590" v2="603" v3="591" />+                <face v1="591" v2="603" v3="604" />+                <face v1="591" v2="604" v3="592" />+                <face v1="592" v2="604" v3="605" />+                <face v1="592" v2="605" v3="593" />+                <face v1="593" v2="605" v3="594" />+                <face v1="594" v2="607" v3="595" />+                <face v1="595" v2="607" v3="608" />+                <face v1="595" v2="608" v3="596" />+                <face v1="596" v2="608" v3="609" />+                <face v1="596" v2="609" v3="597" />+                <face v1="597" v2="609" v3="610" />+                <face v1="597" v2="610" v3="598" />+                <face v1="598" v2="610" v3="611" />+                <face v1="598" v2="611" v3="599" />+                <face v1="599" v2="611" v3="1589" />+                <face v1="1589" v2="612" v3="613" />+                <face v1="1589" v2="613" v3="601" />+                <face v1="601" v2="613" v3="614" />+                <face v1="601" v2="614" v3="602" />+                <face v1="602" v2="614" v3="615" />+                <face v1="602" v2="615" v3="603" />+                <face v1="603" v2="615" v3="616" />+                <face v1="603" v2="616" v3="604" />+                <face v1="604" v2="616" v3="617" />+                <face v1="604" v2="617" v3="605" />+                <face v1="605" v2="617" v3="618" />+                <face v1="605" v2="618" v3="594" />+                <face v1="594" v2="618" v3="619" />+                <face v1="594" v2="619" v3="607" />+                <face v1="607" v2="619" v3="620" />+                <face v1="607" v2="620" v3="608" />+                <face v1="608" v2="620" v3="621" />+                <face v1="608" v2="621" v3="609" />+                <face v1="609" v2="621" v3="622" />+                <face v1="609" v2="622" v3="610" />+                <face v1="610" v2="622" v3="623" />+                <face v1="610" v2="623" v3="611" />+                <face v1="611" v2="623" v3="1590" />+                <face v1="611" v2="1591" v3="1589" />+                <face v1="612" v2="624" v3="625" />+                <face v1="612" v2="625" v3="613" />+                <face v1="613" v2="625" v3="626" />+                <face v1="613" v2="626" v3="614" />+                <face v1="614" v2="626" v3="627" />+                <face v1="614" v2="627" v3="615" />+                <face v1="615" v2="627" v3="628" />+                <face v1="615" v2="628" v3="616" />+                <face v1="616" v2="628" v3="629" />+                <face v1="616" v2="629" v3="617" />+                <face v1="617" v2="629" v3="630" />+                <face v1="617" v2="630" v3="618" />+                <face v1="618" v2="630" v3="631" />+                <face v1="618" v2="631" v3="619" />+                <face v1="619" v2="631" v3="632" />+                <face v1="619" v2="632" v3="620" />+                <face v1="620" v2="632" v3="633" />+                <face v1="620" v2="633" v3="621" />+                <face v1="621" v2="633" v3="634" />+                <face v1="621" v2="634" v3="622" />+                <face v1="622" v2="634" v3="635" />+                <face v1="622" v2="635" v3="623" />+                <face v1="623" v2="635" v3="1593" />+                <face v1="623" v2="1594" v3="1595" />+                <face v1="624" v2="636" v3="637" />+                <face v1="624" v2="637" v3="625" />+                <face v1="625" v2="637" v3="638" />+                <face v1="625" v2="638" v3="626" />+                <face v1="626" v2="638" v3="639" />+                <face v1="626" v2="639" v3="627" />+                <face v1="627" v2="639" v3="640" />+                <face v1="627" v2="640" v3="628" />+                <face v1="628" v2="640" v3="641" />+                <face v1="628" v2="641" v3="629" />+                <face v1="629" v2="641" v3="642" />+                <face v1="629" v2="642" v3="630" />+                <face v1="630" v2="642" v3="643" />+                <face v1="630" v2="643" v3="631" />+                <face v1="631" v2="643" v3="644" />+                <face v1="631" v2="644" v3="632" />+                <face v1="632" v2="644" v3="645" />+                <face v1="632" v2="645" v3="633" />+                <face v1="633" v2="645" v3="646" />+                <face v1="633" v2="646" v3="634" />+                <face v1="634" v2="646" v3="647" />+                <face v1="634" v2="647" v3="635" />+                <face v1="635" v2="647" v3="1596" />+                <face v1="635" v2="1597" v3="1598" />+                <face v1="636" v2="648" v3="649" />+                <face v1="636" v2="649" v3="637" />+                <face v1="637" v2="649" v3="650" />+                <face v1="637" v2="650" v3="638" />+                <face v1="638" v2="650" v3="651" />+                <face v1="638" v2="651" v3="639" />+                <face v1="639" v2="651" v3="652" />+                <face v1="639" v2="652" v3="640" />+                <face v1="640" v2="652" v3="653" />+                <face v1="640" v2="653" v3="641" />+                <face v1="641" v2="653" v3="654" />+                <face v1="641" v2="654" v3="642" />+                <face v1="642" v2="654" v3="655" />+                <face v1="642" v2="655" v3="643" />+                <face v1="643" v2="655" v3="656" />+                <face v1="643" v2="656" v3="644" />+                <face v1="644" v2="656" v3="657" />+                <face v1="644" v2="657" v3="645" />+                <face v1="645" v2="657" v3="658" />+                <face v1="645" v2="658" v3="646" />+                <face v1="646" v2="658" v3="659" />+                <face v1="646" v2="659" v3="647" />+                <face v1="647" v2="659" v3="1599" />+                <face v1="647" v2="1600" v3="1601" />+                <face v1="648" v2="660" v3="661" />+                <face v1="648" v2="661" v3="649" />+                <face v1="649" v2="661" v3="662" />+                <face v1="649" v2="662" v3="650" />+                <face v1="650" v2="662" v3="663" />+                <face v1="650" v2="663" v3="651" />+                <face v1="651" v2="663" v3="664" />+                <face v1="651" v2="664" v3="652" />+                <face v1="652" v2="664" v3="665" />+                <face v1="652" v2="665" v3="653" />+                <face v1="653" v2="665" v3="666" />+                <face v1="653" v2="666" v3="654" />+                <face v1="654" v2="666" v3="667" />+                <face v1="654" v2="667" v3="655" />+                <face v1="655" v2="667" v3="668" />+                <face v1="655" v2="668" v3="656" />+                <face v1="656" v2="668" v3="669" />+                <face v1="656" v2="669" v3="657" />+                <face v1="657" v2="669" v3="670" />+                <face v1="657" v2="670" v3="658" />+                <face v1="658" v2="670" v3="671" />+                <face v1="658" v2="671" v3="659" />+                <face v1="659" v2="671" v3="1602" />+                <face v1="659" v2="1603" v3="1604" />+                <face v1="660" v2="672" v3="673" />+                <face v1="660" v2="673" v3="661" />+                <face v1="661" v2="673" v3="674" />+                <face v1="661" v2="674" v3="662" />+                <face v1="662" v2="674" v3="675" />+                <face v1="662" v2="675" v3="663" />+                <face v1="663" v2="675" v3="676" />+                <face v1="663" v2="676" v3="664" />+                <face v1="664" v2="676" v3="677" />+                <face v1="664" v2="677" v3="665" />+                <face v1="665" v2="677" v3="678" />+                <face v1="665" v2="678" v3="666" />+                <face v1="666" v2="678" v3="679" />+                <face v1="666" v2="679" v3="667" />+                <face v1="667" v2="679" v3="680" />+                <face v1="667" v2="680" v3="668" />+                <face v1="668" v2="680" v3="681" />+                <face v1="668" v2="681" v3="669" />+                <face v1="669" v2="681" v3="682" />+                <face v1="669" v2="682" v3="670" />+                <face v1="670" v2="682" v3="683" />+                <face v1="670" v2="683" v3="671" />+                <face v1="671" v2="683" v3="1605" />+                <face v1="671" v2="1606" v3="1607" />+                <face v1="672" v2="684" v3="685" />+                <face v1="672" v2="685" v3="673" />+                <face v1="673" v2="685" v3="686" />+                <face v1="673" v2="686" v3="674" />+                <face v1="674" v2="686" v3="687" />+                <face v1="674" v2="687" v3="675" />+                <face v1="675" v2="687" v3="688" />+                <face v1="675" v2="688" v3="676" />+                <face v1="676" v2="688" v3="689" />+                <face v1="676" v2="689" v3="677" />+                <face v1="677" v2="689" v3="690" />+                <face v1="677" v2="690" v3="678" />+                <face v1="678" v2="690" v3="691" />+                <face v1="678" v2="691" v3="679" />+                <face v1="679" v2="691" v3="692" />+                <face v1="679" v2="692" v3="680" />+                <face v1="680" v2="692" v3="693" />+                <face v1="680" v2="693" v3="681" />+                <face v1="681" v2="693" v3="694" />+                <face v1="681" v2="694" v3="682" />+                <face v1="682" v2="694" v3="695" />+                <face v1="682" v2="695" v3="683" />+                <face v1="683" v2="695" v3="1608" />+                <face v1="683" v2="1609" v3="1610" />+                <face v1="684" v2="696" v3="697" />+                <face v1="684" v2="697" v3="685" />+                <face v1="685" v2="697" v3="698" />+                <face v1="685" v2="698" v3="686" />+                <face v1="686" v2="698" v3="699" />+                <face v1="686" v2="699" v3="687" />+                <face v1="687" v2="699" v3="700" />+                <face v1="687" v2="700" v3="688" />+                <face v1="688" v2="700" v3="701" />+                <face v1="688" v2="701" v3="689" />+                <face v1="689" v2="701" v3="702" />+                <face v1="689" v2="702" v3="690" />+                <face v1="690" v2="702" v3="703" />+                <face v1="690" v2="703" v3="691" />+                <face v1="691" v2="703" v3="704" />+                <face v1="691" v2="704" v3="692" />+                <face v1="692" v2="704" v3="705" />+                <face v1="692" v2="705" v3="693" />+                <face v1="693" v2="705" v3="706" />+                <face v1="693" v2="706" v3="694" />+                <face v1="694" v2="706" v3="707" />+                <face v1="694" v2="707" v3="695" />+                <face v1="695" v2="707" v3="1611" />+                <face v1="695" v2="1612" v3="1613" />+                <face v1="696" v2="708" v3="709" />+                <face v1="696" v2="709" v3="697" />+                <face v1="697" v2="709" v3="710" />+                <face v1="697" v2="710" v3="698" />+                <face v1="698" v2="710" v3="711" />+                <face v1="698" v2="711" v3="699" />+                <face v1="699" v2="711" v3="712" />+                <face v1="699" v2="712" v3="700" />+                <face v1="700" v2="712" v3="713" />+                <face v1="700" v2="713" v3="701" />+                <face v1="701" v2="713" v3="714" />+                <face v1="701" v2="714" v3="702" />+                <face v1="702" v2="714" v3="715" />+                <face v1="702" v2="715" v3="703" />+                <face v1="703" v2="715" v3="716" />+                <face v1="703" v2="716" v3="704" />+                <face v1="704" v2="716" v3="717" />+                <face v1="704" v2="717" v3="705" />+                <face v1="705" v2="717" v3="718" />+                <face v1="705" v2="718" v3="706" />+                <face v1="706" v2="718" v3="719" />+                <face v1="706" v2="719" v3="707" />+                <face v1="707" v2="719" v3="1614" />+                <face v1="707" v2="1615" v3="1616" />+                <face v1="708" v2="720" v3="721" />+                <face v1="708" v2="721" v3="709" />+                <face v1="709" v2="721" v3="722" />+                <face v1="709" v2="722" v3="710" />+                <face v1="710" v2="722" v3="723" />+                <face v1="710" v2="723" v3="711" />+                <face v1="711" v2="723" v3="724" />+                <face v1="711" v2="724" v3="712" />+                <face v1="712" v2="724" v3="725" />+                <face v1="712" v2="725" v3="713" />+                <face v1="713" v2="725" v3="726" />+                <face v1="713" v2="726" v3="714" />+                <face v1="714" v2="726" v3="727" />+                <face v1="714" v2="727" v3="715" />+                <face v1="715" v2="727" v3="728" />+                <face v1="715" v2="728" v3="716" />+                <face v1="716" v2="728" v3="729" />+                <face v1="716" v2="729" v3="717" />+                <face v1="717" v2="729" v3="730" />+                <face v1="717" v2="730" v3="718" />+                <face v1="718" v2="730" v3="731" />+                <face v1="718" v2="731" v3="719" />+                <face v1="719" v2="731" v3="1617" />+                <face v1="719" v2="1618" v3="1619" />+                <face v1="720" v2="732" v3="733" />+                <face v1="720" v2="733" v3="721" />+                <face v1="721" v2="733" v3="734" />+                <face v1="721" v2="734" v3="722" />+                <face v1="722" v2="734" v3="735" />+                <face v1="722" v2="735" v3="723" />+                <face v1="723" v2="735" v3="736" />+                <face v1="723" v2="736" v3="724" />+                <face v1="724" v2="736" v3="737" />+                <face v1="724" v2="737" v3="725" />+                <face v1="725" v2="737" v3="738" />+                <face v1="725" v2="738" v3="726" />+                <face v1="726" v2="738" v3="739" />+                <face v1="726" v2="739" v3="727" />+                <face v1="727" v2="739" v3="740" />+                <face v1="727" v2="740" v3="728" />+                <face v1="728" v2="740" v3="741" />+                <face v1="728" v2="741" v3="729" />+                <face v1="729" v2="741" v3="742" />+                <face v1="729" v2="742" v3="730" />+                <face v1="730" v2="742" v3="743" />+                <face v1="730" v2="743" v3="731" />+                <face v1="731" v2="743" v3="1620" />+                <face v1="731" v2="1621" v3="1622" />+                <face v1="732" v2="744" v3="745" />+                <face v1="732" v2="745" v3="733" />+                <face v1="733" v2="745" v3="746" />+                <face v1="733" v2="746" v3="734" />+                <face v1="734" v2="746" v3="747" />+                <face v1="734" v2="747" v3="735" />+                <face v1="735" v2="747" v3="748" />+                <face v1="735" v2="748" v3="736" />+                <face v1="736" v2="748" v3="749" />+                <face v1="736" v2="749" v3="737" />+                <face v1="737" v2="749" v3="750" />+                <face v1="737" v2="750" v3="738" />+                <face v1="738" v2="750" v3="751" />+                <face v1="738" v2="751" v3="739" />+                <face v1="739" v2="751" v3="752" />+                <face v1="739" v2="752" v3="740" />+                <face v1="740" v2="752" v3="753" />+                <face v1="740" v2="753" v3="741" />+                <face v1="741" v2="753" v3="754" />+                <face v1="741" v2="754" v3="742" />+                <face v1="742" v2="754" v3="755" />+                <face v1="742" v2="755" v3="743" />+                <face v1="743" v2="755" v3="1623" />+                <face v1="743" v2="1624" v3="1625" />+                <face v1="744" v2="756" v3="757" />+                <face v1="744" v2="757" v3="745" />+                <face v1="745" v2="757" v3="758" />+                <face v1="745" v2="758" v3="746" />+                <face v1="746" v2="758" v3="759" />+                <face v1="746" v2="759" v3="747" />+                <face v1="747" v2="759" v3="760" />+                <face v1="747" v2="760" v3="748" />+                <face v1="748" v2="760" v3="761" />+                <face v1="748" v2="761" v3="749" />+                <face v1="749" v2="761" v3="762" />+                <face v1="749" v2="762" v3="750" />+                <face v1="750" v2="762" v3="763" />+                <face v1="750" v2="763" v3="751" />+                <face v1="751" v2="763" v3="764" />+                <face v1="751" v2="764" v3="752" />+                <face v1="752" v2="764" v3="765" />+                <face v1="752" v2="765" v3="753" />+                <face v1="753" v2="765" v3="766" />+                <face v1="753" v2="766" v3="754" />+                <face v1="754" v2="766" v3="767" />+                <face v1="754" v2="767" v3="755" />+                <face v1="755" v2="767" v3="1626" />+                <face v1="755" v2="1627" v3="1628" />+                <face v1="756" v2="768" v3="769" />+                <face v1="756" v2="769" v3="757" />+                <face v1="757" v2="769" v3="770" />+                <face v1="757" v2="770" v3="758" />+                <face v1="758" v2="770" v3="771" />+                <face v1="758" v2="771" v3="759" />+                <face v1="759" v2="771" v3="772" />+                <face v1="759" v2="772" v3="760" />+                <face v1="760" v2="772" v3="773" />+                <face v1="760" v2="773" v3="761" />+                <face v1="761" v2="773" v3="774" />+                <face v1="761" v2="774" v3="762" />+                <face v1="762" v2="774" v3="775" />+                <face v1="762" v2="775" v3="763" />+                <face v1="763" v2="775" v3="776" />+                <face v1="763" v2="776" v3="764" />+                <face v1="764" v2="776" v3="777" />+                <face v1="764" v2="777" v3="765" />+                <face v1="765" v2="777" v3="778" />+                <face v1="765" v2="778" v3="766" />+                <face v1="766" v2="778" v3="803" />+                <face v1="766" v2="803" v3="767" />+                <face v1="767" v2="803" v3="1629" />+                <face v1="767" v2="1630" v3="1631" />+                <face v1="768" v2="781" v3="769" />+                <face v1="769" v2="781" v3="770" />+                <face v1="770" v2="783" v3="771" />+                <face v1="771" v2="783" v3="772" />+                <face v1="772" v2="857" v3="773" />+                <face v1="773" v2="857" v3="798" />+                <face v1="773" v2="798" v3="774" />+                <face v1="774" v2="798" v3="787" />+                <face v1="774" v2="787" v3="775" />+                <face v1="775" v2="787" v3="788" />+                <face v1="775" v2="788" v3="776" />+                <face v1="776" v2="788" v3="777" />+                <face v1="777" v2="802" v3="778" />+                <face v1="778" v2="802" v3="803" />+                <face v1="1634" v2="792" v3="781" />+                <face v1="781" v2="794" v3="770" />+                <face v1="770" v2="794" v3="783" />+                <face v1="783" v2="796" v3="772" />+                <face v1="772" v2="796" v3="857" />+                <face v1="788" v2="801" v3="777" />+                <face v1="777" v2="801" v3="802" />+                <face v1="803" v2="1636" v3="1634" />+                <face v1="792" v2="1642" v3="805" />+                <face v1="792" v2="805" v3="781" />+                <face v1="781" v2="805" v3="794" />+                <face v1="794" v2="807" v3="783" />+                <face v1="783" v2="807" v3="796" />+                <face v1="798" v2="811" v3="787" />+                <face v1="787" v2="811" v3="812" />+                <face v1="787" v2="812" v3="788" />+                <face v1="788" v2="812" v3="801" />+                <face v1="801" v2="838" v3="802" />+                <face v1="802" v2="838" v3="851" />+                <face v1="802" v2="851" v3="803" />+                <face v1="803" v2="851" v3="1642" />+                <face v1="803" v2="1642" v3="1640" />+                <face v1="805" v2="818" v3="794" />+                <face v1="794" v2="818" v3="807" />+                <face v1="812" v2="825" v3="801" />+                <face v1="801" v2="825" v3="838" />+                <face v1="805" v2="842" v3="818" />+                <face v1="818" v2="842" v3="807" />+                <face v1="1646" v2="877" v3="805" />+                <face v1="805" v2="877" v3="842" />+                <face v1="842" v2="855" v3="807" />+                <face v1="807" v2="855" v3="796" />+                <face v1="811" v2="860" v3="812" />+                <face v1="812" v2="860" v3="825" />+                <face v1="842" v2="879" v3="855" />+                <face v1="855" v2="879" v3="868" />+                <face v1="855" v2="868" v3="796" />+                <face v1="796" v2="868" v3="857" />+                <face v1="860" v2="873" v3="825" />+                <face v1="825" v2="873" v3="838" />+                <face v1="877" v2="890" v3="842" />+                <face v1="842" v2="890" v3="879" />+                <face v1="879" v2="892" v3="868" />+                <face v1="868" v2="892" v3="881" />+                <face v1="868" v2="881" v3="857" />+                <face v1="857" v2="881" v3="798" />+                <face v1="873" v2="886" v3="838" />+                <face v1="838" v2="886" v3="887" />+                <face v1="838" v2="887" v3="851" />+                <face v1="851" v2="887" v3="1646" />+                <face v1="1646" v2="888" v3="877" />+                <face v1="890" v2="903" v3="879" />+                <face v1="879" v2="903" v3="892" />+                <face v1="892" v2="905" v3="881" />+                <face v1="881" v2="905" v3="894" />+                <face v1="881" v2="894" v3="798" />+                <face v1="798" v2="894" v3="895" />+                <face v1="798" v2="895" v3="811" />+                <face v1="811" v2="895" v3="896" />+                <face v1="811" v2="896" v3="860" />+                <face v1="860" v2="896" v3="897" />+                <face v1="860" v2="897" v3="873" />+                <face v1="873" v2="897" v3="886" />+                <face v1="887" v2="1660" v3="1646" />+                <face v1="877" v2="914" v3="890" />+                <face v1="890" v2="914" v3="903" />+                <face v1="903" v2="916" v3="892" />+                <face v1="892" v2="916" v3="905" />+                <face v1="897" v2="910" v3="886" />+                <face v1="886" v2="910" v3="911" />+                <face v1="886" v2="911" v3="887" />+                <face v1="887" v2="911" v3="1664" />+                <face v1="1664" v2="912" v3="913" />+                <face v1="1664" v2="913" v3="877" />+                <face v1="877" v2="913" v3="914" />+                <face v1="914" v2="915" v3="903" />+                <face v1="903" v2="915" v3="916" />+                <face v1="916" v2="917" v3="905" />+                <face v1="905" v2="917" v3="918" />+                <face v1="905" v2="918" v3="894" />+                <face v1="894" v2="918" v3="919" />+                <face v1="894" v2="919" v3="895" />+                <face v1="895" v2="919" v3="920" />+                <face v1="895" v2="920" v3="896" />+                <face v1="896" v2="920" v3="921" />+                <face v1="896" v2="921" v3="897" />+                <face v1="897" v2="921" v3="922" />+                <face v1="897" v2="922" v3="910" />+                <face v1="910" v2="922" v3="923" />+                <face v1="910" v2="923" v3="911" />+                <face v1="911" v2="923" v3="1665" />+                <face v1="911" v2="1666" v3="1664" />+                <face v1="912" v2="924" v3="925" />+                <face v1="912" v2="925" v3="913" />+                <face v1="913" v2="925" v3="926" />+                <face v1="913" v2="926" v3="914" />+                <face v1="914" v2="926" v3="927" />+                <face v1="914" v2="927" v3="915" />+                <face v1="915" v2="927" v3="928" />+                <face v1="915" v2="928" v3="916" />+                <face v1="916" v2="928" v3="929" />+                <face v1="916" v2="929" v3="917" />+                <face v1="917" v2="929" v3="930" />+                <face v1="917" v2="930" v3="918" />+                <face v1="918" v2="930" v3="931" />+                <face v1="918" v2="931" v3="919" />+                <face v1="919" v2="931" v3="932" />+                <face v1="919" v2="932" v3="920" />+                <face v1="920" v2="932" v3="933" />+                <face v1="920" v2="933" v3="921" />+                <face v1="921" v2="933" v3="934" />+                <face v1="921" v2="934" v3="922" />+                <face v1="922" v2="934" v3="935" />+                <face v1="922" v2="935" v3="923" />+                <face v1="923" v2="935" v3="1668" />+                <face v1="923" v2="1669" v3="1670" />+                <face v1="924" v2="936" v3="937" />+                <face v1="924" v2="937" v3="925" />+                <face v1="925" v2="937" v3="938" />+                <face v1="925" v2="938" v3="926" />+                <face v1="926" v2="938" v3="939" />+                <face v1="926" v2="939" v3="927" />+                <face v1="927" v2="939" v3="940" />+                <face v1="927" v2="940" v3="928" />+                <face v1="928" v2="940" v3="941" />+                <face v1="928" v2="941" v3="929" />+                <face v1="929" v2="941" v3="942" />+                <face v1="929" v2="942" v3="930" />+                <face v1="930" v2="942" v3="943" />+                <face v1="930" v2="943" v3="931" />+                <face v1="931" v2="943" v3="944" />+                <face v1="931" v2="944" v3="932" />+                <face v1="932" v2="944" v3="945" />+                <face v1="932" v2="945" v3="933" />+                <face v1="933" v2="945" v3="946" />+                <face v1="933" v2="946" v3="934" />+                <face v1="934" v2="946" v3="947" />+                <face v1="934" v2="947" v3="935" />+                <face v1="935" v2="947" v3="1671" />+                <face v1="935" v2="1672" v3="1673" />+                <face v1="936" v2="948" v3="949" />+                <face v1="936" v2="949" v3="937" />+                <face v1="937" v2="949" v3="950" />+                <face v1="937" v2="950" v3="938" />+                <face v1="938" v2="950" v3="951" />+                <face v1="938" v2="951" v3="939" />+                <face v1="939" v2="951" v3="952" />+                <face v1="939" v2="952" v3="940" />+                <face v1="940" v2="952" v3="953" />+                <face v1="940" v2="953" v3="941" />+                <face v1="941" v2="953" v3="954" />+                <face v1="941" v2="954" v3="942" />+                <face v1="942" v2="954" v3="955" />+                <face v1="942" v2="955" v3="943" />+                <face v1="943" v2="955" v3="956" />+                <face v1="943" v2="956" v3="944" />+                <face v1="944" v2="956" v3="957" />+                <face v1="944" v2="957" v3="945" />+                <face v1="945" v2="957" v3="958" />+                <face v1="945" v2="958" v3="946" />+                <face v1="946" v2="958" v3="959" />+                <face v1="946" v2="959" v3="947" />+                <face v1="947" v2="959" v3="1674" />+                <face v1="947" v2="1675" v3="1676" />+                <face v1="948" v2="960" v3="961" />+                <face v1="948" v2="961" v3="949" />+                <face v1="949" v2="961" v3="962" />+                <face v1="949" v2="962" v3="950" />+                <face v1="950" v2="962" v3="963" />+                <face v1="950" v2="963" v3="951" />+                <face v1="951" v2="963" v3="964" />+                <face v1="951" v2="964" v3="952" />+                <face v1="952" v2="964" v3="965" />+                <face v1="952" v2="965" v3="953" />+                <face v1="953" v2="965" v3="966" />+                <face v1="953" v2="966" v3="954" />+                <face v1="954" v2="966" v3="967" />+                <face v1="954" v2="967" v3="955" />+                <face v1="955" v2="967" v3="968" />+                <face v1="955" v2="968" v3="956" />+                <face v1="956" v2="968" v3="969" />+                <face v1="956" v2="969" v3="957" />+                <face v1="957" v2="969" v3="970" />+                <face v1="957" v2="970" v3="958" />+                <face v1="958" v2="970" v3="971" />+                <face v1="958" v2="971" v3="959" />+                <face v1="959" v2="971" v3="1677" />+                <face v1="959" v2="1678" v3="1679" />+                <face v1="960" v2="972" v3="973" />+                <face v1="960" v2="973" v3="961" />+                <face v1="961" v2="973" v3="974" />+                <face v1="961" v2="974" v3="962" />+                <face v1="962" v2="974" v3="975" />+                <face v1="962" v2="975" v3="963" />+                <face v1="963" v2="975" v3="976" />+                <face v1="963" v2="976" v3="964" />+                <face v1="964" v2="976" v3="977" />+                <face v1="964" v2="977" v3="965" />+                <face v1="965" v2="977" v3="978" />+                <face v1="965" v2="978" v3="966" />+                <face v1="966" v2="978" v3="979" />+                <face v1="966" v2="979" v3="967" />+                <face v1="967" v2="979" v3="980" />+                <face v1="967" v2="980" v3="968" />+                <face v1="968" v2="980" v3="981" />+                <face v1="968" v2="981" v3="969" />+                <face v1="969" v2="981" v3="982" />+                <face v1="969" v2="982" v3="970" />+                <face v1="970" v2="982" v3="983" />+                <face v1="970" v2="983" v3="971" />+                <face v1="971" v2="983" v3="1680" />+                <face v1="971" v2="1681" v3="1682" />+                <face v1="972" v2="984" v3="985" />+                <face v1="972" v2="985" v3="973" />+                <face v1="973" v2="985" v3="986" />+                <face v1="973" v2="986" v3="974" />+                <face v1="974" v2="986" v3="987" />+                <face v1="974" v2="987" v3="975" />+                <face v1="975" v2="987" v3="988" />+                <face v1="975" v2="988" v3="976" />+                <face v1="976" v2="988" v3="989" />+                <face v1="976" v2="989" v3="977" />+                <face v1="977" v2="989" v3="990" />+                <face v1="977" v2="990" v3="978" />+                <face v1="978" v2="990" v3="991" />+                <face v1="978" v2="991" v3="979" />+                <face v1="979" v2="991" v3="992" />+                <face v1="979" v2="992" v3="980" />+                <face v1="980" v2="992" v3="993" />+                <face v1="980" v2="993" v3="981" />+                <face v1="981" v2="993" v3="994" />+                <face v1="981" v2="994" v3="982" />+                <face v1="982" v2="994" v3="995" />+                <face v1="982" v2="995" v3="983" />+                <face v1="983" v2="995" v3="1683" />+                <face v1="983" v2="1684" v3="1685" />+                <face v1="984" v2="996" v3="997" />+                <face v1="984" v2="997" v3="985" />+                <face v1="985" v2="997" v3="998" />+                <face v1="985" v2="998" v3="986" />+                <face v1="986" v2="998" v3="999" />+                <face v1="986" v2="999" v3="987" />+                <face v1="987" v2="999" v3="1000" />+                <face v1="987" v2="1000" v3="988" />+                <face v1="988" v2="1000" v3="1001" />+                <face v1="988" v2="1001" v3="989" />+                <face v1="989" v2="1001" v3="1002" />+                <face v1="989" v2="1002" v3="990" />+                <face v1="990" v2="1002" v3="1003" />+                <face v1="990" v2="1003" v3="991" />+                <face v1="991" v2="1003" v3="1004" />+                <face v1="991" v2="1004" v3="992" />+                <face v1="992" v2="1004" v3="1005" />+                <face v1="992" v2="1005" v3="993" />+                <face v1="993" v2="1005" v3="1006" />+                <face v1="993" v2="1006" v3="994" />+                <face v1="994" v2="1006" v3="1007" />+                <face v1="994" v2="1007" v3="995" />+                <face v1="995" v2="1007" v3="1686" />+                <face v1="995" v2="1687" v3="1688" />+                <face v1="996" v2="1008" v3="1009" />+                <face v1="996" v2="1009" v3="997" />+                <face v1="997" v2="1009" v3="1010" />+                <face v1="997" v2="1010" v3="998" />+                <face v1="998" v2="1010" v3="1011" />+                <face v1="998" v2="1011" v3="999" />+                <face v1="999" v2="1011" v3="1012" />+                <face v1="999" v2="1012" v3="1000" />+                <face v1="1000" v2="1012" v3="1013" />+                <face v1="1000" v2="1013" v3="1001" />+                <face v1="1001" v2="1013" v3="1014" />+                <face v1="1001" v2="1014" v3="1002" />+                <face v1="1002" v2="1014" v3="1015" />+                <face v1="1002" v2="1015" v3="1003" />+                <face v1="1003" v2="1015" v3="1016" />+                <face v1="1003" v2="1016" v3="1004" />+                <face v1="1004" v2="1016" v3="1017" />+                <face v1="1004" v2="1017" v3="1005" />+                <face v1="1005" v2="1017" v3="1018" />+                <face v1="1005" v2="1018" v3="1006" />+                <face v1="1006" v2="1018" v3="1019" />+                <face v1="1006" v2="1019" v3="1007" />+                <face v1="1007" v2="1019" v3="1689" />+                <face v1="1007" v2="1690" v3="1691" />+                <face v1="1008" v2="1020" v3="1021" />+                <face v1="1008" v2="1021" v3="1009" />+                <face v1="1009" v2="1021" v3="1022" />+                <face v1="1009" v2="1022" v3="1010" />+                <face v1="1010" v2="1022" v3="1023" />+                <face v1="1010" v2="1023" v3="1011" />+                <face v1="1011" v2="1023" v3="1024" />+                <face v1="1011" v2="1024" v3="1012" />+                <face v1="1012" v2="1024" v3="1025" />+                <face v1="1012" v2="1025" v3="1013" />+                <face v1="1013" v2="1025" v3="1026" />+                <face v1="1013" v2="1026" v3="1014" />+                <face v1="1014" v2="1026" v3="1027" />+                <face v1="1014" v2="1027" v3="1015" />+                <face v1="1015" v2="1027" v3="1028" />+                <face v1="1015" v2="1028" v3="1016" />+                <face v1="1016" v2="1028" v3="1029" />+                <face v1="1016" v2="1029" v3="1017" />+                <face v1="1017" v2="1029" v3="1030" />+                <face v1="1017" v2="1030" v3="1018" />+                <face v1="1018" v2="1030" v3="1031" />+                <face v1="1018" v2="1031" v3="1019" />+                <face v1="1019" v2="1031" v3="1692" />+                <face v1="1019" v2="1693" v3="1694" />+                <face v1="1020" v2="1032" v3="1033" />+                <face v1="1020" v2="1033" v3="1021" />+                <face v1="1021" v2="1033" v3="1034" />+                <face v1="1021" v2="1034" v3="1022" />+                <face v1="1022" v2="1034" v3="1035" />+                <face v1="1022" v2="1035" v3="1023" />+                <face v1="1023" v2="1035" v3="1036" />+                <face v1="1023" v2="1036" v3="1024" />+                <face v1="1024" v2="1036" v3="1037" />+                <face v1="1024" v2="1037" v3="1025" />+                <face v1="1025" v2="1037" v3="1038" />+                <face v1="1025" v2="1038" v3="1026" />+                <face v1="1026" v2="1038" v3="1039" />+                <face v1="1026" v2="1039" v3="1027" />+                <face v1="1027" v2="1039" v3="1040" />+                <face v1="1027" v2="1040" v3="1028" />+                <face v1="1028" v2="1040" v3="1041" />+                <face v1="1028" v2="1041" v3="1029" />+                <face v1="1029" v2="1041" v3="1042" />+                <face v1="1029" v2="1042" v3="1030" />+                <face v1="1030" v2="1042" v3="1043" />+                <face v1="1030" v2="1043" v3="1031" />+                <face v1="1031" v2="1043" v3="1695" />+                <face v1="1031" v2="1696" v3="1697" />+                <face v1="1032" v2="1044" v3="1045" />+                <face v1="1032" v2="1045" v3="1033" />+                <face v1="1033" v2="1045" v3="1046" />+                <face v1="1033" v2="1046" v3="1034" />+                <face v1="1034" v2="1046" v3="1047" />+                <face v1="1034" v2="1047" v3="1035" />+                <face v1="1035" v2="1047" v3="1048" />+                <face v1="1035" v2="1048" v3="1036" />+                <face v1="1036" v2="1048" v3="1049" />+                <face v1="1036" v2="1049" v3="1037" />+                <face v1="1037" v2="1049" v3="1050" />+                <face v1="1037" v2="1050" v3="1038" />+                <face v1="1038" v2="1050" v3="1051" />+                <face v1="1038" v2="1051" v3="1039" />+                <face v1="1039" v2="1051" v3="1052" />+                <face v1="1039" v2="1052" v3="1040" />+                <face v1="1040" v2="1052" v3="1053" />+                <face v1="1040" v2="1053" v3="1041" />+                <face v1="1041" v2="1053" v3="1054" />+                <face v1="1041" v2="1054" v3="1042" />+                <face v1="1042" v2="1054" v3="1055" />+                <face v1="1042" v2="1055" v3="1043" />+                <face v1="1043" v2="1055" v3="1698" />+                <face v1="1043" v2="1699" v3="1700" />+                <face v1="1044" v2="1057" v3="1045" />+                <face v1="1045" v2="1057" v3="1058" />+                <face v1="1045" v2="1058" v3="1046" />+                <face v1="1046" v2="1058" v3="1059" />+                <face v1="1046" v2="1059" v3="1047" />+                <face v1="1047" v2="1059" v3="1060" />+                <face v1="1047" v2="1060" v3="1048" />+                <face v1="1048" v2="1060" v3="1061" />+                <face v1="1048" v2="1061" v3="1049" />+                <face v1="1049" v2="1061" v3="1062" />+                <face v1="1049" v2="1062" v3="1050" />+                <face v1="1050" v2="1062" v3="1063" />+                <face v1="1050" v2="1063" v3="1051" />+                <face v1="1051" v2="1063" v3="1064" />+                <face v1="1051" v2="1064" v3="1052" />+                <face v1="1052" v2="1064" v3="1065" />+                <face v1="1052" v2="1065" v3="1053" />+                <face v1="1053" v2="1065" v3="1066" />+                <face v1="1053" v2="1066" v3="1054" />+                <face v1="1054" v2="1066" v3="1067" />+                <face v1="1054" v2="1067" v3="1055" />+                <face v1="1055" v2="1067" v3="1703" />+                <face v1="1703" v2="1068" v3="1069" />+                <face v1="1703" v2="1069" v3="1057" />+                <face v1="1057" v2="1069" v3="1070" />+                <face v1="1057" v2="1070" v3="1058" />+                <face v1="1058" v2="1070" v3="1071" />+                <face v1="1058" v2="1071" v3="1059" />+                <face v1="1059" v2="1071" v3="1072" />+                <face v1="1059" v2="1072" v3="1060" />+                <face v1="1060" v2="1072" v3="1073" />+                <face v1="1060" v2="1073" v3="1061" />+                <face v1="1061" v2="1073" v3="1074" />+                <face v1="1061" v2="1074" v3="1062" />+                <face v1="1062" v2="1074" v3="1075" />+                <face v1="1062" v2="1075" v3="1063" />+                <face v1="1063" v2="1075" v3="1076" />+                <face v1="1063" v2="1076" v3="1064" />+                <face v1="1064" v2="1076" v3="1077" />+                <face v1="1064" v2="1077" v3="1065" />+                <face v1="1065" v2="1077" v3="1078" />+                <face v1="1065" v2="1078" v3="1066" />+                <face v1="1066" v2="1078" v3="1079" />+                <face v1="1066" v2="1079" v3="1067" />+                <face v1="1067" v2="1079" v3="1704" />+                <face v1="1067" v2="1705" v3="1703" />+                <face v1="1068" v2="1081" v3="1069" />+                <face v1="1069" v2="1081" v3="1082" />+                <face v1="1069" v2="1082" v3="1070" />+                <face v1="1070" v2="1082" v3="1083" />+                <face v1="1070" v2="1083" v3="1071" />+                <face v1="1071" v2="1083" v3="1084" />+                <face v1="1071" v2="1084" v3="1072" />+                <face v1="1072" v2="1084" v3="1085" />+                <face v1="1072" v2="1085" v3="1073" />+                <face v1="1073" v2="1085" v3="1074" />+                <face v1="1074" v2="1087" v3="1075" />+                <face v1="1075" v2="1087" v3="1088" />+                <face v1="1075" v2="1088" v3="1076" />+                <face v1="1076" v2="1088" v3="1089" />+                <face v1="1076" v2="1089" v3="1077" />+                <face v1="1077" v2="1089" v3="1090" />+                <face v1="1077" v2="1090" v3="1078" />+                <face v1="1078" v2="1090" v3="1091" />+                <face v1="1078" v2="1091" v3="1079" />+                <face v1="1079" v2="1091" v3="1709" />+                <face v1="1709" v2="1092" v3="1093" />+                <face v1="1709" v2="1093" v3="1081" />+                <face v1="1081" v2="1093" v3="1094" />+                <face v1="1081" v2="1094" v3="1082" />+                <face v1="1082" v2="1094" v3="1095" />+                <face v1="1082" v2="1095" v3="1083" />+                <face v1="1083" v2="1095" v3="1096" />+                <face v1="1083" v2="1096" v3="1084" />+                <face v1="1084" v2="1096" v3="1097" />+                <face v1="1084" v2="1097" v3="1085" />+                <face v1="1085" v2="1097" v3="1098" />+                <face v1="1085" v2="1098" v3="1074" />+                <face v1="1074" v2="1098" v3="1099" />+                <face v1="1074" v2="1099" v3="1087" />+                <face v1="1087" v2="1099" v3="1100" />+                <face v1="1087" v2="1100" v3="1088" />+                <face v1="1088" v2="1100" v3="1101" />+                <face v1="1088" v2="1101" v3="1089" />+                <face v1="1089" v2="1101" v3="1102" />+                <face v1="1089" v2="1102" v3="1090" />+                <face v1="1090" v2="1102" v3="1103" />+                <face v1="1090" v2="1103" v3="1091" />+                <face v1="1091" v2="1103" v3="1710" />+                <face v1="1091" v2="1711" v3="1709" />+                <face v1="1092" v2="1717" v3="1105" />+                <face v1="1092" v2="1105" v3="1093" />+                <face v1="1093" v2="1105" v3="1106" />+                <face v1="1093" v2="1106" v3="1094" />+                <face v1="1094" v2="1106" v3="1107" />+                <face v1="1094" v2="1107" v3="1095" />+                <face v1="1095" v2="1107" v3="1108" />+                <face v1="1095" v2="1108" v3="1096" />+                <face v1="1096" v2="1108" v3="1109" />+                <face v1="1096" v2="1109" v3="1097" />+                <face v1="1097" v2="1109" v3="1110" />+                <face v1="1097" v2="1110" v3="1098" />+                <face v1="1098" v2="1110" v3="1111" />+                <face v1="1098" v2="1111" v3="1099" />+                <face v1="1099" v2="1111" v3="1112" />+                <face v1="1099" v2="1112" v3="1100" />+                <face v1="1100" v2="1112" v3="1113" />+                <face v1="1100" v2="1113" v3="1101" />+                <face v1="1101" v2="1113" v3="1114" />+                <face v1="1101" v2="1114" v3="1102" />+                <face v1="1102" v2="1114" v3="1115" />+                <face v1="1102" v2="1115" v3="1103" />+                <face v1="1103" v2="1115" v3="1717" />+                <face v1="1103" v2="1717" v3="1715" />+                <face v1="1717" v2="1117" v3="1105" />+                <face v1="1105" v2="1117" v3="1118" />+                <face v1="1105" v2="1118" v3="1106" />+                <face v1="1106" v2="1118" v3="1119" />+                <face v1="1106" v2="1119" v3="1107" />+                <face v1="1107" v2="1119" v3="1120" />+                <face v1="1107" v2="1120" v3="1108" />+                <face v1="1108" v2="1120" v3="1121" />+                <face v1="1108" v2="1121" v3="1109" />+                <face v1="1109" v2="1121" v3="1122" />+                <face v1="1109" v2="1122" v3="1110" />+                <face v1="1110" v2="1122" v3="1123" />+                <face v1="1110" v2="1123" v3="1111" />+                <face v1="1111" v2="1123" v3="1124" />+                <face v1="1111" v2="1124" v3="1112" />+                <face v1="1112" v2="1124" v3="1125" />+                <face v1="1112" v2="1125" v3="1113" />+                <face v1="1113" v2="1125" v3="1126" />+                <face v1="1113" v2="1126" v3="1114" />+                <face v1="1114" v2="1126" v3="1127" />+                <face v1="1114" v2="1127" v3="1115" />+                <face v1="1115" v2="1127" v3="1716" />+                <face v1="1116" v2="1128" v3="1129" />+                <face v1="1116" v2="1129" v3="1117" />+                <face v1="1117" v2="1129" v3="1130" />+                <face v1="1117" v2="1130" v3="1118" />+                <face v1="1118" v2="1130" v3="1131" />+                <face v1="1118" v2="1131" v3="1119" />+                <face v1="1119" v2="1131" v3="1132" />+                <face v1="1119" v2="1132" v3="1120" />+                <face v1="1120" v2="1132" v3="1133" />+                <face v1="1120" v2="1133" v3="1121" />+                <face v1="1121" v2="1133" v3="1134" />+                <face v1="1121" v2="1134" v3="1122" />+                <face v1="1122" v2="1134" v3="1135" />+                <face v1="1122" v2="1135" v3="1123" />+                <face v1="1123" v2="1135" v3="1136" />+                <face v1="1123" v2="1136" v3="1124" />+                <face v1="1124" v2="1136" v3="1137" />+                <face v1="1124" v2="1137" v3="1125" />+                <face v1="1125" v2="1137" v3="1138" />+                <face v1="1125" v2="1138" v3="1126" />+                <face v1="1126" v2="1138" v3="1139" />+                <face v1="1126" v2="1139" v3="1127" />+                <face v1="1127" v2="1139" v3="1719" />+                <face v1="1127" v2="1720" v3="1721" />+                <face v1="1128" v2="1140" v3="1141" />+                <face v1="1128" v2="1141" v3="1129" />+                <face v1="1129" v2="1141" v3="1142" />+                <face v1="1129" v2="1142" v3="1130" />+                <face v1="1130" v2="1142" v3="1143" />+                <face v1="1130" v2="1143" v3="1131" />+                <face v1="1131" v2="1143" v3="1144" />+                <face v1="1131" v2="1144" v3="1132" />+                <face v1="1132" v2="1144" v3="1145" />+                <face v1="1132" v2="1145" v3="1133" />+                <face v1="1133" v2="1145" v3="1146" />+                <face v1="1133" v2="1146" v3="1134" />+                <face v1="1134" v2="1146" v3="1147" />+                <face v1="1134" v2="1147" v3="1135" />+                <face v1="1135" v2="1147" v3="1148" />+                <face v1="1135" v2="1148" v3="1136" />+                <face v1="1136" v2="1148" v3="1149" />+                <face v1="1136" v2="1149" v3="1137" />+                <face v1="1137" v2="1149" v3="1150" />+                <face v1="1137" v2="1150" v3="1138" />+                <face v1="1138" v2="1150" v3="1151" />+                <face v1="1138" v2="1151" v3="1139" />+                <face v1="1139" v2="1151" v3="1722" />+                <face v1="1139" v2="1723" v3="1724" />+                <face v1="1140" v2="1152" v3="1153" />+                <face v1="1140" v2="1153" v3="1141" />+                <face v1="1141" v2="1153" v3="1154" />+                <face v1="1141" v2="1154" v3="1142" />+                <face v1="1142" v2="1154" v3="1155" />+                <face v1="1142" v2="1155" v3="1143" />+                <face v1="1143" v2="1155" v3="1156" />+                <face v1="1143" v2="1156" v3="1144" />+                <face v1="1144" v2="1156" v3="1157" />+                <face v1="1144" v2="1157" v3="1145" />+                <face v1="1145" v2="1157" v3="1158" />+                <face v1="1145" v2="1158" v3="1146" />+                <face v1="1146" v2="1158" v3="1159" />+                <face v1="1146" v2="1159" v3="1147" />+                <face v1="1147" v2="1159" v3="1160" />+                <face v1="1147" v2="1160" v3="1148" />+                <face v1="1148" v2="1160" v3="1161" />+                <face v1="1148" v2="1161" v3="1149" />+                <face v1="1149" v2="1161" v3="1162" />+                <face v1="1149" v2="1162" v3="1150" />+                <face v1="1150" v2="1162" v3="1163" />+                <face v1="1150" v2="1163" v3="1151" />+                <face v1="1151" v2="1163" v3="1725" />+                <face v1="1151" v2="1726" v3="1727" />+                <face v1="1152" v2="1164" v3="1165" />+                <face v1="1152" v2="1165" v3="1153" />+                <face v1="1153" v2="1165" v3="1166" />+                <face v1="1153" v2="1166" v3="1154" />+                <face v1="1154" v2="1166" v3="1167" />+                <face v1="1154" v2="1167" v3="1155" />+                <face v1="1155" v2="1167" v3="1168" />+                <face v1="1155" v2="1168" v3="1156" />+                <face v1="1156" v2="1168" v3="1169" />+                <face v1="1156" v2="1169" v3="1157" />+                <face v1="1157" v2="1169" v3="1170" />+                <face v1="1157" v2="1170" v3="1158" />+                <face v1="1158" v2="1170" v3="1171" />+                <face v1="1158" v2="1171" v3="1159" />+                <face v1="1159" v2="1171" v3="1172" />+                <face v1="1159" v2="1172" v3="1160" />+                <face v1="1160" v2="1172" v3="1173" />+                <face v1="1160" v2="1173" v3="1161" />+                <face v1="1161" v2="1173" v3="1174" />+                <face v1="1161" v2="1174" v3="1162" />+                <face v1="1162" v2="1174" v3="1175" />+                <face v1="1162" v2="1175" v3="1163" />+                <face v1="1163" v2="1175" v3="1728" />+                <face v1="1163" v2="1729" v3="1730" />+                <face v1="1164" v2="1176" v3="1177" />+                <face v1="1164" v2="1177" v3="1165" />+                <face v1="1165" v2="1177" v3="1178" />+                <face v1="1165" v2="1178" v3="1166" />+                <face v1="1166" v2="1178" v3="1179" />+                <face v1="1166" v2="1179" v3="1167" />+                <face v1="1167" v2="1179" v3="1180" />+                <face v1="1167" v2="1180" v3="1168" />+                <face v1="1168" v2="1180" v3="1181" />+                <face v1="1168" v2="1181" v3="1169" />+                <face v1="1169" v2="1181" v3="1182" />+                <face v1="1169" v2="1182" v3="1170" />+                <face v1="1170" v2="1182" v3="1183" />+                <face v1="1170" v2="1183" v3="1171" />+                <face v1="1171" v2="1183" v3="1184" />+                <face v1="1171" v2="1184" v3="1172" />+                <face v1="1172" v2="1184" v3="1185" />+                <face v1="1172" v2="1185" v3="1173" />+                <face v1="1173" v2="1185" v3="1186" />+                <face v1="1173" v2="1186" v3="1174" />+                <face v1="1174" v2="1186" v3="1187" />+                <face v1="1174" v2="1187" v3="1175" />+                <face v1="1175" v2="1187" v3="1731" />+                <face v1="1175" v2="1732" v3="1733" />+                <face v1="1176" v2="1188" v3="1189" />+                <face v1="1176" v2="1189" v3="1177" />+                <face v1="1177" v2="1189" v3="1190" />+                <face v1="1177" v2="1190" v3="1178" />+                <face v1="1178" v2="1190" v3="1191" />+                <face v1="1178" v2="1191" v3="1179" />+                <face v1="1179" v2="1191" v3="1192" />+                <face v1="1179" v2="1192" v3="1180" />+                <face v1="1180" v2="1192" v3="1193" />+                <face v1="1180" v2="1193" v3="1181" />+                <face v1="1181" v2="1193" v3="1194" />+                <face v1="1181" v2="1194" v3="1182" />+                <face v1="1182" v2="1194" v3="1195" />+                <face v1="1182" v2="1195" v3="1183" />+                <face v1="1183" v2="1195" v3="1196" />+                <face v1="1183" v2="1196" v3="1184" />+                <face v1="1184" v2="1196" v3="1197" />+                <face v1="1184" v2="1197" v3="1185" />+                <face v1="1185" v2="1197" v3="1198" />+                <face v1="1185" v2="1198" v3="1186" />+                <face v1="1186" v2="1198" v3="1199" />+                <face v1="1186" v2="1199" v3="1187" />+                <face v1="1187" v2="1199" v3="1734" />+                <face v1="1187" v2="1735" v3="1736" />+                <face v1="1188" v2="1200" v3="1201" />+                <face v1="1188" v2="1201" v3="1189" />+                <face v1="1189" v2="1201" v3="1202" />+                <face v1="1189" v2="1202" v3="1190" />+                <face v1="1190" v2="1202" v3="1203" />+                <face v1="1190" v2="1203" v3="1191" />+                <face v1="1191" v2="1203" v3="1204" />+                <face v1="1191" v2="1204" v3="1192" />+                <face v1="1192" v2="1204" v3="1205" />+                <face v1="1192" v2="1205" v3="1193" />+                <face v1="1193" v2="1205" v3="1206" />+                <face v1="1193" v2="1206" v3="1194" />+                <face v1="1194" v2="1206" v3="1207" />+                <face v1="1194" v2="1207" v3="1195" />+                <face v1="1195" v2="1207" v3="1208" />+                <face v1="1195" v2="1208" v3="1196" />+                <face v1="1196" v2="1208" v3="1209" />+                <face v1="1196" v2="1209" v3="1197" />+                <face v1="1197" v2="1209" v3="1210" />+                <face v1="1197" v2="1210" v3="1198" />+                <face v1="1198" v2="1210" v3="1211" />+                <face v1="1198" v2="1211" v3="1199" />+                <face v1="1199" v2="1211" v3="1737" />+                <face v1="1199" v2="1738" v3="1739" />+                <face v1="1200" v2="1212" v3="1213" />+                <face v1="1200" v2="1213" v3="1201" />+                <face v1="1201" v2="1213" v3="1214" />+                <face v1="1201" v2="1214" v3="1202" />+                <face v1="1202" v2="1214" v3="1215" />+                <face v1="1202" v2="1215" v3="1203" />+                <face v1="1203" v2="1215" v3="1216" />+                <face v1="1203" v2="1216" v3="1204" />+                <face v1="1204" v2="1216" v3="1217" />+                <face v1="1204" v2="1217" v3="1205" />+                <face v1="1205" v2="1217" v3="1218" />+                <face v1="1205" v2="1218" v3="1206" />+                <face v1="1206" v2="1218" v3="1219" />+                <face v1="1206" v2="1219" v3="1207" />+                <face v1="1207" v2="1219" v3="1220" />+                <face v1="1207" v2="1220" v3="1208" />+                <face v1="1208" v2="1220" v3="1221" />+                <face v1="1208" v2="1221" v3="1209" />+                <face v1="1209" v2="1221" v3="1222" />+                <face v1="1209" v2="1222" v3="1210" />+                <face v1="1210" v2="1222" v3="1223" />+                <face v1="1210" v2="1223" v3="1211" />+                <face v1="1211" v2="1223" v3="1740" />+                <face v1="1211" v2="1741" v3="1742" />+                <face v1="1212" v2="1224" v3="1225" />+                <face v1="1212" v2="1225" v3="1213" />+                <face v1="1213" v2="1225" v3="1226" />+                <face v1="1213" v2="1226" v3="1214" />+                <face v1="1214" v2="1226" v3="1227" />+                <face v1="1214" v2="1227" v3="1215" />+                <face v1="1215" v2="1227" v3="1228" />+                <face v1="1215" v2="1228" v3="1216" />+                <face v1="1216" v2="1228" v3="1229" />+                <face v1="1216" v2="1229" v3="1217" />+                <face v1="1217" v2="1229" v3="1230" />+                <face v1="1217" v2="1230" v3="1218" />+                <face v1="1218" v2="1230" v3="1231" />+                <face v1="1218" v2="1231" v3="1219" />+                <face v1="1219" v2="1231" v3="1232" />+                <face v1="1219" v2="1232" v3="1220" />+                <face v1="1220" v2="1232" v3="1233" />+                <face v1="1220" v2="1233" v3="1221" />+                <face v1="1221" v2="1233" v3="1234" />+                <face v1="1221" v2="1234" v3="1222" />+                <face v1="1222" v2="1234" v3="1235" />+                <face v1="1222" v2="1235" v3="1223" />+                <face v1="1223" v2="1235" v3="1743" />+                <face v1="1223" v2="1744" v3="1745" />+                <face v1="1224" v2="1236" v3="1237" />+                <face v1="1224" v2="1237" v3="1225" />+                <face v1="1225" v2="1237" v3="1238" />+                <face v1="1225" v2="1238" v3="1226" />+                <face v1="1226" v2="1238" v3="1239" />+                <face v1="1226" v2="1239" v3="1227" />+                <face v1="1227" v2="1239" v3="1240" />+                <face v1="1227" v2="1240" v3="1228" />+                <face v1="1228" v2="1240" v3="1241" />+                <face v1="1228" v2="1241" v3="1229" />+                <face v1="1229" v2="1241" v3="1242" />+                <face v1="1229" v2="1242" v3="1230" />+                <face v1="1230" v2="1242" v3="1243" />+                <face v1="1230" v2="1243" v3="1231" />+                <face v1="1231" v2="1243" v3="1244" />+                <face v1="1231" v2="1244" v3="1232" />+                <face v1="1232" v2="1244" v3="1245" />+                <face v1="1232" v2="1245" v3="1233" />+                <face v1="1233" v2="1245" v3="1246" />+                <face v1="1233" v2="1246" v3="1234" />+                <face v1="1234" v2="1246" v3="1247" />+                <face v1="1234" v2="1247" v3="1235" />+                <face v1="1235" v2="1247" v3="1746" />+                <face v1="1235" v2="1747" v3="1748" />+                <face v1="1236" v2="1248" v3="1249" />+                <face v1="1236" v2="1249" v3="1237" />+                <face v1="1237" v2="1249" v3="1250" />+                <face v1="1237" v2="1250" v3="1238" />+                <face v1="1238" v2="1250" v3="1251" />+                <face v1="1238" v2="1251" v3="1239" />+                <face v1="1239" v2="1251" v3="1252" />+                <face v1="1239" v2="1252" v3="1240" />+                <face v1="1240" v2="1252" v3="1289" />+                <face v1="1240" v2="1289" v3="1241" />+                <face v1="1241" v2="1289" v3="1266" />+                <face v1="1241" v2="1266" v3="1242" />+                <face v1="1242" v2="1266" v3="1255" />+                <face v1="1242" v2="1255" v3="1243" />+                <face v1="1243" v2="1255" v3="1256" />+                <face v1="1243" v2="1256" v3="1244" />+                <face v1="1244" v2="1256" v3="1257" />+                <face v1="1244" v2="1257" v3="1245" />+                <face v1="1245" v2="1257" v3="1258" />+                <face v1="1245" v2="1258" v3="1246" />+                <face v1="1246" v2="1258" v3="1283" />+                <face v1="1246" v2="1283" v3="1247" />+                <face v1="1247" v2="1283" v3="1749" />+                <face v1="1247" v2="1750" v3="1751" />+                <face v1="1248" v2="1260" v3="1249" />+                <face v1="1249" v2="1262" v3="1250" />+                <face v1="1250" v2="1262" v3="1263" />+                <face v1="1250" v2="1263" v3="1251" />+                <face v1="1251" v2="1263" v3="1252" />+                <face v1="1266" v2="1267" v3="1255" />+                <face v1="1255" v2="1267" v3="1268" />+                <face v1="1255" v2="1268" v3="1256" />+                <face v1="1256" v2="1268" v3="1269" />+                <face v1="1256" v2="1269" v3="1257" />+                <face v1="1257" v2="1269" v3="1294" />+                <face v1="1257" v2="1294" v3="1258" />+                <face v1="1258" v2="1294" v3="1283" />+                <face v1="1283" v2="1753" v3="1754" />+                <face v1="1260" v2="1273" v3="1249" />+                <face v1="1249" v2="1273" v3="1262" />+                <face v1="1263" v2="1276" v3="1252" />+                <face v1="1252" v2="1276" v3="1289" />+                <face v1="1289" v2="1278" v3="1266" />+                <face v1="1266" v2="1278" v3="1267" />+                <face v1="1267" v2="1280" v3="1268" />+                <face v1="1268" v2="1280" v3="1269" />+                <face v1="1757" v2="1762" v3="1273" />+                <face v1="1273" v2="1286" v3="1262" />+                <face v1="1262" v2="1286" v3="1263" />+                <face v1="1278" v2="1291" v3="1267" />+                <face v1="1267" v2="1291" v3="1280" />+                <face v1="1294" v2="1331" v3="1283" />+                <face v1="1283" v2="1331" v3="1762" />+                <face v1="1283" v2="1762" v3="1757" />+                <face v1="1762" v2="1297" v3="1273" />+                <face v1="1273" v2="1297" v3="1286" />+                <face v1="1280" v2="1305" v3="1269" />+                <face v1="1269" v2="1305" v3="1294" />+                <face v1="1286" v2="1311" v3="1263" />+                <face v1="1263" v2="1311" v3="1276" />+                <face v1="1291" v2="1316" v3="1280" />+                <face v1="1280" v2="1316" v3="1305" />+                <face v1="1297" v2="1334" v3="1286" />+                <face v1="1286" v2="1334" v3="1311" />+                <face v1="1766" v2="1357" v3="1297" />+                <face v1="1297" v2="1357" v3="1334" />+                <face v1="1276" v2="1337" v3="1289" />+                <face v1="1289" v2="1337" v3="1278" />+                <face v1="1357" v2="1394" v3="1334" />+                <face v1="1334" v2="1394" v3="1359" />+                <face v1="1334" v2="1359" v3="1311" />+                <face v1="1311" v2="1359" v3="1348" />+                <face v1="1311" v2="1348" v3="1276" />+                <face v1="1276" v2="1348" v3="1337" />+                <face v1="1316" v2="1353" v3="1305" />+                <face v1="1305" v2="1353" v3="1294" />+                <face v1="1359" v2="1372" v3="1348" />+                <face v1="1348" v2="1372" v3="1361" />+                <face v1="1348" v2="1361" v3="1337" />+                <face v1="1337" v2="1361" v3="1278" />+                <face v1="1291" v2="1364" v3="1316" />+                <face v1="1316" v2="1364" v3="1353" />+                <face v1="1353" v2="1366" v3="1294" />+                <face v1="1294" v2="1366" v3="1367" />+                <face v1="1294" v2="1367" v3="1331" />+                <face v1="1331" v2="1367" v3="1766" />+                <face v1="1766" v2="1368" v3="1357" />+                <face v1="1394" v2="1383" v3="1359" />+                <face v1="1359" v2="1383" v3="1372" />+                <face v1="1372" v2="1385" v3="1361" />+                <face v1="1361" v2="1385" v3="1374" />+                <face v1="1361" v2="1374" v3="1278" />+                <face v1="1278" v2="1374" v3="1291" />+                <face v1="1364" v2="1377" v3="1353" />+                <face v1="1353" v2="1377" v3="1366" />+                <face v1="1367" v2="1780" v3="1766" />+                <face v1="1383" v2="1396" v3="1372" />+                <face v1="1372" v2="1396" v3="1385" />+                <face v1="1377" v2="1390" v3="1366" />+                <face v1="1366" v2="1390" v3="1391" />+                <face v1="1366" v2="1391" v3="1367" />+                <face v1="1367" v2="1391" v3="1784" />+                <face v1="1784" v2="1392" v3="1393" />+                <face v1="1784" v2="1393" v3="1357" />+                <face v1="1357" v2="1393" v3="1394" />+                <face v1="1394" v2="1395" v3="1383" />+                <face v1="1383" v2="1395" v3="1396" />+                <face v1="1396" v2="1397" v3="1385" />+                <face v1="1385" v2="1397" v3="1398" />+                <face v1="1385" v2="1398" v3="1374" />+                <face v1="1374" v2="1398" v3="1399" />+                <face v1="1374" v2="1399" v3="1291" />+                <face v1="1291" v2="1399" v3="1400" />+                <face v1="1291" v2="1400" v3="1364" />+                <face v1="1364" v2="1400" v3="1401" />+                <face v1="1364" v2="1401" v3="1377" />+                <face v1="1377" v2="1401" v3="1402" />+                <face v1="1377" v2="1402" v3="1390" />+                <face v1="1390" v2="1402" v3="1403" />+                <face v1="1390" v2="1403" v3="1391" />+                <face v1="1391" v2="1403" v3="1785" />+                <face v1="1391" v2="1786" v3="1784" />+                <face v1="1392" v2="1404" v3="1405" />+                <face v1="1392" v2="1405" v3="1393" />+                <face v1="1393" v2="1405" v3="1406" />+                <face v1="1393" v2="1406" v3="1394" />+                <face v1="1394" v2="1406" v3="1407" />+                <face v1="1394" v2="1407" v3="1395" />+                <face v1="1395" v2="1407" v3="1408" />+                <face v1="1395" v2="1408" v3="1396" />+                <face v1="1396" v2="1408" v3="1409" />+                <face v1="1396" v2="1409" v3="1397" />+                <face v1="1397" v2="1409" v3="1410" />+                <face v1="1397" v2="1410" v3="1398" />+                <face v1="1398" v2="1410" v3="1411" />+                <face v1="1398" v2="1411" v3="1399" />+                <face v1="1399" v2="1411" v3="1412" />+                <face v1="1399" v2="1412" v3="1400" />+                <face v1="1400" v2="1412" v3="1413" />+                <face v1="1400" v2="1413" v3="1401" />+                <face v1="1401" v2="1413" v3="1414" />+                <face v1="1401" v2="1414" v3="1402" />+                <face v1="1402" v2="1414" v3="1415" />+                <face v1="1402" v2="1415" v3="1403" />+                <face v1="1403" v2="1415" v3="1788" />+                <face v1="1403" v2="1789" v3="1790" />+                <face v1="1404" v2="1416" v3="1417" />+                <face v1="1404" v2="1417" v3="1405" />+                <face v1="1405" v2="1417" v3="1418" />+                <face v1="1405" v2="1418" v3="1406" />+                <face v1="1406" v2="1418" v3="1419" />+                <face v1="1406" v2="1419" v3="1407" />+                <face v1="1407" v2="1419" v3="1420" />+                <face v1="1407" v2="1420" v3="1408" />+                <face v1="1408" v2="1420" v3="1421" />+                <face v1="1408" v2="1421" v3="1409" />+                <face v1="1409" v2="1421" v3="1422" />+                <face v1="1409" v2="1422" v3="1410" />+                <face v1="1410" v2="1422" v3="1423" />+                <face v1="1410" v2="1423" v3="1411" />+                <face v1="1411" v2="1423" v3="1424" />+                <face v1="1411" v2="1424" v3="1412" />+                <face v1="1412" v2="1424" v3="1425" />+                <face v1="1412" v2="1425" v3="1413" />+                <face v1="1413" v2="1425" v3="1426" />+                <face v1="1413" v2="1426" v3="1414" />+                <face v1="1414" v2="1426" v3="1427" />+                <face v1="1414" v2="1427" v3="1415" />+                <face v1="1415" v2="1427" v3="1791" />+                <face v1="1415" v2="1792" v3="1793" />+                <face v1="1416" v2="1428" v3="1429" />+                <face v1="1416" v2="1429" v3="1417" />+                <face v1="1417" v2="1429" v3="1430" />+                <face v1="1417" v2="1430" v3="1418" />+                <face v1="1418" v2="1430" v3="1431" />+                <face v1="1418" v2="1431" v3="1419" />+                <face v1="1419" v2="1431" v3="1432" />+                <face v1="1419" v2="1432" v3="1420" />+                <face v1="1420" v2="1432" v3="1433" />+                <face v1="1420" v2="1433" v3="1421" />+                <face v1="1421" v2="1433" v3="1434" />+                <face v1="1421" v2="1434" v3="1422" />+                <face v1="1422" v2="1434" v3="1435" />+                <face v1="1422" v2="1435" v3="1423" />+                <face v1="1423" v2="1435" v3="1436" />+                <face v1="1423" v2="1436" v3="1424" />+                <face v1="1424" v2="1436" v3="1437" />+                <face v1="1424" v2="1437" v3="1425" />+                <face v1="1425" v2="1437" v3="1438" />+                <face v1="1425" v2="1438" v3="1426" />+                <face v1="1426" v2="1438" v3="1439" />+                <face v1="1426" v2="1439" v3="1427" />+                <face v1="1427" v2="1439" v3="1794" />+                <face v1="1427" v2="1795" v3="1796" />+                <face v1="1428" v2="1797" v3="1798" />+                <face v1="1428" v2="1799" v3="1429" />+                <face v1="1429" v2="1800" v3="1801" />+                <face v1="1429" v2="1802" v3="1430" />+                <face v1="1430" v2="1803" v3="1804" />+                <face v1="1430" v2="1805" v3="1431" />+                <face v1="1431" v2="1806" v3="1807" />+                <face v1="1431" v2="1808" v3="1432" />+                <face v1="1432" v2="1809" v3="1810" />+                <face v1="1432" v2="1811" v3="1433" />+                <face v1="1433" v2="1812" v3="1813" />+                <face v1="1433" v2="1814" v3="1434" />+                <face v1="1434" v2="1815" v3="1816" />+                <face v1="1434" v2="1817" v3="1435" />+                <face v1="1435" v2="1818" v3="1819" />+                <face v1="1435" v2="1820" v3="1436" />+                <face v1="1436" v2="1821" v3="1822" />+                <face v1="1436" v2="1823" v3="1437" />+                <face v1="1437" v2="1824" v3="1825" />+                <face v1="1437" v2="1826" v3="1438" />+                <face v1="1438" v2="1827" v3="1828" />+                <face v1="1438" v2="1829" v3="1439" />+                <face v1="1439" v2="1830" v3="1831" />+                <face v1="1439" v2="1832" v3="1833" />+            </lodfacelist>+        </lodgenerated>+        <lodgenerated value="1000">+            <lodfacelist submeshindex="0" numfaces="1844">+                <face v1="0" v2="12" v3="25" />+                <face v1="0" v2="25" v3="1" />+                <face v1="1" v2="25" v3="14" />+                <face v1="1" v2="14" v3="2" />+                <face v1="2" v2="14" v3="15" />+                <face v1="2" v2="15" v3="3" />+                <face v1="3" v2="15" v3="16" />+                <face v1="3" v2="16" v3="4" />+                <face v1="4" v2="16" v3="17" />+                <face v1="4" v2="17" v3="5" />+                <face v1="5" v2="17" v3="18" />+                <face v1="5" v2="18" v3="6" />+                <face v1="6" v2="18" v3="19" />+                <face v1="6" v2="19" v3="7" />+                <face v1="7" v2="19" v3="20" />+                <face v1="7" v2="20" v3="8" />+                <face v1="8" v2="20" v3="21" />+                <face v1="8" v2="21" v3="9" />+                <face v1="9" v2="21" v3="22" />+                <face v1="9" v2="22" v3="10" />+                <face v1="10" v2="22" v3="23" />+                <face v1="10" v2="23" v3="11" />+                <face v1="11" v2="23" v3="1440" />+                <face v1="11" v2="1441" v3="1442" />+                <face v1="12" v2="24" v3="25" />+                <face v1="25" v2="26" v3="14" />+                <face v1="14" v2="26" v3="27" />+                <face v1="14" v2="27" v3="15" />+                <face v1="15" v2="27" v3="28" />+                <face v1="15" v2="28" v3="16" />+                <face v1="16" v2="28" v3="29" />+                <face v1="16" v2="29" v3="17" />+                <face v1="17" v2="29" v3="30" />+                <face v1="17" v2="30" v3="18" />+                <face v1="18" v2="30" v3="19" />+                <face v1="19" v2="32" v3="20" />+                <face v1="20" v2="32" v3="33" />+                <face v1="20" v2="33" v3="21" />+                <face v1="21" v2="33" v3="34" />+                <face v1="21" v2="34" v3="22" />+                <face v1="22" v2="34" v3="35" />+                <face v1="22" v2="35" v3="23" />+                <face v1="23" v2="35" v3="1443" />+                <face v1="23" v2="1444" v3="1445" />+                <face v1="24" v2="36" v3="37" />+                <face v1="24" v2="37" v3="25" />+                <face v1="25" v2="37" v3="38" />+                <face v1="25" v2="38" v3="26" />+                <face v1="26" v2="38" v3="39" />+                <face v1="26" v2="39" v3="27" />+                <face v1="27" v2="39" v3="40" />+                <face v1="27" v2="40" v3="28" />+                <face v1="28" v2="40" v3="41" />+                <face v1="28" v2="41" v3="29" />+                <face v1="29" v2="41" v3="42" />+                <face v1="29" v2="42" v3="30" />+                <face v1="30" v2="42" v3="43" />+                <face v1="30" v2="43" v3="19" />+                <face v1="19" v2="43" v3="44" />+                <face v1="19" v2="44" v3="32" />+                <face v1="32" v2="44" v3="45" />+                <face v1="32" v2="45" v3="33" />+                <face v1="33" v2="45" v3="46" />+                <face v1="33" v2="46" v3="34" />+                <face v1="34" v2="46" v3="47" />+                <face v1="34" v2="47" v3="35" />+                <face v1="35" v2="47" v3="1446" />+                <face v1="35" v2="1447" v3="1448" />+                <face v1="36" v2="48" v3="49" />+                <face v1="36" v2="49" v3="37" />+                <face v1="37" v2="49" v3="50" />+                <face v1="37" v2="50" v3="38" />+                <face v1="38" v2="50" v3="51" />+                <face v1="38" v2="51" v3="39" />+                <face v1="39" v2="51" v3="52" />+                <face v1="39" v2="52" v3="40" />+                <face v1="40" v2="52" v3="53" />+                <face v1="40" v2="53" v3="41" />+                <face v1="41" v2="53" v3="42" />+                <face v1="42" v2="55" v3="43" />+                <face v1="43" v2="55" v3="56" />+                <face v1="43" v2="56" v3="44" />+                <face v1="44" v2="56" v3="57" />+                <face v1="44" v2="57" v3="45" />+                <face v1="45" v2="57" v3="58" />+                <face v1="45" v2="58" v3="46" />+                <face v1="46" v2="58" v3="59" />+                <face v1="46" v2="59" v3="47" />+                <face v1="47" v2="59" v3="1449" />+                <face v1="47" v2="1450" v3="1451" />+                <face v1="48" v2="60" v3="61" />+                <face v1="48" v2="61" v3="49" />+                <face v1="49" v2="61" v3="62" />+                <face v1="49" v2="62" v3="50" />+                <face v1="50" v2="62" v3="63" />+                <face v1="50" v2="63" v3="51" />+                <face v1="51" v2="63" v3="64" />+                <face v1="51" v2="64" v3="52" />+                <face v1="52" v2="64" v3="65" />+                <face v1="52" v2="65" v3="53" />+                <face v1="53" v2="65" v3="66" />+                <face v1="53" v2="66" v3="42" />+                <face v1="42" v2="66" v3="67" />+                <face v1="42" v2="67" v3="55" />+                <face v1="55" v2="67" v3="68" />+                <face v1="55" v2="68" v3="56" />+                <face v1="56" v2="68" v3="69" />+                <face v1="56" v2="69" v3="57" />+                <face v1="57" v2="69" v3="70" />+                <face v1="57" v2="70" v3="58" />+                <face v1="58" v2="70" v3="71" />+                <face v1="58" v2="71" v3="59" />+                <face v1="59" v2="71" v3="1452" />+                <face v1="59" v2="1453" v3="1454" />+                <face v1="60" v2="73" v3="61" />+                <face v1="61" v2="73" v3="74" />+                <face v1="61" v2="74" v3="62" />+                <face v1="62" v2="74" v3="75" />+                <face v1="62" v2="75" v3="63" />+                <face v1="63" v2="75" v3="76" />+                <face v1="63" v2="76" v3="64" />+                <face v1="64" v2="76" v3="77" />+                <face v1="64" v2="77" v3="65" />+                <face v1="65" v2="77" v3="66" />+                <face v1="66" v2="79" v3="67" />+                <face v1="67" v2="79" v3="80" />+                <face v1="67" v2="80" v3="68" />+                <face v1="68" v2="80" v3="81" />+                <face v1="68" v2="81" v3="69" />+                <face v1="69" v2="81" v3="82" />+                <face v1="69" v2="82" v3="70" />+                <face v1="70" v2="82" v3="83" />+                <face v1="70" v2="83" v3="71" />+                <face v1="71" v2="83" v3="1457" />+                <face v1="1457" v2="84" v3="85" />+                <face v1="1457" v2="85" v3="73" />+                <face v1="73" v2="85" v3="86" />+                <face v1="73" v2="86" v3="74" />+                <face v1="74" v2="86" v3="87" />+                <face v1="74" v2="87" v3="75" />+                <face v1="75" v2="87" v3="88" />+                <face v1="75" v2="88" v3="76" />+                <face v1="76" v2="88" v3="89" />+                <face v1="76" v2="89" v3="77" />+                <face v1="77" v2="89" v3="90" />+                <face v1="77" v2="90" v3="66" />+                <face v1="66" v2="90" v3="91" />+                <face v1="66" v2="91" v3="79" />+                <face v1="79" v2="91" v3="92" />+                <face v1="79" v2="92" v3="80" />+                <face v1="80" v2="92" v3="93" />+                <face v1="80" v2="93" v3="81" />+                <face v1="81" v2="93" v3="94" />+                <face v1="81" v2="94" v3="82" />+                <face v1="82" v2="94" v3="95" />+                <face v1="82" v2="95" v3="83" />+                <face v1="83" v2="95" v3="1458" />+                <face v1="83" v2="1459" v3="1457" />+                <face v1="84" v2="97" v3="85" />+                <face v1="85" v2="97" v3="98" />+                <face v1="85" v2="98" v3="86" />+                <face v1="86" v2="98" v3="99" />+                <face v1="86" v2="99" v3="87" />+                <face v1="87" v2="99" v3="100" />+                <face v1="87" v2="100" v3="88" />+                <face v1="88" v2="100" v3="101" />+                <face v1="88" v2="101" v3="89" />+                <face v1="89" v2="101" v3="90" />+                <face v1="90" v2="103" v3="91" />+                <face v1="91" v2="103" v3="104" />+                <face v1="91" v2="104" v3="92" />+                <face v1="92" v2="104" v3="105" />+                <face v1="92" v2="105" v3="93" />+                <face v1="93" v2="105" v3="106" />+                <face v1="93" v2="106" v3="94" />+                <face v1="94" v2="106" v3="107" />+                <face v1="94" v2="107" v3="95" />+                <face v1="95" v2="107" v3="1463" />+                <face v1="1463" v2="108" v3="109" />+                <face v1="1463" v2="109" v3="97" />+                <face v1="97" v2="109" v3="110" />+                <face v1="97" v2="110" v3="98" />+                <face v1="98" v2="110" v3="111" />+                <face v1="98" v2="111" v3="99" />+                <face v1="99" v2="111" v3="112" />+                <face v1="99" v2="112" v3="100" />+                <face v1="100" v2="112" v3="113" />+                <face v1="100" v2="113" v3="101" />+                <face v1="101" v2="113" v3="114" />+                <face v1="101" v2="114" v3="90" />+                <face v1="90" v2="114" v3="115" />+                <face v1="90" v2="115" v3="103" />+                <face v1="103" v2="115" v3="116" />+                <face v1="103" v2="116" v3="104" />+                <face v1="104" v2="116" v3="117" />+                <face v1="104" v2="117" v3="105" />+                <face v1="105" v2="117" v3="118" />+                <face v1="105" v2="118" v3="106" />+                <face v1="106" v2="118" v3="119" />+                <face v1="106" v2="119" v3="107" />+                <face v1="107" v2="119" v3="1464" />+                <face v1="107" v2="1465" v3="1463" />+                <face v1="108" v2="121" v3="109" />+                <face v1="109" v2="121" v3="122" />+                <face v1="109" v2="122" v3="110" />+                <face v1="110" v2="122" v3="123" />+                <face v1="110" v2="123" v3="111" />+                <face v1="111" v2="123" v3="124" />+                <face v1="111" v2="124" v3="112" />+                <face v1="112" v2="124" v3="125" />+                <face v1="112" v2="125" v3="113" />+                <face v1="113" v2="125" v3="114" />+                <face v1="114" v2="127" v3="115" />+                <face v1="115" v2="127" v3="128" />+                <face v1="115" v2="128" v3="116" />+                <face v1="116" v2="128" v3="129" />+                <face v1="116" v2="129" v3="117" />+                <face v1="117" v2="129" v3="130" />+                <face v1="117" v2="130" v3="118" />+                <face v1="118" v2="130" v3="131" />+                <face v1="118" v2="131" v3="119" />+                <face v1="119" v2="131" v3="1469" />+                <face v1="1469" v2="133" v3="121" />+                <face v1="121" v2="133" v3="134" />+                <face v1="121" v2="134" v3="122" />+                <face v1="122" v2="134" v3="135" />+                <face v1="122" v2="135" v3="123" />+                <face v1="123" v2="135" v3="136" />+                <face v1="123" v2="136" v3="124" />+                <face v1="124" v2="136" v3="137" />+                <face v1="124" v2="137" v3="125" />+                <face v1="125" v2="137" v3="138" />+                <face v1="125" v2="138" v3="114" />+                <face v1="114" v2="138" v3="139" />+                <face v1="114" v2="139" v3="127" />+                <face v1="127" v2="139" v3="140" />+                <face v1="127" v2="140" v3="128" />+                <face v1="128" v2="140" v3="141" />+                <face v1="128" v2="141" v3="129" />+                <face v1="129" v2="141" v3="142" />+                <face v1="129" v2="142" v3="130" />+                <face v1="130" v2="142" v3="143" />+                <face v1="130" v2="143" v3="131" />+                <face v1="131" v2="143" v3="1469" />+                <face v1="1469" v2="1477" v3="145" />+                <face v1="1469" v2="145" v3="133" />+                <face v1="133" v2="145" v3="146" />+                <face v1="133" v2="146" v3="134" />+                <face v1="134" v2="146" v3="147" />+                <face v1="134" v2="147" v3="135" />+                <face v1="135" v2="147" v3="148" />+                <face v1="135" v2="148" v3="136" />+                <face v1="136" v2="148" v3="149" />+                <face v1="136" v2="149" v3="137" />+                <face v1="137" v2="149" v3="138" />+                <face v1="138" v2="151" v3="139" />+                <face v1="139" v2="151" v3="152" />+                <face v1="139" v2="152" v3="140" />+                <face v1="140" v2="152" v3="153" />+                <face v1="140" v2="153" v3="141" />+                <face v1="141" v2="153" v3="154" />+                <face v1="141" v2="154" v3="142" />+                <face v1="142" v2="154" v3="155" />+                <face v1="142" v2="155" v3="143" />+                <face v1="143" v2="155" v3="1477" />+                <face v1="143" v2="1477" v3="1469" />+                <face v1="1477" v2="157" v3="145" />+                <face v1="145" v2="157" v3="158" />+                <face v1="145" v2="158" v3="146" />+                <face v1="146" v2="158" v3="159" />+                <face v1="146" v2="159" v3="147" />+                <face v1="147" v2="159" v3="160" />+                <face v1="147" v2="160" v3="148" />+                <face v1="148" v2="160" v3="161" />+                <face v1="148" v2="161" v3="149" />+                <face v1="149" v2="161" v3="162" />+                <face v1="149" v2="162" v3="138" />+                <face v1="138" v2="162" v3="163" />+                <face v1="138" v2="163" v3="151" />+                <face v1="151" v2="163" v3="164" />+                <face v1="151" v2="164" v3="152" />+                <face v1="152" v2="164" v3="165" />+                <face v1="152" v2="165" v3="153" />+                <face v1="153" v2="165" v3="166" />+                <face v1="153" v2="166" v3="154" />+                <face v1="154" v2="166" v3="167" />+                <face v1="154" v2="167" v3="155" />+                <face v1="155" v2="167" v3="1476" />+                <face v1="156" v2="1483" v3="169" />+                <face v1="156" v2="169" v3="157" />+                <face v1="157" v2="169" v3="170" />+                <face v1="157" v2="170" v3="158" />+                <face v1="158" v2="170" v3="171" />+                <face v1="158" v2="171" v3="159" />+                <face v1="159" v2="171" v3="172" />+                <face v1="159" v2="172" v3="160" />+                <face v1="160" v2="172" v3="173" />+                <face v1="160" v2="173" v3="161" />+                <face v1="161" v2="173" v3="162" />+                <face v1="162" v2="175" v3="163" />+                <face v1="163" v2="175" v3="176" />+                <face v1="163" v2="176" v3="164" />+                <face v1="164" v2="176" v3="177" />+                <face v1="164" v2="177" v3="165" />+                <face v1="165" v2="177" v3="178" />+                <face v1="165" v2="178" v3="166" />+                <face v1="166" v2="178" v3="179" />+                <face v1="166" v2="179" v3="167" />+                <face v1="167" v2="179" v3="1483" />+                <face v1="167" v2="1483" v3="1481" />+                <face v1="1483" v2="181" v3="169" />+                <face v1="169" v2="181" v3="182" />+                <face v1="169" v2="182" v3="170" />+                <face v1="170" v2="182" v3="183" />+                <face v1="170" v2="183" v3="171" />+                <face v1="171" v2="183" v3="184" />+                <face v1="171" v2="184" v3="172" />+                <face v1="172" v2="184" v3="185" />+                <face v1="172" v2="185" v3="173" />+                <face v1="173" v2="185" v3="186" />+                <face v1="173" v2="186" v3="162" />+                <face v1="162" v2="186" v3="187" />+                <face v1="162" v2="187" v3="175" />+                <face v1="175" v2="187" v3="188" />+                <face v1="175" v2="188" v3="176" />+                <face v1="176" v2="188" v3="189" />+                <face v1="176" v2="189" v3="177" />+                <face v1="177" v2="189" v3="190" />+                <face v1="177" v2="190" v3="178" />+                <face v1="178" v2="190" v3="191" />+                <face v1="178" v2="191" v3="179" />+                <face v1="179" v2="191" v3="1482" />+                <face v1="180" v2="1489" v3="193" />+                <face v1="180" v2="193" v3="181" />+                <face v1="181" v2="193" v3="194" />+                <face v1="181" v2="194" v3="182" />+                <face v1="182" v2="194" v3="195" />+                <face v1="182" v2="195" v3="183" />+                <face v1="183" v2="195" v3="196" />+                <face v1="183" v2="196" v3="184" />+                <face v1="184" v2="196" v3="197" />+                <face v1="184" v2="197" v3="185" />+                <face v1="185" v2="197" v3="198" />+                <face v1="185" v2="198" v3="186" />+                <face v1="186" v2="198" v3="199" />+                <face v1="186" v2="199" v3="187" />+                <face v1="187" v2="199" v3="200" />+                <face v1="187" v2="200" v3="188" />+                <face v1="188" v2="200" v3="201" />+                <face v1="188" v2="201" v3="189" />+                <face v1="189" v2="201" v3="202" />+                <face v1="189" v2="202" v3="190" />+                <face v1="190" v2="202" v3="203" />+                <face v1="190" v2="203" v3="191" />+                <face v1="191" v2="203" v3="1489" />+                <face v1="191" v2="1489" v3="1487" />+                <face v1="1489" v2="205" v3="193" />+                <face v1="193" v2="205" v3="206" />+                <face v1="193" v2="206" v3="194" />+                <face v1="194" v2="206" v3="207" />+                <face v1="194" v2="207" v3="195" />+                <face v1="195" v2="207" v3="208" />+                <face v1="195" v2="208" v3="196" />+                <face v1="196" v2="208" v3="209" />+                <face v1="196" v2="209" v3="197" />+                <face v1="197" v2="209" v3="210" />+                <face v1="197" v2="210" v3="198" />+                <face v1="198" v2="210" v3="211" />+                <face v1="198" v2="211" v3="199" />+                <face v1="199" v2="211" v3="212" />+                <face v1="199" v2="212" v3="200" />+                <face v1="200" v2="212" v3="213" />+                <face v1="200" v2="213" v3="201" />+                <face v1="201" v2="213" v3="214" />+                <face v1="201" v2="214" v3="202" />+                <face v1="202" v2="214" v3="215" />+                <face v1="202" v2="215" v3="203" />+                <face v1="203" v2="215" v3="1488" />+                <face v1="204" v2="216" v3="217" />+                <face v1="204" v2="217" v3="205" />+                <face v1="205" v2="217" v3="218" />+                <face v1="205" v2="218" v3="206" />+                <face v1="206" v2="218" v3="219" />+                <face v1="206" v2="219" v3="207" />+                <face v1="207" v2="219" v3="220" />+                <face v1="207" v2="220" v3="208" />+                <face v1="208" v2="220" v3="209" />+                <face v1="209" v2="222" v3="210" />+                <face v1="210" v2="222" v3="223" />+                <face v1="210" v2="223" v3="211" />+                <face v1="211" v2="223" v3="224" />+                <face v1="211" v2="224" v3="212" />+                <face v1="212" v2="224" v3="225" />+                <face v1="212" v2="225" v3="213" />+                <face v1="213" v2="225" v3="226" />+                <face v1="213" v2="226" v3="214" />+                <face v1="214" v2="226" v3="215" />+                <face v1="215" v2="1492" v3="1493" />+                <face v1="216" v2="228" v3="229" />+                <face v1="216" v2="229" v3="217" />+                <face v1="217" v2="229" v3="230" />+                <face v1="217" v2="230" v3="218" />+                <face v1="218" v2="230" v3="231" />+                <face v1="218" v2="231" v3="219" />+                <face v1="219" v2="231" v3="232" />+                <face v1="219" v2="232" v3="220" />+                <face v1="220" v2="232" v3="233" />+                <face v1="220" v2="233" v3="209" />+                <face v1="209" v2="233" v3="234" />+                <face v1="209" v2="234" v3="222" />+                <face v1="222" v2="234" v3="235" />+                <face v1="222" v2="235" v3="223" />+                <face v1="223" v2="235" v3="236" />+                <face v1="223" v2="236" v3="224" />+                <face v1="224" v2="236" v3="237" />+                <face v1="224" v2="237" v3="225" />+                <face v1="225" v2="237" v3="238" />+                <face v1="225" v2="238" v3="226" />+                <face v1="226" v2="238" v3="239" />+                <face v1="226" v2="239" v3="215" />+                <face v1="215" v2="239" v3="1494" />+                <face v1="215" v2="1495" v3="1496" />+                <face v1="228" v2="240" v3="241" />+                <face v1="228" v2="241" v3="229" />+                <face v1="229" v2="241" v3="242" />+                <face v1="229" v2="242" v3="230" />+                <face v1="230" v2="242" v3="243" />+                <face v1="230" v2="243" v3="231" />+                <face v1="231" v2="243" v3="244" />+                <face v1="231" v2="244" v3="232" />+                <face v1="232" v2="244" v3="233" />+                <face v1="233" v2="246" v3="234" />+                <face v1="234" v2="246" v3="247" />+                <face v1="234" v2="247" v3="235" />+                <face v1="235" v2="247" v3="248" />+                <face v1="235" v2="248" v3="236" />+                <face v1="236" v2="248" v3="249" />+                <face v1="236" v2="249" v3="237" />+                <face v1="237" v2="249" v3="250" />+                <face v1="237" v2="250" v3="238" />+                <face v1="238" v2="250" v3="263" />+                <face v1="238" v2="263" v3="239" />+                <face v1="239" v2="263" v3="1497" />+                <face v1="239" v2="1498" v3="1499" />+                <face v1="240" v2="253" v3="241" />+                <face v1="241" v2="253" v3="254" />+                <face v1="241" v2="254" v3="242" />+                <face v1="242" v2="254" v3="255" />+                <face v1="242" v2="255" v3="243" />+                <face v1="243" v2="255" v3="244" />+                <face v1="246" v2="259" v3="247" />+                <face v1="247" v2="259" v3="260" />+                <face v1="247" v2="260" v3="248" />+                <face v1="248" v2="260" v3="261" />+                <face v1="248" v2="261" v3="249" />+                <face v1="249" v2="261" v3="262" />+                <face v1="249" v2="262" v3="250" />+                <face v1="250" v2="262" v3="263" />+                <face v1="1502" v2="264" v3="253" />+                <face v1="253" v2="266" v3="254" />+                <face v1="254" v2="266" v3="255" />+                <face v1="255" v2="268" v3="244" />+                <face v1="244" v2="268" v3="233" />+                <face v1="233" v2="270" v3="246" />+                <face v1="246" v2="270" v3="283" />+                <face v1="246" v2="283" v3="259" />+                <face v1="259" v2="283" v3="272" />+                <face v1="259" v2="272" v3="260" />+                <face v1="260" v2="272" v3="273" />+                <face v1="260" v2="273" v3="261" />+                <face v1="261" v2="273" v3="274" />+                <face v1="261" v2="274" v3="262" />+                <face v1="262" v2="274" v3="323" />+                <face v1="262" v2="323" v3="263" />+                <face v1="263" v2="323" v3="1503" />+                <face v1="263" v2="1504" v3="1502" />+                <face v1="264" v2="277" v3="253" />+                <face v1="253" v2="277" v3="266" />+                <face v1="266" v2="279" v3="255" />+                <face v1="255" v2="279" v3="268" />+                <face v1="268" v2="293" v3="233" />+                <face v1="233" v2="293" v3="282" />+                <face v1="233" v2="282" v3="270" />+                <face v1="270" v2="282" v3="283" />+                <face v1="283" v2="296" v3="272" />+                <face v1="272" v2="296" v3="297" />+                <face v1="272" v2="297" v3="273" />+                <face v1="273" v2="297" v3="286" />+                <face v1="273" v2="286" v3="274" />+                <face v1="274" v2="286" v3="323" />+                <face v1="1508" v2="288" v3="277" />+                <face v1="277" v2="290" v3="266" />+                <face v1="266" v2="290" v3="279" />+                <face v1="279" v2="292" v3="268" />+                <face v1="268" v2="292" v3="293" />+                <face v1="293" v2="318" v3="282" />+                <face v1="282" v2="318" v3="307" />+                <face v1="282" v2="307" v3="283" />+                <face v1="283" v2="307" v3="296" />+                <face v1="297" v2="322" v3="286" />+                <face v1="286" v2="322" v3="323" />+                <face v1="323" v2="1510" v3="1508" />+                <face v1="288" v2="301" v3="277" />+                <face v1="277" v2="301" v3="290" />+                <face v1="292" v2="377" v3="293" />+                <face v1="293" v2="377" v3="318" />+                <face v1="1514" v2="312" v3="301" />+                <face v1="279" v2="316" v3="292" />+                <face v1="292" v2="316" v3="377" />+                <face v1="296" v2="321" v3="297" />+                <face v1="297" v2="321" v3="322" />+                <face v1="323" v2="1516" v3="1514" />+                <face v1="290" v2="327" v3="279" />+                <face v1="279" v2="327" v3="316" />+                <face v1="318" v2="331" v3="307" />+                <face v1="307" v2="331" v3="332" />+                <face v1="307" v2="332" v3="296" />+                <face v1="296" v2="332" v3="321" />+                <face v1="1520" v2="397" v3="301" />+                <face v1="301" v2="397" v3="362" />+                <face v1="301" v2="362" v3="290" />+                <face v1="290" v2="362" v3="327" />+                <face v1="331" v2="380" v3="332" />+                <face v1="332" v2="380" v3="321" />+                <face v1="362" v2="399" v3="327" />+                <face v1="327" v2="399" v3="316" />+                <face v1="397" v2="434" v3="362" />+                <face v1="362" v2="434" v3="399" />+                <face v1="399" v2="412" v3="316" />+                <face v1="316" v2="412" v3="377" />+                <face v1="321" v2="406" v3="322" />+                <face v1="322" v2="406" v3="323" />+                <face v1="1520" v2="408" v3="397" />+                <face v1="412" v2="425" v3="377" />+                <face v1="377" v2="425" v3="318" />+                <face v1="380" v2="417" v3="321" />+                <face v1="321" v2="417" v3="406" />+                <face v1="323" v2="1540" v3="1520" />+                <face v1="399" v2="436" v3="412" />+                <face v1="412" v2="436" v3="425" />+                <face v1="406" v2="431" v3="323" />+                <face v1="323" v2="431" v3="1544" />+                <face v1="1544" v2="1549" v3="445" />+                <face v1="1544" v2="445" v3="397" />+                <face v1="397" v2="445" v3="434" />+                <face v1="434" v2="447" v3="399" />+                <face v1="399" v2="447" v3="436" />+                <face v1="436" v2="449" v3="425" />+                <face v1="425" v2="449" v3="438" />+                <face v1="425" v2="438" v3="318" />+                <face v1="318" v2="438" v3="439" />+                <face v1="318" v2="439" v3="331" />+                <face v1="331" v2="439" v3="380" />+                <face v1="380" v2="441" v3="417" />+                <face v1="417" v2="441" v3="442" />+                <face v1="417" v2="442" v3="406" />+                <face v1="406" v2="442" v3="431" />+                <face v1="431" v2="1549" v3="1544" />+                <face v1="445" v2="458" v3="434" />+                <face v1="434" v2="458" v3="447" />+                <face v1="447" v2="460" v3="436" />+                <face v1="436" v2="460" v3="449" />+                <face v1="439" v2="452" v3="380" />+                <face v1="380" v2="452" v3="441" />+                <face v1="442" v2="455" v3="431" />+                <face v1="431" v2="455" v3="1548" />+                <face v1="444" v2="456" v3="493" />+                <face v1="444" v2="493" v3="445" />+                <face v1="445" v2="493" v3="458" />+                <face v1="458" v2="471" v3="447" />+                <face v1="447" v2="471" v3="460" />+                <face v1="460" v2="473" v3="449" />+                <face v1="449" v2="473" v3="462" />+                <face v1="449" v2="462" v3="438" />+                <face v1="438" v2="462" v3="439" />+                <face v1="452" v2="465" v3="441" />+                <face v1="441" v2="465" v3="466" />+                <face v1="441" v2="466" v3="442" />+                <face v1="442" v2="466" v3="455" />+                <face v1="455" v2="1552" v3="1553" />+                <face v1="493" v2="482" v3="458" />+                <face v1="458" v2="482" v3="471" />+                <face v1="471" v2="472" v3="460" />+                <face v1="460" v2="472" v3="473" />+                <face v1="439" v2="476" v3="452" />+                <face v1="452" v2="476" v3="477" />+                <face v1="452" v2="477" v3="465" />+                <face v1="465" v2="477" v3="478" />+                <face v1="465" v2="478" v3="466" />+                <face v1="466" v2="478" v3="479" />+                <face v1="466" v2="479" v3="455" />+                <face v1="455" v2="479" v3="1556" />+                <face v1="1556" v2="480" v3="493" />+                <face v1="482" v2="483" v3="471" />+                <face v1="471" v2="483" v3="484" />+                <face v1="471" v2="484" v3="472" />+                <face v1="472" v2="484" v3="485" />+                <face v1="472" v2="485" v3="473" />+                <face v1="473" v2="485" v3="486" />+                <face v1="473" v2="486" v3="462" />+                <face v1="462" v2="486" v3="439" />+                <face v1="439" v2="488" v3="476" />+                <face v1="476" v2="488" v3="489" />+                <face v1="476" v2="489" v3="477" />+                <face v1="477" v2="489" v3="490" />+                <face v1="477" v2="490" v3="478" />+                <face v1="478" v2="490" v3="491" />+                <face v1="478" v2="491" v3="479" />+                <face v1="479" v2="491" v3="1557" />+                <face v1="479" v2="1558" v3="1556" />+                <face v1="480" v2="492" v3="493" />+                <face v1="493" v2="494" v3="482" />+                <face v1="482" v2="494" v3="495" />+                <face v1="482" v2="495" v3="483" />+                <face v1="483" v2="495" v3="496" />+                <face v1="483" v2="496" v3="484" />+                <face v1="484" v2="496" v3="497" />+                <face v1="484" v2="497" v3="485" />+                <face v1="485" v2="497" v3="498" />+                <face v1="485" v2="498" v3="486" />+                <face v1="486" v2="498" v3="499" />+                <face v1="486" v2="499" v3="439" />+                <face v1="439" v2="499" v3="500" />+                <face v1="439" v2="500" v3="488" />+                <face v1="488" v2="500" v3="501" />+                <face v1="488" v2="501" v3="489" />+                <face v1="489" v2="501" v3="502" />+                <face v1="489" v2="502" v3="490" />+                <face v1="490" v2="502" v3="503" />+                <face v1="490" v2="503" v3="491" />+                <face v1="491" v2="503" v3="1560" />+                <face v1="491" v2="1561" v3="1562" />+                <face v1="492" v2="504" v3="517" />+                <face v1="492" v2="517" v3="493" />+                <face v1="493" v2="517" v3="506" />+                <face v1="493" v2="506" v3="494" />+                <face v1="494" v2="506" v3="507" />+                <face v1="494" v2="507" v3="495" />+                <face v1="495" v2="507" v3="508" />+                <face v1="495" v2="508" v3="496" />+                <face v1="496" v2="508" v3="509" />+                <face v1="496" v2="509" v3="497" />+                <face v1="497" v2="509" v3="510" />+                <face v1="497" v2="510" v3="498" />+                <face v1="498" v2="510" v3="499" />+                <face v1="499" v2="512" v3="500" />+                <face v1="500" v2="512" v3="513" />+                <face v1="500" v2="513" v3="501" />+                <face v1="501" v2="513" v3="514" />+                <face v1="501" v2="514" v3="502" />+                <face v1="502" v2="514" v3="515" />+                <face v1="502" v2="515" v3="503" />+                <face v1="503" v2="515" v3="1563" />+                <face v1="503" v2="1564" v3="1565" />+                <face v1="504" v2="516" v3="517" />+                <face v1="517" v2="518" v3="506" />+                <face v1="506" v2="518" v3="519" />+                <face v1="506" v2="519" v3="507" />+                <face v1="507" v2="519" v3="520" />+                <face v1="507" v2="520" v3="508" />+                <face v1="508" v2="520" v3="521" />+                <face v1="508" v2="521" v3="509" />+                <face v1="509" v2="521" v3="522" />+                <face v1="509" v2="522" v3="510" />+                <face v1="510" v2="522" v3="523" />+                <face v1="510" v2="523" v3="499" />+                <face v1="499" v2="523" v3="524" />+                <face v1="499" v2="524" v3="512" />+                <face v1="512" v2="524" v3="525" />+                <face v1="512" v2="525" v3="513" />+                <face v1="513" v2="525" v3="526" />+                <face v1="513" v2="526" v3="514" />+                <face v1="514" v2="526" v3="527" />+                <face v1="514" v2="527" v3="515" />+                <face v1="515" v2="527" v3="1566" />+                <face v1="515" v2="1567" v3="1568" />+                <face v1="516" v2="528" v3="529" />+                <face v1="516" v2="529" v3="517" />+                <face v1="517" v2="529" v3="530" />+                <face v1="517" v2="530" v3="518" />+                <face v1="518" v2="530" v3="531" />+                <face v1="518" v2="531" v3="519" />+                <face v1="519" v2="531" v3="532" />+                <face v1="519" v2="532" v3="520" />+                <face v1="520" v2="532" v3="533" />+                <face v1="520" v2="533" v3="521" />+                <face v1="521" v2="533" v3="522" />+                <face v1="522" v2="535" v3="523" />+                <face v1="523" v2="535" v3="536" />+                <face v1="523" v2="536" v3="524" />+                <face v1="524" v2="536" v3="537" />+                <face v1="524" v2="537" v3="525" />+                <face v1="525" v2="537" v3="538" />+                <face v1="525" v2="538" v3="526" />+                <face v1="526" v2="538" v3="539" />+                <face v1="526" v2="539" v3="527" />+                <face v1="527" v2="539" v3="1569" />+                <face v1="527" v2="1570" v3="1571" />+                <face v1="528" v2="540" v3="541" />+                <face v1="528" v2="541" v3="529" />+                <face v1="529" v2="541" v3="542" />+                <face v1="529" v2="542" v3="530" />+                <face v1="530" v2="542" v3="543" />+                <face v1="530" v2="543" v3="531" />+                <face v1="531" v2="543" v3="544" />+                <face v1="531" v2="544" v3="532" />+                <face v1="532" v2="544" v3="545" />+                <face v1="532" v2="545" v3="533" />+                <face v1="533" v2="545" v3="546" />+                <face v1="533" v2="546" v3="522" />+                <face v1="522" v2="546" v3="547" />+                <face v1="522" v2="547" v3="535" />+                <face v1="535" v2="547" v3="548" />+                <face v1="535" v2="548" v3="536" />+                <face v1="536" v2="548" v3="549" />+                <face v1="536" v2="549" v3="537" />+                <face v1="537" v2="549" v3="550" />+                <face v1="537" v2="550" v3="538" />+                <face v1="538" v2="550" v3="551" />+                <face v1="538" v2="551" v3="539" />+                <face v1="539" v2="551" v3="1572" />+                <face v1="539" v2="1573" v3="1574" />+                <face v1="540" v2="553" v3="541" />+                <face v1="541" v2="553" v3="554" />+                <face v1="541" v2="554" v3="542" />+                <face v1="542" v2="554" v3="555" />+                <face v1="542" v2="555" v3="543" />+                <face v1="543" v2="555" v3="556" />+                <face v1="543" v2="556" v3="544" />+                <face v1="544" v2="556" v3="557" />+                <face v1="544" v2="557" v3="545" />+                <face v1="545" v2="557" v3="546" />+                <face v1="546" v2="559" v3="547" />+                <face v1="547" v2="559" v3="560" />+                <face v1="547" v2="560" v3="548" />+                <face v1="548" v2="560" v3="561" />+                <face v1="548" v2="561" v3="549" />+                <face v1="549" v2="561" v3="562" />+                <face v1="549" v2="562" v3="550" />+                <face v1="550" v2="562" v3="563" />+                <face v1="550" v2="563" v3="551" />+                <face v1="551" v2="563" v3="1577" />+                <face v1="1577" v2="564" v3="565" />+                <face v1="1577" v2="565" v3="553" />+                <face v1="553" v2="565" v3="566" />+                <face v1="553" v2="566" v3="554" />+                <face v1="554" v2="566" v3="567" />+                <face v1="554" v2="567" v3="555" />+                <face v1="555" v2="567" v3="568" />+                <face v1="555" v2="568" v3="556" />+                <face v1="556" v2="568" v3="569" />+                <face v1="556" v2="569" v3="557" />+                <face v1="557" v2="569" v3="570" />+                <face v1="557" v2="570" v3="546" />+                <face v1="546" v2="570" v3="571" />+                <face v1="546" v2="571" v3="559" />+                <face v1="559" v2="571" v3="572" />+                <face v1="559" v2="572" v3="560" />+                <face v1="560" v2="572" v3="573" />+                <face v1="560" v2="573" v3="561" />+                <face v1="561" v2="573" v3="574" />+                <face v1="561" v2="574" v3="562" />+                <face v1="562" v2="574" v3="575" />+                <face v1="562" v2="575" v3="563" />+                <face v1="563" v2="575" v3="1578" />+                <face v1="563" v2="1579" v3="1577" />+                <face v1="564" v2="577" v3="565" />+                <face v1="565" v2="577" v3="578" />+                <face v1="565" v2="578" v3="566" />+                <face v1="566" v2="578" v3="579" />+                <face v1="566" v2="579" v3="567" />+                <face v1="567" v2="579" v3="580" />+                <face v1="567" v2="580" v3="568" />+                <face v1="568" v2="580" v3="581" />+                <face v1="568" v2="581" v3="569" />+                <face v1="569" v2="581" v3="570" />+                <face v1="570" v2="583" v3="571" />+                <face v1="571" v2="583" v3="584" />+                <face v1="571" v2="584" v3="572" />+                <face v1="572" v2="584" v3="585" />+                <face v1="572" v2="585" v3="573" />+                <face v1="573" v2="585" v3="586" />+                <face v1="573" v2="586" v3="574" />+                <face v1="574" v2="586" v3="587" />+                <face v1="574" v2="587" v3="575" />+                <face v1="575" v2="587" v3="1583" />+                <face v1="1583" v2="588" v3="589" />+                <face v1="1583" v2="589" v3="577" />+                <face v1="577" v2="589" v3="590" />+                <face v1="577" v2="590" v3="578" />+                <face v1="578" v2="590" v3="591" />+                <face v1="578" v2="591" v3="579" />+                <face v1="579" v2="591" v3="592" />+                <face v1="579" v2="592" v3="580" />+                <face v1="580" v2="592" v3="593" />+                <face v1="580" v2="593" v3="581" />+                <face v1="581" v2="593" v3="594" />+                <face v1="581" v2="594" v3="570" />+                <face v1="570" v2="594" v3="595" />+                <face v1="570" v2="595" v3="583" />+                <face v1="583" v2="595" v3="596" />+                <face v1="583" v2="596" v3="584" />+                <face v1="584" v2="596" v3="597" />+                <face v1="584" v2="597" v3="585" />+                <face v1="585" v2="597" v3="598" />+                <face v1="585" v2="598" v3="586" />+                <face v1="586" v2="598" v3="599" />+                <face v1="586" v2="599" v3="587" />+                <face v1="587" v2="599" v3="1584" />+                <face v1="587" v2="1585" v3="1583" />+                <face v1="588" v2="601" v3="589" />+                <face v1="589" v2="601" v3="602" />+                <face v1="589" v2="602" v3="590" />+                <face v1="590" v2="602" v3="603" />+                <face v1="590" v2="603" v3="591" />+                <face v1="591" v2="603" v3="604" />+                <face v1="591" v2="604" v3="592" />+                <face v1="592" v2="604" v3="605" />+                <face v1="592" v2="605" v3="593" />+                <face v1="593" v2="605" v3="594" />+                <face v1="594" v2="607" v3="595" />+                <face v1="595" v2="607" v3="608" />+                <face v1="595" v2="608" v3="596" />+                <face v1="596" v2="608" v3="609" />+                <face v1="596" v2="609" v3="597" />+                <face v1="597" v2="609" v3="610" />+                <face v1="597" v2="610" v3="598" />+                <face v1="598" v2="610" v3="611" />+                <face v1="598" v2="611" v3="599" />+                <face v1="599" v2="611" v3="1589" />+                <face v1="1589" v2="613" v3="601" />+                <face v1="601" v2="613" v3="614" />+                <face v1="601" v2="614" v3="602" />+                <face v1="602" v2="614" v3="615" />+                <face v1="602" v2="615" v3="603" />+                <face v1="603" v2="615" v3="616" />+                <face v1="603" v2="616" v3="604" />+                <face v1="604" v2="616" v3="617" />+                <face v1="604" v2="617" v3="605" />+                <face v1="605" v2="617" v3="618" />+                <face v1="605" v2="618" v3="594" />+                <face v1="594" v2="618" v3="619" />+                <face v1="594" v2="619" v3="607" />+                <face v1="607" v2="619" v3="620" />+                <face v1="607" v2="620" v3="608" />+                <face v1="608" v2="620" v3="621" />+                <face v1="608" v2="621" v3="609" />+                <face v1="609" v2="621" v3="622" />+                <face v1="609" v2="622" v3="610" />+                <face v1="610" v2="622" v3="623" />+                <face v1="610" v2="623" v3="611" />+                <face v1="611" v2="623" v3="1589" />+                <face v1="1589" v2="1597" v3="625" />+                <face v1="1589" v2="625" v3="613" />+                <face v1="613" v2="625" v3="626" />+                <face v1="613" v2="626" v3="614" />+                <face v1="614" v2="626" v3="627" />+                <face v1="614" v2="627" v3="615" />+                <face v1="615" v2="627" v3="628" />+                <face v1="615" v2="628" v3="616" />+                <face v1="616" v2="628" v3="629" />+                <face v1="616" v2="629" v3="617" />+                <face v1="617" v2="629" v3="618" />+                <face v1="618" v2="631" v3="619" />+                <face v1="619" v2="631" v3="632" />+                <face v1="619" v2="632" v3="620" />+                <face v1="620" v2="632" v3="633" />+                <face v1="620" v2="633" v3="621" />+                <face v1="621" v2="633" v3="634" />+                <face v1="621" v2="634" v3="622" />+                <face v1="622" v2="634" v3="635" />+                <face v1="622" v2="635" v3="623" />+                <face v1="623" v2="635" v3="1597" />+                <face v1="623" v2="1597" v3="1589" />+                <face v1="1597" v2="637" v3="625" />+                <face v1="625" v2="637" v3="638" />+                <face v1="625" v2="638" v3="626" />+                <face v1="626" v2="638" v3="639" />+                <face v1="626" v2="639" v3="627" />+                <face v1="627" v2="639" v3="640" />+                <face v1="627" v2="640" v3="628" />+                <face v1="628" v2="640" v3="641" />+                <face v1="628" v2="641" v3="629" />+                <face v1="629" v2="641" v3="642" />+                <face v1="629" v2="642" v3="618" />+                <face v1="618" v2="642" v3="643" />+                <face v1="618" v2="643" v3="631" />+                <face v1="631" v2="643" v3="644" />+                <face v1="631" v2="644" v3="632" />+                <face v1="632" v2="644" v3="645" />+                <face v1="632" v2="645" v3="633" />+                <face v1="633" v2="645" v3="646" />+                <face v1="633" v2="646" v3="634" />+                <face v1="634" v2="646" v3="647" />+                <face v1="634" v2="647" v3="635" />+                <face v1="635" v2="647" v3="1596" />+                <face v1="636" v2="1603" v3="649" />+                <face v1="636" v2="649" v3="637" />+                <face v1="637" v2="649" v3="650" />+                <face v1="637" v2="650" v3="638" />+                <face v1="638" v2="650" v3="651" />+                <face v1="638" v2="651" v3="639" />+                <face v1="639" v2="651" v3="652" />+                <face v1="639" v2="652" v3="640" />+                <face v1="640" v2="652" v3="653" />+                <face v1="640" v2="653" v3="641" />+                <face v1="641" v2="653" v3="642" />+                <face v1="642" v2="655" v3="643" />+                <face v1="643" v2="655" v3="656" />+                <face v1="643" v2="656" v3="644" />+                <face v1="644" v2="656" v3="657" />+                <face v1="644" v2="657" v3="645" />+                <face v1="645" v2="657" v3="658" />+                <face v1="645" v2="658" v3="646" />+                <face v1="646" v2="658" v3="659" />+                <face v1="646" v2="659" v3="647" />+                <face v1="647" v2="659" v3="1603" />+                <face v1="647" v2="1603" v3="1601" />+                <face v1="1603" v2="661" v3="649" />+                <face v1="649" v2="661" v3="662" />+                <face v1="649" v2="662" v3="650" />+                <face v1="650" v2="662" v3="663" />+                <face v1="650" v2="663" v3="651" />+                <face v1="651" v2="663" v3="664" />+                <face v1="651" v2="664" v3="652" />+                <face v1="652" v2="664" v3="665" />+                <face v1="652" v2="665" v3="653" />+                <face v1="653" v2="665" v3="666" />+                <face v1="653" v2="666" v3="642" />+                <face v1="642" v2="666" v3="667" />+                <face v1="642" v2="667" v3="655" />+                <face v1="655" v2="667" v3="668" />+                <face v1="655" v2="668" v3="656" />+                <face v1="656" v2="668" v3="669" />+                <face v1="656" v2="669" v3="657" />+                <face v1="657" v2="669" v3="670" />+                <face v1="657" v2="670" v3="658" />+                <face v1="658" v2="670" v3="671" />+                <face v1="658" v2="671" v3="659" />+                <face v1="659" v2="671" v3="1602" />+                <face v1="660" v2="1609" v3="673" />+                <face v1="660" v2="673" v3="661" />+                <face v1="661" v2="673" v3="674" />+                <face v1="661" v2="674" v3="662" />+                <face v1="662" v2="674" v3="675" />+                <face v1="662" v2="675" v3="663" />+                <face v1="663" v2="675" v3="676" />+                <face v1="663" v2="676" v3="664" />+                <face v1="664" v2="676" v3="677" />+                <face v1="664" v2="677" v3="665" />+                <face v1="665" v2="677" v3="678" />+                <face v1="665" v2="678" v3="666" />+                <face v1="666" v2="678" v3="679" />+                <face v1="666" v2="679" v3="667" />+                <face v1="667" v2="679" v3="680" />+                <face v1="667" v2="680" v3="668" />+                <face v1="668" v2="680" v3="681" />+                <face v1="668" v2="681" v3="669" />+                <face v1="669" v2="681" v3="682" />+                <face v1="669" v2="682" v3="670" />+                <face v1="670" v2="682" v3="683" />+                <face v1="670" v2="683" v3="671" />+                <face v1="671" v2="683" v3="1609" />+                <face v1="671" v2="1609" v3="1607" />+                <face v1="1609" v2="685" v3="673" />+                <face v1="673" v2="685" v3="686" />+                <face v1="673" v2="686" v3="674" />+                <face v1="674" v2="686" v3="687" />+                <face v1="674" v2="687" v3="675" />+                <face v1="675" v2="687" v3="688" />+                <face v1="675" v2="688" v3="676" />+                <face v1="676" v2="688" v3="689" />+                <face v1="676" v2="689" v3="677" />+                <face v1="677" v2="689" v3="690" />+                <face v1="677" v2="690" v3="678" />+                <face v1="678" v2="690" v3="691" />+                <face v1="678" v2="691" v3="679" />+                <face v1="679" v2="691" v3="692" />+                <face v1="679" v2="692" v3="680" />+                <face v1="680" v2="692" v3="693" />+                <face v1="680" v2="693" v3="681" />+                <face v1="681" v2="693" v3="694" />+                <face v1="681" v2="694" v3="682" />+                <face v1="682" v2="694" v3="695" />+                <face v1="682" v2="695" v3="683" />+                <face v1="683" v2="695" v3="1608" />+                <face v1="684" v2="696" v3="697" />+                <face v1="684" v2="697" v3="685" />+                <face v1="685" v2="697" v3="698" />+                <face v1="685" v2="698" v3="686" />+                <face v1="686" v2="698" v3="699" />+                <face v1="686" v2="699" v3="687" />+                <face v1="687" v2="699" v3="700" />+                <face v1="687" v2="700" v3="688" />+                <face v1="688" v2="700" v3="689" />+                <face v1="689" v2="702" v3="690" />+                <face v1="690" v2="702" v3="703" />+                <face v1="690" v2="703" v3="691" />+                <face v1="691" v2="703" v3="704" />+                <face v1="691" v2="704" v3="692" />+                <face v1="692" v2="704" v3="705" />+                <face v1="692" v2="705" v3="693" />+                <face v1="693" v2="705" v3="706" />+                <face v1="693" v2="706" v3="694" />+                <face v1="694" v2="706" v3="695" />+                <face v1="695" v2="1612" v3="1613" />+                <face v1="696" v2="708" v3="709" />+                <face v1="696" v2="709" v3="697" />+                <face v1="697" v2="709" v3="710" />+                <face v1="697" v2="710" v3="698" />+                <face v1="698" v2="710" v3="711" />+                <face v1="698" v2="711" v3="699" />+                <face v1="699" v2="711" v3="712" />+                <face v1="699" v2="712" v3="700" />+                <face v1="700" v2="712" v3="713" />+                <face v1="700" v2="713" v3="689" />+                <face v1="689" v2="713" v3="714" />+                <face v1="689" v2="714" v3="702" />+                <face v1="702" v2="714" v3="715" />+                <face v1="702" v2="715" v3="703" />+                <face v1="703" v2="715" v3="716" />+                <face v1="703" v2="716" v3="704" />+                <face v1="704" v2="716" v3="717" />+                <face v1="704" v2="717" v3="705" />+                <face v1="705" v2="717" v3="718" />+                <face v1="705" v2="718" v3="706" />+                <face v1="706" v2="718" v3="719" />+                <face v1="706" v2="719" v3="695" />+                <face v1="695" v2="719" v3="1614" />+                <face v1="695" v2="1615" v3="1616" />+                <face v1="708" v2="720" v3="721" />+                <face v1="708" v2="721" v3="709" />+                <face v1="709" v2="721" v3="722" />+                <face v1="709" v2="722" v3="710" />+                <face v1="710" v2="722" v3="723" />+                <face v1="710" v2="723" v3="711" />+                <face v1="711" v2="723" v3="724" />+                <face v1="711" v2="724" v3="712" />+                <face v1="712" v2="724" v3="713" />+                <face v1="713" v2="726" v3="714" />+                <face v1="714" v2="726" v3="727" />+                <face v1="714" v2="727" v3="715" />+                <face v1="715" v2="727" v3="728" />+                <face v1="715" v2="728" v3="716" />+                <face v1="716" v2="728" v3="729" />+                <face v1="716" v2="729" v3="717" />+                <face v1="717" v2="729" v3="730" />+                <face v1="717" v2="730" v3="718" />+                <face v1="718" v2="730" v3="743" />+                <face v1="718" v2="743" v3="719" />+                <face v1="719" v2="743" v3="1617" />+                <face v1="719" v2="1618" v3="1619" />+                <face v1="720" v2="733" v3="721" />+                <face v1="721" v2="733" v3="734" />+                <face v1="721" v2="734" v3="722" />+                <face v1="722" v2="734" v3="735" />+                <face v1="722" v2="735" v3="723" />+                <face v1="723" v2="735" v3="724" />+                <face v1="726" v2="739" v3="727" />+                <face v1="727" v2="739" v3="740" />+                <face v1="727" v2="740" v3="728" />+                <face v1="728" v2="740" v3="741" />+                <face v1="728" v2="741" v3="729" />+                <face v1="729" v2="741" v3="742" />+                <face v1="729" v2="742" v3="730" />+                <face v1="730" v2="742" v3="743" />+                <face v1="1622" v2="744" v3="733" />+                <face v1="733" v2="746" v3="734" />+                <face v1="734" v2="746" v3="735" />+                <face v1="735" v2="748" v3="724" />+                <face v1="724" v2="748" v3="713" />+                <face v1="713" v2="750" v3="726" />+                <face v1="726" v2="750" v3="763" />+                <face v1="726" v2="763" v3="739" />+                <face v1="739" v2="763" v3="752" />+                <face v1="739" v2="752" v3="740" />+                <face v1="740" v2="752" v3="753" />+                <face v1="740" v2="753" v3="741" />+                <face v1="741" v2="753" v3="754" />+                <face v1="741" v2="754" v3="742" />+                <face v1="742" v2="754" v3="803" />+                <face v1="742" v2="803" v3="743" />+                <face v1="743" v2="803" v3="1623" />+                <face v1="743" v2="1624" v3="1622" />+                <face v1="744" v2="757" v3="733" />+                <face v1="733" v2="757" v3="746" />+                <face v1="746" v2="759" v3="735" />+                <face v1="735" v2="759" v3="748" />+                <face v1="748" v2="773" v3="713" />+                <face v1="713" v2="773" v3="762" />+                <face v1="713" v2="762" v3="750" />+                <face v1="750" v2="762" v3="763" />+                <face v1="763" v2="776" v3="752" />+                <face v1="752" v2="776" v3="777" />+                <face v1="752" v2="777" v3="753" />+                <face v1="753" v2="777" v3="766" />+                <face v1="753" v2="766" v3="754" />+                <face v1="754" v2="766" v3="803" />+                <face v1="1628" v2="768" v3="757" />+                <face v1="757" v2="770" v3="746" />+                <face v1="746" v2="770" v3="759" />+                <face v1="759" v2="772" v3="748" />+                <face v1="748" v2="772" v3="773" />+                <face v1="773" v2="798" v3="762" />+                <face v1="762" v2="798" v3="787" />+                <face v1="762" v2="787" v3="763" />+                <face v1="763" v2="787" v3="776" />+                <face v1="777" v2="802" v3="766" />+                <face v1="766" v2="802" v3="803" />+                <face v1="803" v2="1630" v3="1628" />+                <face v1="768" v2="781" v3="757" />+                <face v1="757" v2="781" v3="770" />+                <face v1="772" v2="857" v3="773" />+                <face v1="773" v2="857" v3="798" />+                <face v1="1634" v2="792" v3="781" />+                <face v1="759" v2="796" v3="772" />+                <face v1="772" v2="796" v3="857" />+                <face v1="776" v2="801" v3="777" />+                <face v1="777" v2="801" v3="802" />+                <face v1="803" v2="1636" v3="1634" />+                <face v1="770" v2="807" v3="759" />+                <face v1="759" v2="807" v3="796" />+                <face v1="798" v2="811" v3="787" />+                <face v1="787" v2="811" v3="812" />+                <face v1="787" v2="812" v3="776" />+                <face v1="776" v2="812" v3="801" />+                <face v1="781" v2="842" v3="770" />+                <face v1="770" v2="842" v3="807" />+                <face v1="1640" v2="877" v3="781" />+                <face v1="781" v2="877" v3="842" />+                <face v1="811" v2="860" v3="812" />+                <face v1="812" v2="860" v3="801" />+                <face v1="842" v2="879" v3="807" />+                <face v1="807" v2="879" v3="796" />+                <face v1="877" v2="914" v3="842" />+                <face v1="842" v2="914" v3="879" />+                <face v1="879" v2="892" v3="796" />+                <face v1="796" v2="892" v3="857" />+                <face v1="801" v2="886" v3="802" />+                <face v1="802" v2="886" v3="803" />+                <face v1="1640" v2="888" v3="877" />+                <face v1="892" v2="905" v3="857" />+                <face v1="857" v2="905" v3="798" />+                <face v1="860" v2="897" v3="801" />+                <face v1="801" v2="897" v3="886" />+                <face v1="803" v2="1660" v3="1640" />+                <face v1="879" v2="916" v3="892" />+                <face v1="892" v2="916" v3="905" />+                <face v1="886" v2="911" v3="803" />+                <face v1="803" v2="911" v3="1664" />+                <face v1="1664" v2="1669" v3="925" />+                <face v1="1664" v2="925" v3="877" />+                <face v1="877" v2="925" v3="914" />+                <face v1="914" v2="927" v3="879" />+                <face v1="879" v2="927" v3="916" />+                <face v1="916" v2="929" v3="905" />+                <face v1="905" v2="929" v3="918" />+                <face v1="905" v2="918" v3="798" />+                <face v1="798" v2="918" v3="919" />+                <face v1="798" v2="919" v3="811" />+                <face v1="811" v2="919" v3="860" />+                <face v1="860" v2="921" v3="897" />+                <face v1="897" v2="921" v3="922" />+                <face v1="897" v2="922" v3="886" />+                <face v1="886" v2="922" v3="911" />+                <face v1="911" v2="1669" v3="1664" />+                <face v1="925" v2="938" v3="914" />+                <face v1="914" v2="938" v3="927" />+                <face v1="927" v2="940" v3="916" />+                <face v1="916" v2="940" v3="929" />+                <face v1="919" v2="932" v3="860" />+                <face v1="860" v2="932" v3="921" />+                <face v1="922" v2="935" v3="911" />+                <face v1="911" v2="935" v3="1668" />+                <face v1="924" v2="936" v3="973" />+                <face v1="924" v2="973" v3="925" />+                <face v1="925" v2="973" v3="938" />+                <face v1="938" v2="951" v3="927" />+                <face v1="927" v2="951" v3="940" />+                <face v1="940" v2="953" v3="929" />+                <face v1="929" v2="953" v3="942" />+                <face v1="929" v2="942" v3="918" />+                <face v1="918" v2="942" v3="919" />+                <face v1="932" v2="945" v3="921" />+                <face v1="921" v2="945" v3="946" />+                <face v1="921" v2="946" v3="922" />+                <face v1="922" v2="946" v3="935" />+                <face v1="935" v2="1672" v3="1673" />+                <face v1="973" v2="962" v3="938" />+                <face v1="938" v2="962" v3="951" />+                <face v1="951" v2="952" v3="940" />+                <face v1="940" v2="952" v3="953" />+                <face v1="919" v2="956" v3="932" />+                <face v1="932" v2="956" v3="957" />+                <face v1="932" v2="957" v3="945" />+                <face v1="945" v2="957" v3="958" />+                <face v1="945" v2="958" v3="946" />+                <face v1="946" v2="958" v3="959" />+                <face v1="946" v2="959" v3="935" />+                <face v1="935" v2="959" v3="1676" />+                <face v1="1676" v2="960" v3="973" />+                <face v1="962" v2="963" v3="951" />+                <face v1="951" v2="963" v3="964" />+                <face v1="951" v2="964" v3="952" />+                <face v1="952" v2="964" v3="965" />+                <face v1="952" v2="965" v3="953" />+                <face v1="953" v2="965" v3="966" />+                <face v1="953" v2="966" v3="942" />+                <face v1="942" v2="966" v3="919" />+                <face v1="919" v2="968" v3="956" />+                <face v1="956" v2="968" v3="969" />+                <face v1="956" v2="969" v3="957" />+                <face v1="957" v2="969" v3="970" />+                <face v1="957" v2="970" v3="958" />+                <face v1="958" v2="970" v3="971" />+                <face v1="958" v2="971" v3="959" />+                <face v1="959" v2="971" v3="1677" />+                <face v1="959" v2="1678" v3="1676" />+                <face v1="960" v2="972" v3="973" />+                <face v1="973" v2="974" v3="962" />+                <face v1="962" v2="974" v3="975" />+                <face v1="962" v2="975" v3="963" />+                <face v1="963" v2="975" v3="976" />+                <face v1="963" v2="976" v3="964" />+                <face v1="964" v2="976" v3="977" />+                <face v1="964" v2="977" v3="965" />+                <face v1="965" v2="977" v3="978" />+                <face v1="965" v2="978" v3="966" />+                <face v1="966" v2="978" v3="979" />+                <face v1="966" v2="979" v3="919" />+                <face v1="919" v2="979" v3="980" />+                <face v1="919" v2="980" v3="968" />+                <face v1="968" v2="980" v3="981" />+                <face v1="968" v2="981" v3="969" />+                <face v1="969" v2="981" v3="982" />+                <face v1="969" v2="982" v3="970" />+                <face v1="970" v2="982" v3="983" />+                <face v1="970" v2="983" v3="971" />+                <face v1="971" v2="983" v3="1680" />+                <face v1="971" v2="1681" v3="1682" />+                <face v1="972" v2="984" v3="997" />+                <face v1="972" v2="997" v3="973" />+                <face v1="973" v2="997" v3="986" />+                <face v1="973" v2="986" v3="974" />+                <face v1="974" v2="986" v3="987" />+                <face v1="974" v2="987" v3="975" />+                <face v1="975" v2="987" v3="988" />+                <face v1="975" v2="988" v3="976" />+                <face v1="976" v2="988" v3="989" />+                <face v1="976" v2="989" v3="977" />+                <face v1="977" v2="989" v3="990" />+                <face v1="977" v2="990" v3="978" />+                <face v1="978" v2="990" v3="979" />+                <face v1="979" v2="992" v3="980" />+                <face v1="980" v2="992" v3="993" />+                <face v1="980" v2="993" v3="981" />+                <face v1="981" v2="993" v3="994" />+                <face v1="981" v2="994" v3="982" />+                <face v1="982" v2="994" v3="995" />+                <face v1="982" v2="995" v3="983" />+                <face v1="983" v2="995" v3="1683" />+                <face v1="983" v2="1684" v3="1685" />+                <face v1="984" v2="996" v3="997" />+                <face v1="997" v2="998" v3="986" />+                <face v1="986" v2="998" v3="999" />+                <face v1="986" v2="999" v3="987" />+                <face v1="987" v2="999" v3="1000" />+                <face v1="987" v2="1000" v3="988" />+                <face v1="988" v2="1000" v3="1001" />+                <face v1="988" v2="1001" v3="989" />+                <face v1="989" v2="1001" v3="1002" />+                <face v1="989" v2="1002" v3="990" />+                <face v1="990" v2="1002" v3="1003" />+                <face v1="990" v2="1003" v3="979" />+                <face v1="979" v2="1003" v3="1004" />+                <face v1="979" v2="1004" v3="992" />+                <face v1="992" v2="1004" v3="1005" />+                <face v1="992" v2="1005" v3="993" />+                <face v1="993" v2="1005" v3="1006" />+                <face v1="993" v2="1006" v3="994" />+                <face v1="994" v2="1006" v3="1007" />+                <face v1="994" v2="1007" v3="995" />+                <face v1="995" v2="1007" v3="1686" />+                <face v1="995" v2="1687" v3="1688" />+                <face v1="996" v2="1008" v3="1009" />+                <face v1="996" v2="1009" v3="997" />+                <face v1="997" v2="1009" v3="1010" />+                <face v1="997" v2="1010" v3="998" />+                <face v1="998" v2="1010" v3="1011" />+                <face v1="998" v2="1011" v3="999" />+                <face v1="999" v2="1011" v3="1012" />+                <face v1="999" v2="1012" v3="1000" />+                <face v1="1000" v2="1012" v3="1013" />+                <face v1="1000" v2="1013" v3="1001" />+                <face v1="1001" v2="1013" v3="1002" />+                <face v1="1002" v2="1015" v3="1003" />+                <face v1="1003" v2="1015" v3="1016" />+                <face v1="1003" v2="1016" v3="1004" />+                <face v1="1004" v2="1016" v3="1017" />+                <face v1="1004" v2="1017" v3="1005" />+                <face v1="1005" v2="1017" v3="1018" />+                <face v1="1005" v2="1018" v3="1006" />+                <face v1="1006" v2="1018" v3="1019" />+                <face v1="1006" v2="1019" v3="1007" />+                <face v1="1007" v2="1019" v3="1689" />+                <face v1="1007" v2="1690" v3="1691" />+                <face v1="1008" v2="1020" v3="1021" />+                <face v1="1008" v2="1021" v3="1009" />+                <face v1="1009" v2="1021" v3="1022" />+                <face v1="1009" v2="1022" v3="1010" />+                <face v1="1010" v2="1022" v3="1023" />+                <face v1="1010" v2="1023" v3="1011" />+                <face v1="1011" v2="1023" v3="1024" />+                <face v1="1011" v2="1024" v3="1012" />+                <face v1="1012" v2="1024" v3="1025" />+                <face v1="1012" v2="1025" v3="1013" />+                <face v1="1013" v2="1025" v3="1026" />+                <face v1="1013" v2="1026" v3="1002" />+                <face v1="1002" v2="1026" v3="1027" />+                <face v1="1002" v2="1027" v3="1015" />+                <face v1="1015" v2="1027" v3="1028" />+                <face v1="1015" v2="1028" v3="1016" />+                <face v1="1016" v2="1028" v3="1029" />+                <face v1="1016" v2="1029" v3="1017" />+                <face v1="1017" v2="1029" v3="1030" />+                <face v1="1017" v2="1030" v3="1018" />+                <face v1="1018" v2="1030" v3="1031" />+                <face v1="1018" v2="1031" v3="1019" />+                <face v1="1019" v2="1031" v3="1692" />+                <face v1="1019" v2="1693" v3="1694" />+                <face v1="1020" v2="1033" v3="1021" />+                <face v1="1021" v2="1033" v3="1034" />+                <face v1="1021" v2="1034" v3="1022" />+                <face v1="1022" v2="1034" v3="1035" />+                <face v1="1022" v2="1035" v3="1023" />+                <face v1="1023" v2="1035" v3="1036" />+                <face v1="1023" v2="1036" v3="1024" />+                <face v1="1024" v2="1036" v3="1037" />+                <face v1="1024" v2="1037" v3="1025" />+                <face v1="1025" v2="1037" v3="1026" />+                <face v1="1026" v2="1039" v3="1027" />+                <face v1="1027" v2="1039" v3="1040" />+                <face v1="1027" v2="1040" v3="1028" />+                <face v1="1028" v2="1040" v3="1041" />+                <face v1="1028" v2="1041" v3="1029" />+                <face v1="1029" v2="1041" v3="1042" />+                <face v1="1029" v2="1042" v3="1030" />+                <face v1="1030" v2="1042" v3="1043" />+                <face v1="1030" v2="1043" v3="1031" />+                <face v1="1031" v2="1043" v3="1697" />+                <face v1="1697" v2="1044" v3="1045" />+                <face v1="1697" v2="1045" v3="1033" />+                <face v1="1033" v2="1045" v3="1046" />+                <face v1="1033" v2="1046" v3="1034" />+                <face v1="1034" v2="1046" v3="1047" />+                <face v1="1034" v2="1047" v3="1035" />+                <face v1="1035" v2="1047" v3="1048" />+                <face v1="1035" v2="1048" v3="1036" />+                <face v1="1036" v2="1048" v3="1049" />+                <face v1="1036" v2="1049" v3="1037" />+                <face v1="1037" v2="1049" v3="1050" />+                <face v1="1037" v2="1050" v3="1026" />+                <face v1="1026" v2="1050" v3="1051" />+                <face v1="1026" v2="1051" v3="1039" />+                <face v1="1039" v2="1051" v3="1052" />+                <face v1="1039" v2="1052" v3="1040" />+                <face v1="1040" v2="1052" v3="1053" />+                <face v1="1040" v2="1053" v3="1041" />+                <face v1="1041" v2="1053" v3="1054" />+                <face v1="1041" v2="1054" v3="1042" />+                <face v1="1042" v2="1054" v3="1055" />+                <face v1="1042" v2="1055" v3="1043" />+                <face v1="1043" v2="1055" v3="1698" />+                <face v1="1043" v2="1699" v3="1697" />+                <face v1="1044" v2="1057" v3="1045" />+                <face v1="1045" v2="1057" v3="1058" />+                <face v1="1045" v2="1058" v3="1046" />+                <face v1="1046" v2="1058" v3="1059" />+                <face v1="1046" v2="1059" v3="1047" />+                <face v1="1047" v2="1059" v3="1060" />+                <face v1="1047" v2="1060" v3="1048" />+                <face v1="1048" v2="1060" v3="1061" />+                <face v1="1048" v2="1061" v3="1049" />+                <face v1="1049" v2="1061" v3="1050" />+                <face v1="1050" v2="1063" v3="1051" />+                <face v1="1051" v2="1063" v3="1064" />+                <face v1="1051" v2="1064" v3="1052" />+                <face v1="1052" v2="1064" v3="1065" />+                <face v1="1052" v2="1065" v3="1053" />+                <face v1="1053" v2="1065" v3="1066" />+                <face v1="1053" v2="1066" v3="1054" />+                <face v1="1054" v2="1066" v3="1067" />+                <face v1="1054" v2="1067" v3="1055" />+                <face v1="1055" v2="1067" v3="1703" />+                <face v1="1703" v2="1068" v3="1069" />+                <face v1="1703" v2="1069" v3="1057" />+                <face v1="1057" v2="1069" v3="1070" />+                <face v1="1057" v2="1070" v3="1058" />+                <face v1="1058" v2="1070" v3="1071" />+                <face v1="1058" v2="1071" v3="1059" />+                <face v1="1059" v2="1071" v3="1072" />+                <face v1="1059" v2="1072" v3="1060" />+                <face v1="1060" v2="1072" v3="1073" />+                <face v1="1060" v2="1073" v3="1061" />+                <face v1="1061" v2="1073" v3="1074" />+                <face v1="1061" v2="1074" v3="1050" />+                <face v1="1050" v2="1074" v3="1075" />+                <face v1="1050" v2="1075" v3="1063" />+                <face v1="1063" v2="1075" v3="1076" />+                <face v1="1063" v2="1076" v3="1064" />+                <face v1="1064" v2="1076" v3="1077" />+                <face v1="1064" v2="1077" v3="1065" />+                <face v1="1065" v2="1077" v3="1078" />+                <face v1="1065" v2="1078" v3="1066" />+                <face v1="1066" v2="1078" v3="1079" />+                <face v1="1066" v2="1079" v3="1067" />+                <face v1="1067" v2="1079" v3="1704" />+                <face v1="1067" v2="1705" v3="1703" />+                <face v1="1068" v2="1081" v3="1069" />+                <face v1="1069" v2="1081" v3="1082" />+                <face v1="1069" v2="1082" v3="1070" />+                <face v1="1070" v2="1082" v3="1083" />+                <face v1="1070" v2="1083" v3="1071" />+                <face v1="1071" v2="1083" v3="1084" />+                <face v1="1071" v2="1084" v3="1072" />+                <face v1="1072" v2="1084" v3="1085" />+                <face v1="1072" v2="1085" v3="1073" />+                <face v1="1073" v2="1085" v3="1074" />+                <face v1="1074" v2="1087" v3="1075" />+                <face v1="1075" v2="1087" v3="1088" />+                <face v1="1075" v2="1088" v3="1076" />+                <face v1="1076" v2="1088" v3="1089" />+                <face v1="1076" v2="1089" v3="1077" />+                <face v1="1077" v2="1089" v3="1090" />+                <face v1="1077" v2="1090" v3="1078" />+                <face v1="1078" v2="1090" v3="1091" />+                <face v1="1078" v2="1091" v3="1079" />+                <face v1="1079" v2="1091" v3="1709" />+                <face v1="1709" v2="1093" v3="1081" />+                <face v1="1081" v2="1093" v3="1094" />+                <face v1="1081" v2="1094" v3="1082" />+                <face v1="1082" v2="1094" v3="1095" />+                <face v1="1082" v2="1095" v3="1083" />+                <face v1="1083" v2="1095" v3="1096" />+                <face v1="1083" v2="1096" v3="1084" />+                <face v1="1084" v2="1096" v3="1097" />+                <face v1="1084" v2="1097" v3="1085" />+                <face v1="1085" v2="1097" v3="1098" />+                <face v1="1085" v2="1098" v3="1074" />+                <face v1="1074" v2="1098" v3="1099" />+                <face v1="1074" v2="1099" v3="1087" />+                <face v1="1087" v2="1099" v3="1100" />+                <face v1="1087" v2="1100" v3="1088" />+                <face v1="1088" v2="1100" v3="1101" />+                <face v1="1088" v2="1101" v3="1089" />+                <face v1="1089" v2="1101" v3="1102" />+                <face v1="1089" v2="1102" v3="1090" />+                <face v1="1090" v2="1102" v3="1103" />+                <face v1="1090" v2="1103" v3="1091" />+                <face v1="1091" v2="1103" v3="1709" />+                <face v1="1709" v2="1717" v3="1105" />+                <face v1="1709" v2="1105" v3="1093" />+                <face v1="1093" v2="1105" v3="1106" />+                <face v1="1093" v2="1106" v3="1094" />+                <face v1="1094" v2="1106" v3="1107" />+                <face v1="1094" v2="1107" v3="1095" />+                <face v1="1095" v2="1107" v3="1108" />+                <face v1="1095" v2="1108" v3="1096" />+                <face v1="1096" v2="1108" v3="1109" />+                <face v1="1096" v2="1109" v3="1097" />+                <face v1="1097" v2="1109" v3="1098" />+                <face v1="1098" v2="1111" v3="1099" />+                <face v1="1099" v2="1111" v3="1112" />+                <face v1="1099" v2="1112" v3="1100" />+                <face v1="1100" v2="1112" v3="1113" />+                <face v1="1100" v2="1113" v3="1101" />+                <face v1="1101" v2="1113" v3="1114" />+                <face v1="1101" v2="1114" v3="1102" />+                <face v1="1102" v2="1114" v3="1115" />+                <face v1="1102" v2="1115" v3="1103" />+                <face v1="1103" v2="1115" v3="1717" />+                <face v1="1103" v2="1717" v3="1709" />+                <face v1="1717" v2="1117" v3="1105" />+                <face v1="1105" v2="1117" v3="1118" />+                <face v1="1105" v2="1118" v3="1106" />+                <face v1="1106" v2="1118" v3="1119" />+                <face v1="1106" v2="1119" v3="1107" />+                <face v1="1107" v2="1119" v3="1120" />+                <face v1="1107" v2="1120" v3="1108" />+                <face v1="1108" v2="1120" v3="1121" />+                <face v1="1108" v2="1121" v3="1109" />+                <face v1="1109" v2="1121" v3="1122" />+                <face v1="1109" v2="1122" v3="1098" />+                <face v1="1098" v2="1122" v3="1123" />+                <face v1="1098" v2="1123" v3="1111" />+                <face v1="1111" v2="1123" v3="1124" />+                <face v1="1111" v2="1124" v3="1112" />+                <face v1="1112" v2="1124" v3="1125" />+                <face v1="1112" v2="1125" v3="1113" />+                <face v1="1113" v2="1125" v3="1126" />+                <face v1="1113" v2="1126" v3="1114" />+                <face v1="1114" v2="1126" v3="1127" />+                <face v1="1114" v2="1127" v3="1115" />+                <face v1="1115" v2="1127" v3="1716" />+                <face v1="1116" v2="1723" v3="1129" />+                <face v1="1116" v2="1129" v3="1117" />+                <face v1="1117" v2="1129" v3="1130" />+                <face v1="1117" v2="1130" v3="1118" />+                <face v1="1118" v2="1130" v3="1131" />+                <face v1="1118" v2="1131" v3="1119" />+                <face v1="1119" v2="1131" v3="1132" />+                <face v1="1119" v2="1132" v3="1120" />+                <face v1="1120" v2="1132" v3="1133" />+                <face v1="1120" v2="1133" v3="1121" />+                <face v1="1121" v2="1133" v3="1122" />+                <face v1="1122" v2="1135" v3="1123" />+                <face v1="1123" v2="1135" v3="1136" />+                <face v1="1123" v2="1136" v3="1124" />+                <face v1="1124" v2="1136" v3="1137" />+                <face v1="1124" v2="1137" v3="1125" />+                <face v1="1125" v2="1137" v3="1138" />+                <face v1="1125" v2="1138" v3="1126" />+                <face v1="1126" v2="1138" v3="1139" />+                <face v1="1126" v2="1139" v3="1127" />+                <face v1="1127" v2="1139" v3="1723" />+                <face v1="1127" v2="1723" v3="1721" />+                <face v1="1723" v2="1141" v3="1129" />+                <face v1="1129" v2="1141" v3="1142" />+                <face v1="1129" v2="1142" v3="1130" />+                <face v1="1130" v2="1142" v3="1143" />+                <face v1="1130" v2="1143" v3="1131" />+                <face v1="1131" v2="1143" v3="1144" />+                <face v1="1131" v2="1144" v3="1132" />+                <face v1="1132" v2="1144" v3="1145" />+                <face v1="1132" v2="1145" v3="1133" />+                <face v1="1133" v2="1145" v3="1146" />+                <face v1="1133" v2="1146" v3="1122" />+                <face v1="1122" v2="1146" v3="1147" />+                <face v1="1122" v2="1147" v3="1135" />+                <face v1="1135" v2="1147" v3="1148" />+                <face v1="1135" v2="1148" v3="1136" />+                <face v1="1136" v2="1148" v3="1149" />+                <face v1="1136" v2="1149" v3="1137" />+                <face v1="1137" v2="1149" v3="1150" />+                <face v1="1137" v2="1150" v3="1138" />+                <face v1="1138" v2="1150" v3="1151" />+                <face v1="1138" v2="1151" v3="1139" />+                <face v1="1139" v2="1151" v3="1722" />+                <face v1="1140" v2="1729" v3="1153" />+                <face v1="1140" v2="1153" v3="1141" />+                <face v1="1141" v2="1153" v3="1154" />+                <face v1="1141" v2="1154" v3="1142" />+                <face v1="1142" v2="1154" v3="1155" />+                <face v1="1142" v2="1155" v3="1143" />+                <face v1="1143" v2="1155" v3="1156" />+                <face v1="1143" v2="1156" v3="1144" />+                <face v1="1144" v2="1156" v3="1157" />+                <face v1="1144" v2="1157" v3="1145" />+                <face v1="1145" v2="1157" v3="1158" />+                <face v1="1145" v2="1158" v3="1146" />+                <face v1="1146" v2="1158" v3="1159" />+                <face v1="1146" v2="1159" v3="1147" />+                <face v1="1147" v2="1159" v3="1160" />+                <face v1="1147" v2="1160" v3="1148" />+                <face v1="1148" v2="1160" v3="1161" />+                <face v1="1148" v2="1161" v3="1149" />+                <face v1="1149" v2="1161" v3="1162" />+                <face v1="1149" v2="1162" v3="1150" />+                <face v1="1150" v2="1162" v3="1163" />+                <face v1="1150" v2="1163" v3="1151" />+                <face v1="1151" v2="1163" v3="1729" />+                <face v1="1151" v2="1729" v3="1727" />+                <face v1="1729" v2="1165" v3="1153" />+                <face v1="1153" v2="1165" v3="1166" />+                <face v1="1153" v2="1166" v3="1154" />+                <face v1="1154" v2="1166" v3="1167" />+                <face v1="1154" v2="1167" v3="1155" />+                <face v1="1155" v2="1167" v3="1168" />+                <face v1="1155" v2="1168" v3="1156" />+                <face v1="1156" v2="1168" v3="1169" />+                <face v1="1156" v2="1169" v3="1157" />+                <face v1="1157" v2="1169" v3="1170" />+                <face v1="1157" v2="1170" v3="1158" />+                <face v1="1158" v2="1170" v3="1171" />+                <face v1="1158" v2="1171" v3="1159" />+                <face v1="1159" v2="1171" v3="1172" />+                <face v1="1159" v2="1172" v3="1160" />+                <face v1="1160" v2="1172" v3="1173" />+                <face v1="1160" v2="1173" v3="1161" />+                <face v1="1161" v2="1173" v3="1174" />+                <face v1="1161" v2="1174" v3="1162" />+                <face v1="1162" v2="1174" v3="1175" />+                <face v1="1162" v2="1175" v3="1163" />+                <face v1="1163" v2="1175" v3="1728" />+                <face v1="1164" v2="1176" v3="1177" />+                <face v1="1164" v2="1177" v3="1165" />+                <face v1="1165" v2="1177" v3="1178" />+                <face v1="1165" v2="1178" v3="1166" />+                <face v1="1166" v2="1178" v3="1179" />+                <face v1="1166" v2="1179" v3="1167" />+                <face v1="1167" v2="1179" v3="1180" />+                <face v1="1167" v2="1180" v3="1168" />+                <face v1="1168" v2="1180" v3="1169" />+                <face v1="1169" v2="1182" v3="1170" />+                <face v1="1170" v2="1182" v3="1183" />+                <face v1="1170" v2="1183" v3="1171" />+                <face v1="1171" v2="1183" v3="1184" />+                <face v1="1171" v2="1184" v3="1172" />+                <face v1="1172" v2="1184" v3="1185" />+                <face v1="1172" v2="1185" v3="1173" />+                <face v1="1173" v2="1185" v3="1186" />+                <face v1="1173" v2="1186" v3="1174" />+                <face v1="1174" v2="1186" v3="1175" />+                <face v1="1175" v2="1732" v3="1733" />+                <face v1="1176" v2="1188" v3="1189" />+                <face v1="1176" v2="1189" v3="1177" />+                <face v1="1177" v2="1189" v3="1190" />+                <face v1="1177" v2="1190" v3="1178" />+                <face v1="1178" v2="1190" v3="1191" />+                <face v1="1178" v2="1191" v3="1179" />+                <face v1="1179" v2="1191" v3="1192" />+                <face v1="1179" v2="1192" v3="1180" />+                <face v1="1180" v2="1192" v3="1193" />+                <face v1="1180" v2="1193" v3="1169" />+                <face v1="1169" v2="1193" v3="1194" />+                <face v1="1169" v2="1194" v3="1182" />+                <face v1="1182" v2="1194" v3="1195" />+                <face v1="1182" v2="1195" v3="1183" />+                <face v1="1183" v2="1195" v3="1196" />+                <face v1="1183" v2="1196" v3="1184" />+                <face v1="1184" v2="1196" v3="1197" />+                <face v1="1184" v2="1197" v3="1185" />+                <face v1="1185" v2="1197" v3="1198" />+                <face v1="1185" v2="1198" v3="1186" />+                <face v1="1186" v2="1198" v3="1199" />+                <face v1="1186" v2="1199" v3="1175" />+                <face v1="1175" v2="1199" v3="1734" />+                <face v1="1175" v2="1735" v3="1736" />+                <face v1="1188" v2="1200" v3="1201" />+                <face v1="1188" v2="1201" v3="1189" />+                <face v1="1189" v2="1201" v3="1202" />+                <face v1="1189" v2="1202" v3="1190" />+                <face v1="1190" v2="1202" v3="1203" />+                <face v1="1190" v2="1203" v3="1191" />+                <face v1="1191" v2="1203" v3="1204" />+                <face v1="1191" v2="1204" v3="1192" />+                <face v1="1192" v2="1204" v3="1193" />+                <face v1="1193" v2="1206" v3="1194" />+                <face v1="1194" v2="1206" v3="1207" />+                <face v1="1194" v2="1207" v3="1195" />+                <face v1="1195" v2="1207" v3="1208" />+                <face v1="1195" v2="1208" v3="1196" />+                <face v1="1196" v2="1208" v3="1209" />+                <face v1="1196" v2="1209" v3="1197" />+                <face v1="1197" v2="1209" v3="1210" />+                <face v1="1197" v2="1210" v3="1198" />+                <face v1="1198" v2="1210" v3="1223" />+                <face v1="1198" v2="1223" v3="1199" />+                <face v1="1199" v2="1223" v3="1737" />+                <face v1="1199" v2="1738" v3="1739" />+                <face v1="1200" v2="1212" v3="1213" />+                <face v1="1200" v2="1213" v3="1201" />+                <face v1="1201" v2="1213" v3="1214" />+                <face v1="1201" v2="1214" v3="1202" />+                <face v1="1202" v2="1214" v3="1215" />+                <face v1="1202" v2="1215" v3="1203" />+                <face v1="1203" v2="1215" v3="1216" />+                <face v1="1203" v2="1216" v3="1204" />+                <face v1="1204" v2="1216" v3="1193" />+                <face v1="1206" v2="1219" v3="1207" />+                <face v1="1207" v2="1219" v3="1220" />+                <face v1="1207" v2="1220" v3="1208" />+                <face v1="1208" v2="1220" v3="1221" />+                <face v1="1208" v2="1221" v3="1209" />+                <face v1="1209" v2="1221" v3="1222" />+                <face v1="1209" v2="1222" v3="1210" />+                <face v1="1210" v2="1222" v3="1223" />+                <face v1="1223" v2="1741" v3="1742" />+                <face v1="1212" v2="1747" v3="1225" />+                <face v1="1212" v2="1225" v3="1213" />+                <face v1="1213" v2="1225" v3="1226" />+                <face v1="1213" v2="1226" v3="1214" />+                <face v1="1214" v2="1226" v3="1227" />+                <face v1="1214" v2="1227" v3="1215" />+                <face v1="1215" v2="1227" v3="1216" />+                <face v1="1216" v2="1229" v3="1193" />+                <face v1="1193" v2="1229" v3="1230" />+                <face v1="1193" v2="1230" v3="1206" />+                <face v1="1206" v2="1230" v3="1231" />+                <face v1="1206" v2="1231" v3="1219" />+                <face v1="1219" v2="1231" v3="1232" />+                <face v1="1219" v2="1232" v3="1220" />+                <face v1="1220" v2="1232" v3="1245" />+                <face v1="1220" v2="1245" v3="1221" />+                <face v1="1221" v2="1245" v3="1234" />+                <face v1="1221" v2="1234" v3="1222" />+                <face v1="1222" v2="1234" v3="1283" />+                <face v1="1222" v2="1283" v3="1223" />+                <face v1="1223" v2="1283" v3="1747" />+                <face v1="1223" v2="1747" v3="1745" />+                <face v1="1747" v2="1237" v3="1225" />+                <face v1="1225" v2="1237" v3="1226" />+                <face v1="1226" v2="1239" v3="1227" />+                <face v1="1227" v2="1239" v3="1240" />+                <face v1="1227" v2="1240" v3="1216" />+                <face v1="1216" v2="1240" v3="1229" />+                <face v1="1229" v2="1266" v3="1230" />+                <face v1="1230" v2="1266" v3="1255" />+                <face v1="1230" v2="1255" v3="1231" />+                <face v1="1231" v2="1255" v3="1244" />+                <face v1="1231" v2="1244" v3="1232" />+                <face v1="1232" v2="1244" v3="1245" />+                <face v1="1245" v2="1246" v3="1234" />+                <face v1="1234" v2="1246" v3="1283" />+                <face v1="1237" v2="1250" v3="1226" />+                <face v1="1226" v2="1250" v3="1239" />+                <face v1="1240" v2="1289" v3="1229" />+                <face v1="1229" v2="1289" v3="1266" />+                <face v1="1244" v2="1269" v3="1245" />+                <face v1="1245" v2="1269" v3="1294" />+                <face v1="1245" v2="1294" v3="1246" />+                <face v1="1246" v2="1294" v3="1283" />+                <face v1="1751" v2="1260" v3="1237" />+                <face v1="1237" v2="1262" v3="1250" />+                <face v1="1250" v2="1262" v3="1263" />+                <face v1="1250" v2="1263" v3="1239" />+                <face v1="1239" v2="1263" v3="1240" />+                <face v1="1283" v2="1753" v3="1751" />+                <face v1="1260" v2="1273" v3="1237" />+                <face v1="1237" v2="1273" v3="1262" />+                <face v1="1289" v2="1278" v3="1266" />+                <face v1="1266" v2="1278" v3="1255" />+                <face v1="1255" v2="1280" v3="1244" />+                <face v1="1244" v2="1280" v3="1269" />+                <face v1="1757" v2="1780" v3="1273" />+                <face v1="1278" v2="1291" v3="1255" />+                <face v1="1255" v2="1291" v3="1280" />+                <face v1="1283" v2="1780" v3="1757" />+                <face v1="1280" v2="1377" v3="1269" />+                <face v1="1269" v2="1377" v3="1294" />+                <face v1="1262" v2="1311" v3="1263" />+                <face v1="1263" v2="1311" v3="1240" />+                <face v1="1291" v2="1316" v3="1280" />+                <face v1="1280" v2="1316" v3="1377" />+                <face v1="1273" v2="1334" v3="1262" />+                <face v1="1262" v2="1334" v3="1311" />+                <face v1="1780" v2="1357" v3="1273" />+                <face v1="1273" v2="1357" v3="1334" />+                <face v1="1311" v2="1348" v3="1240" />+                <face v1="1240" v2="1348" v3="1289" />+                <face v1="1311" v2="1372" v3="1348" />+                <face v1="1348" v2="1372" v3="1289" />+                <face v1="1291" v2="1364" v3="1316" />+                <face v1="1316" v2="1364" v3="1377" />+                <face v1="1377" v2="1366" v3="1294" />+                <face v1="1294" v2="1366" v3="1283" />+                <face v1="1334" v2="1383" v3="1311" />+                <face v1="1311" v2="1383" v3="1372" />+                <face v1="1372" v2="1385" v3="1289" />+                <face v1="1289" v2="1385" v3="1374" />+                <face v1="1289" v2="1374" v3="1278" />+                <face v1="1278" v2="1374" v3="1291" />+                <face v1="1383" v2="1396" v3="1372" />+                <face v1="1372" v2="1396" v3="1385" />+                <face v1="1366" v2="1391" v3="1283" />+                <face v1="1283" v2="1391" v3="1784" />+                <face v1="1334" v2="1407" v3="1383" />+                <face v1="1383" v2="1407" v3="1396" />+                <face v1="1396" v2="1409" v3="1385" />+                <face v1="1385" v2="1409" v3="1398" />+                <face v1="1385" v2="1398" v3="1374" />+                <face v1="1374" v2="1398" v3="1399" />+                <face v1="1374" v2="1399" v3="1291" />+                <face v1="1291" v2="1399" v3="1400" />+                <face v1="1291" v2="1400" v3="1364" />+                <face v1="1364" v2="1400" v3="1401" />+                <face v1="1364" v2="1401" v3="1377" />+                <face v1="1377" v2="1401" v3="1402" />+                <face v1="1377" v2="1402" v3="1366" />+                <face v1="1366" v2="1402" v3="1391" />+                <face v1="1784" v2="1404" v3="1405" />+                <face v1="1784" v2="1405" v3="1357" />+                <face v1="1357" v2="1405" v3="1406" />+                <face v1="1357" v2="1406" v3="1334" />+                <face v1="1334" v2="1406" v3="1407" />+                <face v1="1407" v2="1420" v3="1396" />+                <face v1="1396" v2="1420" v3="1409" />+                <face v1="1402" v2="1415" v3="1391" />+                <face v1="1391" v2="1415" v3="1788" />+                <face v1="1391" v2="1789" v3="1784" />+                <face v1="1404" v2="1795" v3="1429" />+                <face v1="1404" v2="1429" v3="1405" />+                <face v1="1405" v2="1429" v3="1430" />+                <face v1="1405" v2="1430" v3="1406" />+                <face v1="1406" v2="1430" v3="1419" />+                <face v1="1406" v2="1419" v3="1407" />+                <face v1="1407" v2="1419" v3="1420" />+                <face v1="1420" v2="1433" v3="1409" />+                <face v1="1409" v2="1433" v3="1422" />+                <face v1="1409" v2="1422" v3="1398" />+                <face v1="1398" v2="1422" v3="1399" />+                <face v1="1400" v2="1425" v3="1401" />+                <face v1="1401" v2="1425" v3="1426" />+                <face v1="1401" v2="1426" v3="1402" />+                <face v1="1402" v2="1426" v3="1439" />+                <face v1="1402" v2="1439" v3="1415" />+                <face v1="1415" v2="1439" v3="1795" />+                <face v1="1415" v2="1795" v3="1793" />+                <face v1="1430" v2="1431" v3="1419" />+                <face v1="1419" v2="1431" v3="1432" />+                <face v1="1419" v2="1432" v3="1420" />+                <face v1="1420" v2="1432" v3="1433" />+                <face v1="1433" v2="1434" v3="1422" />+                <face v1="1422" v2="1434" v3="1399" />+                <face v1="1399" v2="1436" v3="1400" />+                <face v1="1400" v2="1436" v3="1437" />+                <face v1="1400" v2="1437" v3="1425" />+                <face v1="1425" v2="1437" v3="1438" />+                <face v1="1425" v2="1438" v3="1426" />+                <face v1="1426" v2="1438" v3="1439" />+                <face v1="1428" v2="1797" v3="1798" />+                <face v1="1428" v2="1799" v3="1429" />+                <face v1="1429" v2="1800" v3="1801" />+                <face v1="1429" v2="1802" v3="1430" />+                <face v1="1430" v2="1803" v3="1804" />+                <face v1="1430" v2="1805" v3="1431" />+                <face v1="1431" v2="1806" v3="1807" />+                <face v1="1431" v2="1808" v3="1432" />+                <face v1="1432" v2="1809" v3="1810" />+                <face v1="1432" v2="1811" v3="1433" />+                <face v1="1433" v2="1812" v3="1813" />+                <face v1="1433" v2="1814" v3="1434" />+                <face v1="1434" v2="1815" v3="1816" />+                <face v1="1434" v2="1817" v3="1399" />+                <face v1="1399" v2="1818" v3="1819" />+                <face v1="1399" v2="1820" v3="1436" />+                <face v1="1436" v2="1821" v3="1822" />+                <face v1="1436" v2="1823" v3="1437" />+                <face v1="1437" v2="1824" v3="1825" />+                <face v1="1437" v2="1826" v3="1438" />+                <face v1="1438" v2="1827" v3="1828" />+                <face v1="1438" v2="1829" v3="1439" />+                <face v1="1439" v2="1830" v3="1831" />+                <face v1="1439" v2="1832" v3="1833" />+            </lodfacelist>+        </lodgenerated>+        <lodgenerated value="1500">+            <lodfacelist submeshindex="0" numfaces="1476">+                <face v1="0" v2="25" v3="1" />+                <face v1="1" v2="25" v3="26" />+                <face v1="1" v2="26" v3="2" />+                <face v1="2" v2="26" v3="15" />+                <face v1="2" v2="15" v3="3" />+                <face v1="3" v2="15" v3="16" />+                <face v1="3" v2="16" v3="4" />+                <face v1="4" v2="16" v3="17" />+                <face v1="4" v2="17" v3="5" />+                <face v1="5" v2="17" v3="6" />+                <face v1="8" v2="21" v3="9" />+                <face v1="9" v2="21" v3="22" />+                <face v1="9" v2="22" v3="10" />+                <face v1="10" v2="22" v3="23" />+                <face v1="10" v2="23" v3="11" />+                <face v1="11" v2="23" v3="1442" />+                <face v1="1442" v2="24" v3="25" />+                <face v1="26" v2="27" v3="15" />+                <face v1="15" v2="27" v3="28" />+                <face v1="15" v2="28" v3="16" />+                <face v1="16" v2="28" v3="29" />+                <face v1="16" v2="29" v3="17" />+                <face v1="17" v2="29" v3="30" />+                <face v1="17" v2="30" v3="6" />+                <face v1="6" v2="30" v3="7" />+                <face v1="7" v2="32" v3="8" />+                <face v1="8" v2="32" v3="33" />+                <face v1="8" v2="33" v3="21" />+                <face v1="21" v2="33" v3="34" />+                <face v1="21" v2="34" v3="22" />+                <face v1="22" v2="34" v3="35" />+                <face v1="22" v2="35" v3="23" />+                <face v1="23" v2="35" v3="1443" />+                <face v1="23" v2="1444" v3="1442" />+                <face v1="24" v2="36" v3="49" />+                <face v1="24" v2="49" v3="25" />+                <face v1="25" v2="49" v3="38" />+                <face v1="25" v2="38" v3="26" />+                <face v1="26" v2="38" v3="39" />+                <face v1="26" v2="39" v3="27" />+                <face v1="27" v2="39" v3="40" />+                <face v1="27" v2="40" v3="28" />+                <face v1="28" v2="40" v3="41" />+                <face v1="28" v2="41" v3="29" />+                <face v1="29" v2="41" v3="42" />+                <face v1="29" v2="42" v3="30" />+                <face v1="30" v2="42" v3="43" />+                <face v1="30" v2="43" v3="7" />+                <face v1="7" v2="43" v3="44" />+                <face v1="7" v2="44" v3="32" />+                <face v1="32" v2="44" v3="45" />+                <face v1="32" v2="45" v3="33" />+                <face v1="33" v2="45" v3="46" />+                <face v1="33" v2="46" v3="34" />+                <face v1="34" v2="46" v3="47" />+                <face v1="34" v2="47" v3="35" />+                <face v1="35" v2="47" v3="1446" />+                <face v1="35" v2="1447" v3="1448" />+                <face v1="49" v2="50" v3="38" />+                <face v1="38" v2="50" v3="51" />+                <face v1="38" v2="51" v3="39" />+                <face v1="39" v2="51" v3="52" />+                <face v1="39" v2="52" v3="40" />+                <face v1="40" v2="52" v3="53" />+                <face v1="40" v2="53" v3="41" />+                <face v1="41" v2="53" v3="42" />+                <face v1="43" v2="56" v3="44" />+                <face v1="44" v2="56" v3="57" />+                <face v1="44" v2="57" v3="45" />+                <face v1="45" v2="57" v3="58" />+                <face v1="45" v2="58" v3="46" />+                <face v1="46" v2="58" v3="59" />+                <face v1="46" v2="59" v3="47" />+                <face v1="47" v2="59" v3="1451" />+                <face v1="1451" v2="60" v3="73" />+                <face v1="1451" v2="73" v3="49" />+                <face v1="49" v2="73" v3="62" />+                <face v1="49" v2="62" v3="50" />+                <face v1="50" v2="62" v3="63" />+                <face v1="50" v2="63" v3="51" />+                <face v1="51" v2="63" v3="64" />+                <face v1="51" v2="64" v3="52" />+                <face v1="52" v2="64" v3="65" />+                <face v1="52" v2="65" v3="53" />+                <face v1="53" v2="65" v3="66" />+                <face v1="53" v2="66" v3="42" />+                <face v1="42" v2="66" v3="67" />+                <face v1="42" v2="67" v3="43" />+                <face v1="43" v2="67" v3="68" />+                <face v1="43" v2="68" v3="56" />+                <face v1="56" v2="68" v3="69" />+                <face v1="56" v2="69" v3="57" />+                <face v1="57" v2="69" v3="70" />+                <face v1="57" v2="70" v3="58" />+                <face v1="58" v2="70" v3="71" />+                <face v1="58" v2="71" v3="59" />+                <face v1="59" v2="71" v3="1452" />+                <face v1="59" v2="1453" v3="1451" />+                <face v1="73" v2="74" v3="62" />+                <face v1="62" v2="74" v3="75" />+                <face v1="62" v2="75" v3="63" />+                <face v1="63" v2="75" v3="76" />+                <face v1="63" v2="76" v3="64" />+                <face v1="64" v2="76" v3="77" />+                <face v1="64" v2="77" v3="65" />+                <face v1="65" v2="77" v3="66" />+                <face v1="66" v2="79" v3="67" />+                <face v1="67" v2="79" v3="80" />+                <face v1="67" v2="80" v3="68" />+                <face v1="68" v2="80" v3="81" />+                <face v1="68" v2="81" v3="69" />+                <face v1="69" v2="81" v3="82" />+                <face v1="69" v2="82" v3="70" />+                <face v1="70" v2="82" v3="83" />+                <face v1="70" v2="83" v3="71" />+                <face v1="71" v2="83" v3="1457" />+                <face v1="1457" v2="84" v3="73" />+                <face v1="73" v2="86" v3="74" />+                <face v1="74" v2="86" v3="87" />+                <face v1="74" v2="87" v3="75" />+                <face v1="75" v2="87" v3="88" />+                <face v1="75" v2="88" v3="76" />+                <face v1="76" v2="88" v3="77" />+                <face v1="77" v2="90" v3="66" />+                <face v1="66" v2="90" v3="103" />+                <face v1="66" v2="103" v3="79" />+                <face v1="79" v2="103" v3="92" />+                <face v1="79" v2="92" v3="80" />+                <face v1="80" v2="92" v3="93" />+                <face v1="80" v2="93" v3="81" />+                <face v1="81" v2="93" v3="94" />+                <face v1="81" v2="94" v3="82" />+                <face v1="82" v2="94" v3="83" />+                <face v1="83" v2="1459" v3="1457" />+                <face v1="84" v2="97" v3="73" />+                <face v1="73" v2="97" v3="98" />+                <face v1="73" v2="98" v3="86" />+                <face v1="86" v2="98" v3="99" />+                <face v1="86" v2="99" v3="87" />+                <face v1="87" v2="99" v3="100" />+                <face v1="87" v2="100" v3="88" />+                <face v1="88" v2="100" v3="101" />+                <face v1="88" v2="101" v3="77" />+                <face v1="77" v2="101" v3="90" />+                <face v1="103" v2="104" v3="92" />+                <face v1="92" v2="104" v3="105" />+                <face v1="92" v2="105" v3="93" />+                <face v1="93" v2="105" v3="106" />+                <face v1="93" v2="106" v3="94" />+                <face v1="94" v2="106" v3="107" />+                <face v1="94" v2="107" v3="83" />+                <face v1="83" v2="107" v3="1463" />+                <face v1="1463" v2="108" v3="97" />+                <face v1="97" v2="110" v3="98" />+                <face v1="98" v2="110" v3="111" />+                <face v1="98" v2="111" v3="99" />+                <face v1="99" v2="111" v3="112" />+                <face v1="99" v2="112" v3="100" />+                <face v1="100" v2="112" v3="101" />+                <face v1="101" v2="138" v3="90" />+                <face v1="90" v2="138" v3="127" />+                <face v1="90" v2="127" v3="103" />+                <face v1="103" v2="127" v3="116" />+                <face v1="103" v2="116" v3="104" />+                <face v1="104" v2="116" v3="117" />+                <face v1="104" v2="117" v3="105" />+                <face v1="105" v2="117" v3="118" />+                <face v1="105" v2="118" v3="106" />+                <face v1="106" v2="118" v3="107" />+                <face v1="107" v2="1465" v3="1463" />+                <face v1="108" v2="121" v3="97" />+                <face v1="97" v2="121" v3="122" />+                <face v1="97" v2="122" v3="110" />+                <face v1="110" v2="122" v3="123" />+                <face v1="110" v2="123" v3="111" />+                <face v1="111" v2="123" v3="112" />+                <face v1="112" v2="125" v3="101" />+                <face v1="101" v2="125" v3="138" />+                <face v1="127" v2="140" v3="116" />+                <face v1="116" v2="140" v3="129" />+                <face v1="116" v2="129" v3="117" />+                <face v1="117" v2="129" v3="118" />+                <face v1="118" v2="131" v3="107" />+                <face v1="107" v2="131" v3="1469" />+                <face v1="121" v2="134" v3="122" />+                <face v1="122" v2="134" v3="135" />+                <face v1="122" v2="135" v3="123" />+                <face v1="123" v2="135" v3="136" />+                <face v1="123" v2="136" v3="112" />+                <face v1="112" v2="136" v3="125" />+                <face v1="140" v2="141" v3="129" />+                <face v1="129" v2="141" v3="142" />+                <face v1="129" v2="142" v3="118" />+                <face v1="118" v2="142" v3="143" />+                <face v1="118" v2="143" v3="131" />+                <face v1="131" v2="143" v3="1469" />+                <face v1="1469" v2="1477" v3="145" />+                <face v1="1469" v2="145" v3="121" />+                <face v1="121" v2="145" v3="146" />+                <face v1="121" v2="146" v3="134" />+                <face v1="134" v2="146" v3="147" />+                <face v1="134" v2="147" v3="135" />+                <face v1="135" v2="147" v3="148" />+                <face v1="135" v2="148" v3="136" />+                <face v1="136" v2="148" v3="149" />+                <face v1="136" v2="149" v3="125" />+                <face v1="125" v2="149" v3="138" />+                <face v1="138" v2="151" v3="127" />+                <face v1="127" v2="151" v3="152" />+                <face v1="127" v2="152" v3="140" />+                <face v1="140" v2="152" v3="153" />+                <face v1="140" v2="153" v3="141" />+                <face v1="141" v2="153" v3="154" />+                <face v1="141" v2="154" v3="142" />+                <face v1="142" v2="154" v3="143" />+                <face v1="143" v2="1477" v3="1469" />+                <face v1="1477" v2="169" v3="145" />+                <face v1="145" v2="169" v3="158" />+                <face v1="145" v2="158" v3="146" />+                <face v1="146" v2="158" v3="159" />+                <face v1="146" v2="159" v3="147" />+                <face v1="147" v2="159" v3="160" />+                <face v1="147" v2="160" v3="148" />+                <face v1="148" v2="160" v3="149" />+                <face v1="149" v2="162" v3="138" />+                <face v1="138" v2="162" v3="163" />+                <face v1="138" v2="163" v3="151" />+                <face v1="151" v2="163" v3="164" />+                <face v1="151" v2="164" v3="152" />+                <face v1="152" v2="164" v3="165" />+                <face v1="152" v2="165" v3="153" />+                <face v1="153" v2="165" v3="166" />+                <face v1="153" v2="166" v3="154" />+                <face v1="154" v2="166" v3="167" />+                <face v1="154" v2="167" v3="143" />+                <face v1="143" v2="167" v3="1476" />+                <face v1="156" v2="1483" v3="169" />+                <face v1="169" v2="170" v3="158" />+                <face v1="158" v2="170" v3="171" />+                <face v1="158" v2="171" v3="159" />+                <face v1="159" v2="171" v3="172" />+                <face v1="159" v2="172" v3="160" />+                <face v1="160" v2="172" v3="173" />+                <face v1="160" v2="173" v3="149" />+                <face v1="149" v2="173" v3="162" />+                <face v1="162" v2="175" v3="163" />+                <face v1="163" v2="175" v3="176" />+                <face v1="163" v2="176" v3="164" />+                <face v1="164" v2="176" v3="177" />+                <face v1="164" v2="177" v3="165" />+                <face v1="165" v2="177" v3="178" />+                <face v1="165" v2="178" v3="166" />+                <face v1="166" v2="178" v3="167" />+                <face v1="167" v2="1483" v3="1481" />+                <face v1="1483" v2="181" v3="169" />+                <face v1="169" v2="181" v3="182" />+                <face v1="169" v2="182" v3="170" />+                <face v1="170" v2="182" v3="183" />+                <face v1="170" v2="183" v3="171" />+                <face v1="171" v2="183" v3="184" />+                <face v1="171" v2="184" v3="172" />+                <face v1="172" v2="184" v3="185" />+                <face v1="172" v2="185" v3="173" />+                <face v1="173" v2="185" v3="186" />+                <face v1="173" v2="186" v3="162" />+                <face v1="162" v2="186" v3="187" />+                <face v1="162" v2="187" v3="175" />+                <face v1="175" v2="187" v3="188" />+                <face v1="175" v2="188" v3="176" />+                <face v1="176" v2="188" v3="189" />+                <face v1="176" v2="189" v3="177" />+                <face v1="177" v2="189" v3="190" />+                <face v1="177" v2="190" v3="178" />+                <face v1="178" v2="190" v3="191" />+                <face v1="178" v2="191" v3="167" />+                <face v1="167" v2="191" v3="1482" />+                <face v1="180" v2="1489" v3="193" />+                <face v1="180" v2="193" v3="181" />+                <face v1="181" v2="193" v3="194" />+                <face v1="181" v2="194" v3="182" />+                <face v1="182" v2="194" v3="195" />+                <face v1="182" v2="195" v3="183" />+                <face v1="183" v2="195" v3="196" />+                <face v1="183" v2="196" v3="184" />+                <face v1="184" v2="196" v3="185" />+                <face v1="186" v2="199" v3="187" />+                <face v1="187" v2="199" v3="200" />+                <face v1="187" v2="200" v3="188" />+                <face v1="188" v2="200" v3="201" />+                <face v1="188" v2="201" v3="189" />+                <face v1="189" v2="201" v3="202" />+                <face v1="189" v2="202" v3="190" />+                <face v1="190" v2="202" v3="191" />+                <face v1="191" v2="1489" v3="1487" />+                <face v1="1489" v2="205" v3="193" />+                <face v1="193" v2="205" v3="206" />+                <face v1="193" v2="206" v3="194" />+                <face v1="194" v2="206" v3="207" />+                <face v1="194" v2="207" v3="195" />+                <face v1="195" v2="207" v3="208" />+                <face v1="195" v2="208" v3="196" />+                <face v1="196" v2="208" v3="209" />+                <face v1="196" v2="209" v3="185" />+                <face v1="185" v2="209" v3="210" />+                <face v1="185" v2="210" v3="186" />+                <face v1="186" v2="210" v3="211" />+                <face v1="186" v2="211" v3="199" />+                <face v1="199" v2="211" v3="212" />+                <face v1="199" v2="212" v3="200" />+                <face v1="200" v2="212" v3="213" />+                <face v1="200" v2="213" v3="201" />+                <face v1="201" v2="213" v3="214" />+                <face v1="201" v2="214" v3="202" />+                <face v1="202" v2="214" v3="215" />+                <face v1="202" v2="215" v3="191" />+                <face v1="191" v2="215" v3="1488" />+                <face v1="204" v2="216" v3="217" />+                <face v1="204" v2="217" v3="205" />+                <face v1="205" v2="217" v3="218" />+                <face v1="205" v2="218" v3="206" />+                <face v1="206" v2="218" v3="219" />+                <face v1="206" v2="219" v3="207" />+                <face v1="207" v2="219" v3="220" />+                <face v1="207" v2="220" v3="208" />+                <face v1="208" v2="220" v3="209" />+                <face v1="209" v2="222" v3="210" />+                <face v1="210" v2="222" v3="223" />+                <face v1="210" v2="223" v3="211" />+                <face v1="211" v2="223" v3="224" />+                <face v1="211" v2="224" v3="212" />+                <face v1="212" v2="224" v3="225" />+                <face v1="212" v2="225" v3="213" />+                <face v1="213" v2="225" v3="226" />+                <face v1="213" v2="226" v3="214" />+                <face v1="214" v2="226" v3="215" />+                <face v1="215" v2="1492" v3="1493" />+                <face v1="216" v2="1498" v3="229" />+                <face v1="216" v2="229" v3="217" />+                <face v1="217" v2="229" v3="230" />+                <face v1="217" v2="230" v3="218" />+                <face v1="218" v2="230" v3="231" />+                <face v1="218" v2="231" v3="219" />+                <face v1="219" v2="231" v3="220" />+                <face v1="220" v2="233" v3="209" />+                <face v1="209" v2="233" v3="246" />+                <face v1="209" v2="246" v3="222" />+                <face v1="222" v2="246" v3="235" />+                <face v1="222" v2="235" v3="223" />+                <face v1="223" v2="235" v3="236" />+                <face v1="223" v2="236" v3="224" />+                <face v1="224" v2="236" v3="237" />+                <face v1="224" v2="237" v3="225" />+                <face v1="225" v2="237" v3="238" />+                <face v1="225" v2="238" v3="226" />+                <face v1="226" v2="238" v3="239" />+                <face v1="226" v2="239" v3="215" />+                <face v1="215" v2="239" v3="1498" />+                <face v1="215" v2="1498" v3="1496" />+                <face v1="229" v2="242" v3="230" />+                <face v1="230" v2="242" v3="231" />+                <face v1="231" v2="244" v3="220" />+                <face v1="220" v2="244" v3="233" />+                <face v1="235" v2="248" v3="236" />+                <face v1="236" v2="248" v3="249" />+                <face v1="236" v2="249" v3="237" />+                <face v1="237" v2="249" v3="262" />+                <face v1="237" v2="262" v3="238" />+                <face v1="238" v2="262" v3="323" />+                <face v1="238" v2="323" v3="239" />+                <face v1="239" v2="323" v3="1497" />+                <face v1="240" v2="253" v3="229" />+                <face v1="229" v2="253" v3="242" />+                <face v1="242" v2="255" v3="231" />+                <face v1="231" v2="255" v3="244" />+                <face v1="246" v2="259" v3="235" />+                <face v1="235" v2="259" v3="248" />+                <face v1="248" v2="273" v3="249" />+                <face v1="249" v2="273" v3="262" />+                <face v1="1502" v2="264" v3="253" />+                <face v1="253" v2="266" v3="242" />+                <face v1="242" v2="266" v3="255" />+                <face v1="233" v2="270" v3="246" />+                <face v1="246" v2="270" v3="283" />+                <face v1="246" v2="283" v3="259" />+                <face v1="259" v2="283" v3="272" />+                <face v1="259" v2="272" v3="248" />+                <face v1="248" v2="272" v3="273" />+                <face v1="273" v2="274" v3="262" />+                <face v1="262" v2="274" v3="323" />+                <face v1="323" v2="1504" v3="1502" />+                <face v1="264" v2="277" v3="253" />+                <face v1="253" v2="277" v3="266" />+                <face v1="266" v2="279" v3="255" />+                <face v1="255" v2="279" v3="244" />+                <face v1="270" v2="233" v3="283" />+                <face v1="283" v2="296" v3="272" />+                <face v1="272" v2="296" v3="273" />+                <face v1="273" v2="286" v3="274" />+                <face v1="274" v2="286" v3="323" />+                <face v1="277" v2="290" v3="266" />+                <face v1="266" v2="290" v3="279" />+                <face v1="279" v2="292" v3="244" />+                <face v1="244" v2="292" v3="233" />+                <face v1="233" v2="318" v3="283" />+                <face v1="1508" v2="301" v3="277" />+                <face v1="277" v2="301" v3="290" />+                <face v1="292" v2="377" v3="233" />+                <face v1="233" v2="377" v3="318" />+                <face v1="1508" v2="312" v3="301" />+                <face v1="279" v2="316" v3="292" />+                <face v1="292" v2="316" v3="377" />+                <face v1="296" v2="321" v3="273" />+                <face v1="273" v2="321" v3="286" />+                <face v1="323" v2="1516" v3="1508" />+                <face v1="318" v2="331" v3="283" />+                <face v1="283" v2="331" v3="296" />+                <face v1="1520" v2="397" v3="301" />+                <face v1="301" v2="397" v3="362" />+                <face v1="301" v2="362" v3="290" />+                <face v1="290" v2="362" v3="279" />+                <face v1="331" v2="380" v3="296" />+                <face v1="296" v2="380" v3="321" />+                <face v1="362" v2="399" v3="279" />+                <face v1="279" v2="399" v3="316" />+                <face v1="397" v2="434" v3="362" />+                <face v1="362" v2="434" v3="399" />+                <face v1="399" v2="412" v3="316" />+                <face v1="316" v2="412" v3="377" />+                <face v1="321" v2="406" v3="286" />+                <face v1="286" v2="406" v3="323" />+                <face v1="380" v2="417" v3="321" />+                <face v1="321" v2="417" v3="406" />+                <face v1="399" v2="436" v3="412" />+                <face v1="412" v2="436" v3="377" />+                <face v1="406" v2="431" v3="323" />+                <face v1="323" v2="431" v3="1520" />+                <face v1="1520" v2="1549" v3="397" />+                <face v1="434" v2="447" v3="399" />+                <face v1="399" v2="447" v3="436" />+                <face v1="436" v2="449" v3="377" />+                <face v1="377" v2="449" v3="438" />+                <face v1="377" v2="438" v3="318" />+                <face v1="318" v2="438" v3="439" />+                <face v1="318" v2="439" v3="331" />+                <face v1="331" v2="439" v3="380" />+                <face v1="417" v2="442" v3="406" />+                <face v1="406" v2="442" v3="431" />+                <face v1="431" v2="1549" v3="1520" />+                <face v1="397" v2="458" v3="434" />+                <face v1="434" v2="458" v3="447" />+                <face v1="447" v2="460" v3="436" />+                <face v1="436" v2="460" v3="449" />+                <face v1="439" v2="452" v3="380" />+                <face v1="380" v2="452" v3="417" />+                <face v1="442" v2="479" v3="431" />+                <face v1="431" v2="479" v3="1548" />+                <face v1="444" v2="493" v3="397" />+                <face v1="397" v2="493" v3="458" />+                <face v1="458" v2="471" v3="447" />+                <face v1="447" v2="471" v3="460" />+                <face v1="460" v2="473" v3="449" />+                <face v1="449" v2="473" v3="462" />+                <face v1="449" v2="462" v3="438" />+                <face v1="438" v2="462" v3="439" />+                <face v1="452" v2="465" v3="417" />+                <face v1="417" v2="465" v3="466" />+                <face v1="417" v2="466" v3="442" />+                <face v1="442" v2="466" v3="479" />+                <face v1="493" v2="482" v3="458" />+                <face v1="458" v2="482" v3="471" />+                <face v1="471" v2="484" v3="460" />+                <face v1="460" v2="484" v3="473" />+                <face v1="1553" v2="480" v3="493" />+                <face v1="482" v2="495" v3="471" />+                <face v1="471" v2="495" v3="484" />+                <face v1="473" v2="486" v3="462" />+                <face v1="462" v2="486" v3="439" />+                <face v1="439" v2="488" v3="452" />+                <face v1="452" v2="488" v3="489" />+                <face v1="452" v2="489" v3="465" />+                <face v1="465" v2="489" v3="490" />+                <face v1="465" v2="490" v3="466" />+                <face v1="466" v2="490" v3="479" />+                <face v1="479" v2="1558" v3="1553" />+                <face v1="493" v2="506" v3="482" />+                <face v1="482" v2="506" v3="495" />+                <face v1="495" v2="496" v3="484" />+                <face v1="484" v2="496" v3="497" />+                <face v1="484" v2="497" v3="473" />+                <face v1="473" v2="497" v3="486" />+                <face v1="486" v2="499" v3="439" />+                <face v1="439" v2="499" v3="500" />+                <face v1="439" v2="500" v3="488" />+                <face v1="488" v2="500" v3="501" />+                <face v1="488" v2="501" v3="489" />+                <face v1="489" v2="501" v3="502" />+                <face v1="489" v2="502" v3="490" />+                <face v1="490" v2="502" v3="503" />+                <face v1="490" v2="503" v3="479" />+                <face v1="479" v2="503" v3="1562" />+                <face v1="1562" v2="504" v3="517" />+                <face v1="1562" v2="517" v3="493" />+                <face v1="493" v2="517" v3="506" />+                <face v1="506" v2="507" v3="495" />+                <face v1="495" v2="507" v3="508" />+                <face v1="495" v2="508" v3="496" />+                <face v1="496" v2="508" v3="509" />+                <face v1="496" v2="509" v3="497" />+                <face v1="497" v2="509" v3="510" />+                <face v1="497" v2="510" v3="486" />+                <face v1="486" v2="510" v3="499" />+                <face v1="499" v2="512" v3="500" />+                <face v1="500" v2="512" v3="513" />+                <face v1="500" v2="513" v3="501" />+                <face v1="501" v2="513" v3="514" />+                <face v1="501" v2="514" v3="502" />+                <face v1="502" v2="514" v3="515" />+                <face v1="502" v2="515" v3="503" />+                <face v1="503" v2="515" v3="1563" />+                <face v1="503" v2="1564" v3="1562" />+                <face v1="504" v2="516" v3="517" />+                <face v1="517" v2="518" v3="506" />+                <face v1="506" v2="518" v3="519" />+                <face v1="506" v2="519" v3="507" />+                <face v1="507" v2="519" v3="520" />+                <face v1="507" v2="520" v3="508" />+                <face v1="508" v2="520" v3="521" />+                <face v1="508" v2="521" v3="509" />+                <face v1="509" v2="521" v3="522" />+                <face v1="509" v2="522" v3="510" />+                <face v1="510" v2="522" v3="523" />+                <face v1="510" v2="523" v3="499" />+                <face v1="499" v2="523" v3="524" />+                <face v1="499" v2="524" v3="512" />+                <face v1="512" v2="524" v3="525" />+                <face v1="512" v2="525" v3="513" />+                <face v1="513" v2="525" v3="526" />+                <face v1="513" v2="526" v3="514" />+                <face v1="514" v2="526" v3="527" />+                <face v1="514" v2="527" v3="515" />+                <face v1="515" v2="527" v3="1566" />+                <face v1="515" v2="1567" v3="1568" />+                <face v1="516" v2="541" v3="517" />+                <face v1="517" v2="541" v3="530" />+                <face v1="517" v2="530" v3="518" />+                <face v1="518" v2="530" v3="531" />+                <face v1="518" v2="531" v3="519" />+                <face v1="519" v2="531" v3="532" />+                <face v1="519" v2="532" v3="520" />+                <face v1="520" v2="532" v3="533" />+                <face v1="520" v2="533" v3="521" />+                <face v1="521" v2="533" v3="522" />+                <face v1="523" v2="536" v3="524" />+                <face v1="524" v2="536" v3="537" />+                <face v1="524" v2="537" v3="525" />+                <face v1="525" v2="537" v3="538" />+                <face v1="525" v2="538" v3="526" />+                <face v1="526" v2="538" v3="539" />+                <face v1="526" v2="539" v3="527" />+                <face v1="527" v2="539" v3="1571" />+                <face v1="1571" v2="540" v3="541" />+                <face v1="541" v2="542" v3="530" />+                <face v1="530" v2="542" v3="543" />+                <face v1="530" v2="543" v3="531" />+                <face v1="531" v2="543" v3="544" />+                <face v1="531" v2="544" v3="532" />+                <face v1="532" v2="544" v3="545" />+                <face v1="532" v2="545" v3="533" />+                <face v1="533" v2="545" v3="546" />+                <face v1="533" v2="546" v3="522" />+                <face v1="522" v2="546" v3="547" />+                <face v1="522" v2="547" v3="523" />+                <face v1="523" v2="547" v3="548" />+                <face v1="523" v2="548" v3="536" />+                <face v1="536" v2="548" v3="549" />+                <face v1="536" v2="549" v3="537" />+                <face v1="537" v2="549" v3="550" />+                <face v1="537" v2="550" v3="538" />+                <face v1="538" v2="550" v3="551" />+                <face v1="538" v2="551" v3="539" />+                <face v1="539" v2="551" v3="1572" />+                <face v1="539" v2="1573" v3="1571" />+                <face v1="540" v2="553" v3="541" />+                <face v1="541" v2="553" v3="554" />+                <face v1="541" v2="554" v3="542" />+                <face v1="542" v2="554" v3="555" />+                <face v1="542" v2="555" v3="543" />+                <face v1="543" v2="555" v3="556" />+                <face v1="543" v2="556" v3="544" />+                <face v1="544" v2="556" v3="557" />+                <face v1="544" v2="557" v3="545" />+                <face v1="545" v2="557" v3="546" />+                <face v1="546" v2="559" v3="547" />+                <face v1="547" v2="559" v3="560" />+                <face v1="547" v2="560" v3="548" />+                <face v1="548" v2="560" v3="561" />+                <face v1="548" v2="561" v3="549" />+                <face v1="549" v2="561" v3="562" />+                <face v1="549" v2="562" v3="550" />+                <face v1="550" v2="562" v3="563" />+                <face v1="550" v2="563" v3="551" />+                <face v1="551" v2="563" v3="1577" />+                <face v1="1577" v2="564" v3="553" />+                <face v1="553" v2="566" v3="554" />+                <face v1="554" v2="566" v3="567" />+                <face v1="554" v2="567" v3="555" />+                <face v1="555" v2="567" v3="568" />+                <face v1="555" v2="568" v3="556" />+                <face v1="556" v2="568" v3="557" />+                <face v1="557" v2="570" v3="546" />+                <face v1="546" v2="570" v3="583" />+                <face v1="546" v2="583" v3="559" />+                <face v1="559" v2="583" v3="572" />+                <face v1="559" v2="572" v3="560" />+                <face v1="560" v2="572" v3="573" />+                <face v1="560" v2="573" v3="561" />+                <face v1="561" v2="573" v3="574" />+                <face v1="561" v2="574" v3="562" />+                <face v1="562" v2="574" v3="563" />+                <face v1="563" v2="1579" v3="1577" />+                <face v1="564" v2="577" v3="553" />+                <face v1="553" v2="577" v3="578" />+                <face v1="553" v2="578" v3="566" />+                <face v1="566" v2="578" v3="579" />+                <face v1="566" v2="579" v3="567" />+                <face v1="567" v2="579" v3="580" />+                <face v1="567" v2="580" v3="568" />+                <face v1="568" v2="580" v3="581" />+                <face v1="568" v2="581" v3="557" />+                <face v1="557" v2="581" v3="570" />+                <face v1="583" v2="584" v3="572" />+                <face v1="572" v2="584" v3="585" />+                <face v1="572" v2="585" v3="573" />+                <face v1="573" v2="585" v3="586" />+                <face v1="573" v2="586" v3="574" />+                <face v1="574" v2="586" v3="587" />+                <face v1="574" v2="587" v3="563" />+                <face v1="563" v2="587" v3="1583" />+                <face v1="1583" v2="588" v3="577" />+                <face v1="577" v2="590" v3="578" />+                <face v1="578" v2="590" v3="591" />+                <face v1="578" v2="591" v3="579" />+                <face v1="579" v2="591" v3="592" />+                <face v1="579" v2="592" v3="580" />+                <face v1="580" v2="592" v3="581" />+                <face v1="581" v2="618" v3="570" />+                <face v1="570" v2="618" v3="607" />+                <face v1="570" v2="607" v3="583" />+                <face v1="583" v2="607" v3="596" />+                <face v1="583" v2="596" v3="584" />+                <face v1="584" v2="596" v3="597" />+                <face v1="584" v2="597" v3="585" />+                <face v1="585" v2="597" v3="598" />+                <face v1="585" v2="598" v3="586" />+                <face v1="586" v2="598" v3="587" />+                <face v1="587" v2="1585" v3="1583" />+                <face v1="588" v2="601" v3="577" />+                <face v1="577" v2="601" v3="602" />+                <face v1="577" v2="602" v3="590" />+                <face v1="590" v2="602" v3="603" />+                <face v1="590" v2="603" v3="591" />+                <face v1="591" v2="603" v3="592" />+                <face v1="592" v2="605" v3="581" />+                <face v1="581" v2="605" v3="618" />+                <face v1="607" v2="620" v3="596" />+                <face v1="596" v2="620" v3="609" />+                <face v1="596" v2="609" v3="597" />+                <face v1="597" v2="609" v3="598" />+                <face v1="598" v2="611" v3="587" />+                <face v1="587" v2="611" v3="1589" />+                <face v1="601" v2="614" v3="602" />+                <face v1="602" v2="614" v3="615" />+                <face v1="602" v2="615" v3="603" />+                <face v1="603" v2="615" v3="616" />+                <face v1="603" v2="616" v3="592" />+                <face v1="592" v2="616" v3="605" />+                <face v1="620" v2="621" v3="609" />+                <face v1="609" v2="621" v3="622" />+                <face v1="609" v2="622" v3="598" />+                <face v1="598" v2="622" v3="623" />+                <face v1="598" v2="623" v3="611" />+                <face v1="611" v2="623" v3="1589" />+                <face v1="1589" v2="1597" v3="625" />+                <face v1="1589" v2="625" v3="601" />+                <face v1="601" v2="625" v3="626" />+                <face v1="601" v2="626" v3="614" />+                <face v1="614" v2="626" v3="627" />+                <face v1="614" v2="627" v3="615" />+                <face v1="615" v2="627" v3="628" />+                <face v1="615" v2="628" v3="616" />+                <face v1="616" v2="628" v3="629" />+                <face v1="616" v2="629" v3="605" />+                <face v1="605" v2="629" v3="618" />+                <face v1="618" v2="631" v3="607" />+                <face v1="607" v2="631" v3="632" />+                <face v1="607" v2="632" v3="620" />+                <face v1="620" v2="632" v3="633" />+                <face v1="620" v2="633" v3="621" />+                <face v1="621" v2="633" v3="634" />+                <face v1="621" v2="634" v3="622" />+                <face v1="622" v2="634" v3="623" />+                <face v1="623" v2="1597" v3="1589" />+                <face v1="1597" v2="649" v3="625" />+                <face v1="625" v2="649" v3="638" />+                <face v1="625" v2="638" v3="626" />+                <face v1="626" v2="638" v3="639" />+                <face v1="626" v2="639" v3="627" />+                <face v1="627" v2="639" v3="640" />+                <face v1="627" v2="640" v3="628" />+                <face v1="628" v2="640" v3="629" />+                <face v1="629" v2="642" v3="618" />+                <face v1="618" v2="642" v3="643" />+                <face v1="618" v2="643" v3="631" />+                <face v1="631" v2="643" v3="644" />+                <face v1="631" v2="644" v3="632" />+                <face v1="632" v2="644" v3="645" />+                <face v1="632" v2="645" v3="633" />+                <face v1="633" v2="645" v3="646" />+                <face v1="633" v2="646" v3="634" />+                <face v1="634" v2="646" v3="647" />+                <face v1="634" v2="647" v3="623" />+                <face v1="623" v2="647" v3="1596" />+                <face v1="636" v2="1603" v3="649" />+                <face v1="649" v2="650" v3="638" />+                <face v1="638" v2="650" v3="651" />+                <face v1="638" v2="651" v3="639" />+                <face v1="639" v2="651" v3="652" />+                <face v1="639" v2="652" v3="640" />+                <face v1="640" v2="652" v3="653" />+                <face v1="640" v2="653" v3="629" />+                <face v1="629" v2="653" v3="642" />+                <face v1="642" v2="655" v3="643" />+                <face v1="643" v2="655" v3="656" />+                <face v1="643" v2="656" v3="644" />+                <face v1="644" v2="656" v3="657" />+                <face v1="644" v2="657" v3="645" />+                <face v1="645" v2="657" v3="658" />+                <face v1="645" v2="658" v3="646" />+                <face v1="646" v2="658" v3="647" />+                <face v1="647" v2="1603" v3="1601" />+                <face v1="1603" v2="661" v3="649" />+                <face v1="649" v2="661" v3="662" />+                <face v1="649" v2="662" v3="650" />+                <face v1="650" v2="662" v3="663" />+                <face v1="650" v2="663" v3="651" />+                <face v1="651" v2="663" v3="664" />+                <face v1="651" v2="664" v3="652" />+                <face v1="652" v2="664" v3="665" />+                <face v1="652" v2="665" v3="653" />+                <face v1="653" v2="665" v3="666" />+                <face v1="653" v2="666" v3="642" />+                <face v1="642" v2="666" v3="667" />+                <face v1="642" v2="667" v3="655" />+                <face v1="655" v2="667" v3="668" />+                <face v1="655" v2="668" v3="656" />+                <face v1="656" v2="668" v3="669" />+                <face v1="656" v2="669" v3="657" />+                <face v1="657" v2="669" v3="670" />+                <face v1="657" v2="670" v3="658" />+                <face v1="658" v2="670" v3="671" />+                <face v1="658" v2="671" v3="647" />+                <face v1="647" v2="671" v3="1602" />+                <face v1="660" v2="1609" v3="673" />+                <face v1="660" v2="673" v3="661" />+                <face v1="661" v2="673" v3="674" />+                <face v1="661" v2="674" v3="662" />+                <face v1="662" v2="674" v3="675" />+                <face v1="662" v2="675" v3="663" />+                <face v1="663" v2="675" v3="676" />+                <face v1="663" v2="676" v3="664" />+                <face v1="664" v2="676" v3="665" />+                <face v1="666" v2="679" v3="667" />+                <face v1="667" v2="679" v3="680" />+                <face v1="667" v2="680" v3="668" />+                <face v1="668" v2="680" v3="681" />+                <face v1="668" v2="681" v3="669" />+                <face v1="669" v2="681" v3="682" />+                <face v1="669" v2="682" v3="670" />+                <face v1="670" v2="682" v3="671" />+                <face v1="671" v2="1609" v3="1607" />+                <face v1="1609" v2="685" v3="673" />+                <face v1="673" v2="685" v3="686" />+                <face v1="673" v2="686" v3="674" />+                <face v1="674" v2="686" v3="687" />+                <face v1="674" v2="687" v3="675" />+                <face v1="675" v2="687" v3="688" />+                <face v1="675" v2="688" v3="676" />+                <face v1="676" v2="688" v3="689" />+                <face v1="676" v2="689" v3="665" />+                <face v1="665" v2="689" v3="690" />+                <face v1="665" v2="690" v3="666" />+                <face v1="666" v2="690" v3="691" />+                <face v1="666" v2="691" v3="679" />+                <face v1="679" v2="691" v3="692" />+                <face v1="679" v2="692" v3="680" />+                <face v1="680" v2="692" v3="693" />+                <face v1="680" v2="693" v3="681" />+                <face v1="681" v2="693" v3="694" />+                <face v1="681" v2="694" v3="682" />+                <face v1="682" v2="694" v3="695" />+                <face v1="682" v2="695" v3="671" />+                <face v1="671" v2="695" v3="1608" />+                <face v1="684" v2="696" v3="697" />+                <face v1="684" v2="697" v3="685" />+                <face v1="685" v2="697" v3="698" />+                <face v1="685" v2="698" v3="686" />+                <face v1="686" v2="698" v3="699" />+                <face v1="686" v2="699" v3="687" />+                <face v1="687" v2="699" v3="700" />+                <face v1="687" v2="700" v3="688" />+                <face v1="688" v2="700" v3="689" />+                <face v1="689" v2="702" v3="690" />+                <face v1="690" v2="702" v3="703" />+                <face v1="690" v2="703" v3="691" />+                <face v1="691" v2="703" v3="704" />+                <face v1="691" v2="704" v3="692" />+                <face v1="692" v2="704" v3="705" />+                <face v1="692" v2="705" v3="693" />+                <face v1="693" v2="705" v3="706" />+                <face v1="693" v2="706" v3="694" />+                <face v1="694" v2="706" v3="695" />+                <face v1="695" v2="1612" v3="1613" />+                <face v1="696" v2="1618" v3="709" />+                <face v1="696" v2="709" v3="697" />+                <face v1="697" v2="709" v3="710" />+                <face v1="697" v2="710" v3="698" />+                <face v1="698" v2="710" v3="711" />+                <face v1="698" v2="711" v3="699" />+                <face v1="699" v2="711" v3="700" />+                <face v1="700" v2="713" v3="689" />+                <face v1="689" v2="713" v3="726" />+                <face v1="689" v2="726" v3="702" />+                <face v1="702" v2="726" v3="715" />+                <face v1="702" v2="715" v3="703" />+                <face v1="703" v2="715" v3="716" />+                <face v1="703" v2="716" v3="704" />+                <face v1="704" v2="716" v3="717" />+                <face v1="704" v2="717" v3="705" />+                <face v1="705" v2="717" v3="718" />+                <face v1="705" v2="718" v3="706" />+                <face v1="706" v2="718" v3="719" />+                <face v1="706" v2="719" v3="695" />+                <face v1="695" v2="719" v3="1618" />+                <face v1="695" v2="1618" v3="1616" />+                <face v1="709" v2="722" v3="710" />+                <face v1="710" v2="722" v3="711" />+                <face v1="711" v2="724" v3="700" />+                <face v1="700" v2="724" v3="713" />+                <face v1="715" v2="728" v3="716" />+                <face v1="716" v2="728" v3="729" />+                <face v1="716" v2="729" v3="717" />+                <face v1="717" v2="729" v3="742" />+                <face v1="717" v2="742" v3="718" />+                <face v1="718" v2="742" v3="803" />+                <face v1="718" v2="803" v3="719" />+                <face v1="719" v2="803" v3="1617" />+                <face v1="720" v2="733" v3="709" />+                <face v1="709" v2="733" v3="722" />+                <face v1="722" v2="735" v3="711" />+                <face v1="711" v2="735" v3="724" />+                <face v1="726" v2="739" v3="715" />+                <face v1="715" v2="739" v3="728" />+                <face v1="728" v2="753" v3="729" />+                <face v1="729" v2="753" v3="742" />+                <face v1="1622" v2="744" v3="733" />+                <face v1="733" v2="746" v3="722" />+                <face v1="722" v2="746" v3="735" />+                <face v1="713" v2="750" v3="726" />+                <face v1="726" v2="750" v3="763" />+                <face v1="726" v2="763" v3="739" />+                <face v1="739" v2="763" v3="752" />+                <face v1="739" v2="752" v3="728" />+                <face v1="728" v2="752" v3="753" />+                <face v1="753" v2="754" v3="742" />+                <face v1="742" v2="754" v3="803" />+                <face v1="803" v2="1624" v3="1622" />+                <face v1="744" v2="757" v3="733" />+                <face v1="733" v2="757" v3="746" />+                <face v1="746" v2="759" v3="735" />+                <face v1="735" v2="759" v3="724" />+                <face v1="750" v2="713" v3="763" />+                <face v1="763" v2="776" v3="752" />+                <face v1="752" v2="776" v3="753" />+                <face v1="753" v2="766" v3="754" />+                <face v1="754" v2="766" v3="803" />+                <face v1="757" v2="770" v3="746" />+                <face v1="746" v2="770" v3="759" />+                <face v1="759" v2="772" v3="724" />+                <face v1="724" v2="772" v3="713" />+                <face v1="713" v2="798" v3="763" />+                <face v1="1628" v2="781" v3="757" />+                <face v1="757" v2="781" v3="770" />+                <face v1="772" v2="857" v3="713" />+                <face v1="713" v2="857" v3="798" />+                <face v1="1628" v2="792" v3="781" />+                <face v1="759" v2="796" v3="772" />+                <face v1="772" v2="796" v3="857" />+                <face v1="776" v2="801" v3="753" />+                <face v1="753" v2="801" v3="766" />+                <face v1="803" v2="1636" v3="1628" />+                <face v1="798" v2="811" v3="763" />+                <face v1="763" v2="811" v3="776" />+                <face v1="781" v2="842" v3="770" />+                <face v1="770" v2="842" v3="759" />+                <face v1="1640" v2="877" v3="781" />+                <face v1="781" v2="877" v3="842" />+                <face v1="811" v2="860" v3="776" />+                <face v1="776" v2="860" v3="801" />+                <face v1="842" v2="879" v3="759" />+                <face v1="759" v2="879" v3="796" />+                <face v1="877" v2="914" v3="842" />+                <face v1="842" v2="914" v3="879" />+                <face v1="879" v2="892" v3="796" />+                <face v1="796" v2="892" v3="857" />+                <face v1="801" v2="886" v3="766" />+                <face v1="766" v2="886" v3="803" />+                <face v1="860" v2="897" v3="801" />+                <face v1="801" v2="897" v3="886" />+                <face v1="879" v2="916" v3="892" />+                <face v1="892" v2="916" v3="857" />+                <face v1="886" v2="911" v3="803" />+                <face v1="803" v2="911" v3="1640" />+                <face v1="1640" v2="1669" v3="877" />+                <face v1="914" v2="927" v3="879" />+                <face v1="879" v2="927" v3="916" />+                <face v1="916" v2="929" v3="857" />+                <face v1="857" v2="929" v3="918" />+                <face v1="857" v2="918" v3="798" />+                <face v1="798" v2="918" v3="919" />+                <face v1="798" v2="919" v3="811" />+                <face v1="811" v2="919" v3="860" />+                <face v1="897" v2="922" v3="886" />+                <face v1="886" v2="922" v3="911" />+                <face v1="911" v2="1669" v3="1640" />+                <face v1="877" v2="938" v3="914" />+                <face v1="914" v2="938" v3="927" />+                <face v1="927" v2="940" v3="916" />+                <face v1="916" v2="940" v3="929" />+                <face v1="919" v2="932" v3="860" />+                <face v1="860" v2="932" v3="897" />+                <face v1="922" v2="959" v3="911" />+                <face v1="911" v2="959" v3="1668" />+                <face v1="924" v2="973" v3="877" />+                <face v1="877" v2="973" v3="938" />+                <face v1="938" v2="951" v3="927" />+                <face v1="927" v2="951" v3="940" />+                <face v1="940" v2="953" v3="929" />+                <face v1="929" v2="953" v3="942" />+                <face v1="929" v2="942" v3="918" />+                <face v1="918" v2="942" v3="919" />+                <face v1="932" v2="945" v3="897" />+                <face v1="897" v2="945" v3="946" />+                <face v1="897" v2="946" v3="922" />+                <face v1="922" v2="946" v3="959" />+                <face v1="973" v2="962" v3="938" />+                <face v1="938" v2="962" v3="951" />+                <face v1="951" v2="964" v3="940" />+                <face v1="940" v2="964" v3="953" />+                <face v1="1673" v2="960" v3="973" />+                <face v1="962" v2="975" v3="951" />+                <face v1="951" v2="975" v3="964" />+                <face v1="953" v2="966" v3="942" />+                <face v1="942" v2="966" v3="919" />+                <face v1="919" v2="968" v3="932" />+                <face v1="932" v2="968" v3="969" />+                <face v1="932" v2="969" v3="945" />+                <face v1="945" v2="969" v3="970" />+                <face v1="945" v2="970" v3="946" />+                <face v1="946" v2="970" v3="959" />+                <face v1="959" v2="1678" v3="1673" />+                <face v1="973" v2="986" v3="962" />+                <face v1="962" v2="986" v3="975" />+                <face v1="975" v2="976" v3="964" />+                <face v1="964" v2="976" v3="977" />+                <face v1="964" v2="977" v3="953" />+                <face v1="953" v2="977" v3="966" />+                <face v1="966" v2="979" v3="919" />+                <face v1="919" v2="979" v3="980" />+                <face v1="919" v2="980" v3="968" />+                <face v1="968" v2="980" v3="981" />+                <face v1="968" v2="981" v3="969" />+                <face v1="969" v2="981" v3="982" />+                <face v1="969" v2="982" v3="970" />+                <face v1="970" v2="982" v3="983" />+                <face v1="970" v2="983" v3="959" />+                <face v1="959" v2="983" v3="1682" />+                <face v1="1682" v2="984" v3="997" />+                <face v1="1682" v2="997" v3="973" />+                <face v1="973" v2="997" v3="986" />+                <face v1="986" v2="987" v3="975" />+                <face v1="975" v2="987" v3="988" />+                <face v1="975" v2="988" v3="976" />+                <face v1="976" v2="988" v3="989" />+                <face v1="976" v2="989" v3="977" />+                <face v1="977" v2="989" v3="966" />+                <face v1="979" v2="992" v3="980" />+                <face v1="980" v2="992" v3="993" />+                <face v1="980" v2="993" v3="981" />+                <face v1="981" v2="993" v3="994" />+                <face v1="981" v2="994" v3="982" />+                <face v1="982" v2="994" v3="995" />+                <face v1="982" v2="995" v3="983" />+                <face v1="983" v2="995" v3="1683" />+                <face v1="983" v2="1684" v3="1682" />+                <face v1="984" v2="996" v3="997" />+                <face v1="997" v2="998" v3="986" />+                <face v1="986" v2="998" v3="999" />+                <face v1="986" v2="999" v3="987" />+                <face v1="987" v2="999" v3="1000" />+                <face v1="987" v2="1000" v3="988" />+                <face v1="988" v2="1000" v3="1001" />+                <face v1="988" v2="1001" v3="989" />+                <face v1="989" v2="1001" v3="1002" />+                <face v1="989" v2="1002" v3="966" />+                <face v1="966" v2="1002" v3="1003" />+                <face v1="966" v2="1003" v3="979" />+                <face v1="979" v2="1003" v3="1004" />+                <face v1="979" v2="1004" v3="992" />+                <face v1="992" v2="1004" v3="1005" />+                <face v1="992" v2="1005" v3="993" />+                <face v1="993" v2="1005" v3="1006" />+                <face v1="993" v2="1006" v3="994" />+                <face v1="994" v2="1006" v3="1007" />+                <face v1="994" v2="1007" v3="995" />+                <face v1="995" v2="1007" v3="1686" />+                <face v1="995" v2="1687" v3="1688" />+                <face v1="996" v2="1021" v3="997" />+                <face v1="997" v2="1021" v3="1010" />+                <face v1="997" v2="1010" v3="998" />+                <face v1="998" v2="1010" v3="1011" />+                <face v1="998" v2="1011" v3="999" />+                <face v1="999" v2="1011" v3="1012" />+                <face v1="999" v2="1012" v3="1000" />+                <face v1="1000" v2="1012" v3="1013" />+                <face v1="1000" v2="1013" v3="1001" />+                <face v1="1001" v2="1013" v3="1002" />+                <face v1="1003" v2="1016" v3="1004" />+                <face v1="1004" v2="1016" v3="1017" />+                <face v1="1004" v2="1017" v3="1005" />+                <face v1="1005" v2="1017" v3="1018" />+                <face v1="1005" v2="1018" v3="1006" />+                <face v1="1006" v2="1018" v3="1019" />+                <face v1="1006" v2="1019" v3="1007" />+                <face v1="1007" v2="1019" v3="1691" />+                <face v1="1691" v2="1020" v3="1021" />+                <face v1="1021" v2="1022" v3="1010" />+                <face v1="1010" v2="1022" v3="1023" />+                <face v1="1010" v2="1023" v3="1011" />+                <face v1="1011" v2="1023" v3="1024" />+                <face v1="1011" v2="1024" v3="1012" />+                <face v1="1012" v2="1024" v3="1025" />+                <face v1="1012" v2="1025" v3="1013" />+                <face v1="1013" v2="1025" v3="1026" />+                <face v1="1013" v2="1026" v3="1002" />+                <face v1="1002" v2="1026" v3="1027" />+                <face v1="1002" v2="1027" v3="1003" />+                <face v1="1003" v2="1027" v3="1028" />+                <face v1="1003" v2="1028" v3="1016" />+                <face v1="1016" v2="1028" v3="1029" />+                <face v1="1016" v2="1029" v3="1017" />+                <face v1="1017" v2="1029" v3="1030" />+                <face v1="1017" v2="1030" v3="1018" />+                <face v1="1018" v2="1030" v3="1031" />+                <face v1="1018" v2="1031" v3="1019" />+                <face v1="1019" v2="1031" v3="1692" />+                <face v1="1019" v2="1693" v3="1691" />+                <face v1="1020" v2="1033" v3="1021" />+                <face v1="1021" v2="1033" v3="1034" />+                <face v1="1021" v2="1034" v3="1022" />+                <face v1="1022" v2="1034" v3="1035" />+                <face v1="1022" v2="1035" v3="1023" />+                <face v1="1023" v2="1035" v3="1036" />+                <face v1="1023" v2="1036" v3="1024" />+                <face v1="1024" v2="1036" v3="1037" />+                <face v1="1024" v2="1037" v3="1025" />+                <face v1="1025" v2="1037" v3="1026" />+                <face v1="1026" v2="1039" v3="1027" />+                <face v1="1027" v2="1039" v3="1040" />+                <face v1="1027" v2="1040" v3="1028" />+                <face v1="1028" v2="1040" v3="1041" />+                <face v1="1028" v2="1041" v3="1029" />+                <face v1="1029" v2="1041" v3="1042" />+                <face v1="1029" v2="1042" v3="1030" />+                <face v1="1030" v2="1042" v3="1043" />+                <face v1="1030" v2="1043" v3="1031" />+                <face v1="1031" v2="1043" v3="1697" />+                <face v1="1697" v2="1044" v3="1033" />+                <face v1="1033" v2="1046" v3="1034" />+                <face v1="1034" v2="1046" v3="1047" />+                <face v1="1034" v2="1047" v3="1035" />+                <face v1="1035" v2="1047" v3="1048" />+                <face v1="1035" v2="1048" v3="1036" />+                <face v1="1036" v2="1048" v3="1037" />+                <face v1="1037" v2="1050" v3="1026" />+                <face v1="1026" v2="1050" v3="1063" />+                <face v1="1026" v2="1063" v3="1039" />+                <face v1="1039" v2="1063" v3="1052" />+                <face v1="1039" v2="1052" v3="1040" />+                <face v1="1040" v2="1052" v3="1053" />+                <face v1="1040" v2="1053" v3="1041" />+                <face v1="1041" v2="1053" v3="1054" />+                <face v1="1041" v2="1054" v3="1042" />+                <face v1="1042" v2="1054" v3="1043" />+                <face v1="1043" v2="1699" v3="1697" />+                <face v1="1044" v2="1057" v3="1033" />+                <face v1="1033" v2="1057" v3="1058" />+                <face v1="1033" v2="1058" v3="1046" />+                <face v1="1046" v2="1058" v3="1059" />+                <face v1="1046" v2="1059" v3="1047" />+                <face v1="1047" v2="1059" v3="1060" />+                <face v1="1047" v2="1060" v3="1048" />+                <face v1="1048" v2="1060" v3="1061" />+                <face v1="1048" v2="1061" v3="1037" />+                <face v1="1037" v2="1061" v3="1050" />+                <face v1="1063" v2="1064" v3="1052" />+                <face v1="1052" v2="1064" v3="1065" />+                <face v1="1052" v2="1065" v3="1053" />+                <face v1="1053" v2="1065" v3="1066" />+                <face v1="1053" v2="1066" v3="1054" />+                <face v1="1054" v2="1066" v3="1067" />+                <face v1="1054" v2="1067" v3="1043" />+                <face v1="1043" v2="1067" v3="1703" />+                <face v1="1703" v2="1068" v3="1057" />+                <face v1="1057" v2="1070" v3="1058" />+                <face v1="1058" v2="1070" v3="1071" />+                <face v1="1058" v2="1071" v3="1059" />+                <face v1="1059" v2="1071" v3="1072" />+                <face v1="1059" v2="1072" v3="1060" />+                <face v1="1060" v2="1072" v3="1061" />+                <face v1="1061" v2="1098" v3="1050" />+                <face v1="1050" v2="1098" v3="1087" />+                <face v1="1050" v2="1087" v3="1063" />+                <face v1="1063" v2="1087" v3="1076" />+                <face v1="1063" v2="1076" v3="1064" />+                <face v1="1064" v2="1076" v3="1077" />+                <face v1="1064" v2="1077" v3="1065" />+                <face v1="1065" v2="1077" v3="1078" />+                <face v1="1065" v2="1078" v3="1066" />+                <face v1="1066" v2="1078" v3="1067" />+                <face v1="1067" v2="1705" v3="1703" />+                <face v1="1068" v2="1081" v3="1057" />+                <face v1="1057" v2="1081" v3="1082" />+                <face v1="1057" v2="1082" v3="1070" />+                <face v1="1070" v2="1082" v3="1083" />+                <face v1="1070" v2="1083" v3="1071" />+                <face v1="1071" v2="1083" v3="1072" />+                <face v1="1072" v2="1085" v3="1061" />+                <face v1="1061" v2="1085" v3="1098" />+                <face v1="1087" v2="1100" v3="1076" />+                <face v1="1076" v2="1100" v3="1089" />+                <face v1="1076" v2="1089" v3="1077" />+                <face v1="1077" v2="1089" v3="1078" />+                <face v1="1078" v2="1091" v3="1067" />+                <face v1="1067" v2="1091" v3="1709" />+                <face v1="1081" v2="1094" v3="1082" />+                <face v1="1082" v2="1094" v3="1095" />+                <face v1="1082" v2="1095" v3="1083" />+                <face v1="1083" v2="1095" v3="1096" />+                <face v1="1083" v2="1096" v3="1072" />+                <face v1="1072" v2="1096" v3="1085" />+                <face v1="1100" v2="1101" v3="1089" />+                <face v1="1089" v2="1101" v3="1102" />+                <face v1="1089" v2="1102" v3="1078" />+                <face v1="1078" v2="1102" v3="1103" />+                <face v1="1078" v2="1103" v3="1091" />+                <face v1="1091" v2="1103" v3="1709" />+                <face v1="1709" v2="1717" v3="1105" />+                <face v1="1709" v2="1105" v3="1081" />+                <face v1="1081" v2="1105" v3="1106" />+                <face v1="1081" v2="1106" v3="1094" />+                <face v1="1094" v2="1106" v3="1107" />+                <face v1="1094" v2="1107" v3="1095" />+                <face v1="1095" v2="1107" v3="1108" />+                <face v1="1095" v2="1108" v3="1096" />+                <face v1="1096" v2="1108" v3="1109" />+                <face v1="1096" v2="1109" v3="1085" />+                <face v1="1085" v2="1109" v3="1098" />+                <face v1="1098" v2="1111" v3="1087" />+                <face v1="1087" v2="1111" v3="1112" />+                <face v1="1087" v2="1112" v3="1100" />+                <face v1="1100" v2="1112" v3="1113" />+                <face v1="1100" v2="1113" v3="1101" />+                <face v1="1101" v2="1113" v3="1114" />+                <face v1="1101" v2="1114" v3="1102" />+                <face v1="1102" v2="1114" v3="1103" />+                <face v1="1103" v2="1717" v3="1709" />+                <face v1="1717" v2="1129" v3="1105" />+                <face v1="1105" v2="1129" v3="1118" />+                <face v1="1105" v2="1118" v3="1106" />+                <face v1="1106" v2="1118" v3="1119" />+                <face v1="1106" v2="1119" v3="1107" />+                <face v1="1107" v2="1119" v3="1120" />+                <face v1="1107" v2="1120" v3="1108" />+                <face v1="1108" v2="1120" v3="1109" />+                <face v1="1109" v2="1122" v3="1098" />+                <face v1="1098" v2="1122" v3="1123" />+                <face v1="1098" v2="1123" v3="1111" />+                <face v1="1111" v2="1123" v3="1124" />+                <face v1="1111" v2="1124" v3="1112" />+                <face v1="1112" v2="1124" v3="1125" />+                <face v1="1112" v2="1125" v3="1113" />+                <face v1="1113" v2="1125" v3="1126" />+                <face v1="1113" v2="1126" v3="1114" />+                <face v1="1114" v2="1126" v3="1127" />+                <face v1="1114" v2="1127" v3="1103" />+                <face v1="1103" v2="1127" v3="1716" />+                <face v1="1116" v2="1723" v3="1129" />+                <face v1="1129" v2="1130" v3="1118" />+                <face v1="1118" v2="1130" v3="1131" />+                <face v1="1118" v2="1131" v3="1119" />+                <face v1="1119" v2="1131" v3="1132" />+                <face v1="1119" v2="1132" v3="1120" />+                <face v1="1120" v2="1132" v3="1133" />+                <face v1="1120" v2="1133" v3="1109" />+                <face v1="1109" v2="1133" v3="1122" />+                <face v1="1122" v2="1135" v3="1123" />+                <face v1="1123" v2="1135" v3="1136" />+                <face v1="1123" v2="1136" v3="1124" />+                <face v1="1124" v2="1136" v3="1137" />+                <face v1="1124" v2="1137" v3="1125" />+                <face v1="1125" v2="1137" v3="1138" />+                <face v1="1125" v2="1138" v3="1126" />+                <face v1="1126" v2="1138" v3="1127" />+                <face v1="1127" v2="1723" v3="1721" />+                <face v1="1723" v2="1141" v3="1129" />+                <face v1="1129" v2="1141" v3="1142" />+                <face v1="1129" v2="1142" v3="1130" />+                <face v1="1130" v2="1142" v3="1143" />+                <face v1="1130" v2="1143" v3="1131" />+                <face v1="1131" v2="1143" v3="1144" />+                <face v1="1131" v2="1144" v3="1132" />+                <face v1="1132" v2="1144" v3="1145" />+                <face v1="1132" v2="1145" v3="1133" />+                <face v1="1133" v2="1145" v3="1146" />+                <face v1="1133" v2="1146" v3="1122" />+                <face v1="1122" v2="1146" v3="1147" />+                <face v1="1122" v2="1147" v3="1135" />+                <face v1="1135" v2="1147" v3="1148" />+                <face v1="1135" v2="1148" v3="1136" />+                <face v1="1136" v2="1148" v3="1149" />+                <face v1="1136" v2="1149" v3="1137" />+                <face v1="1137" v2="1149" v3="1150" />+                <face v1="1137" v2="1150" v3="1138" />+                <face v1="1138" v2="1150" v3="1151" />+                <face v1="1138" v2="1151" v3="1127" />+                <face v1="1127" v2="1151" v3="1722" />+                <face v1="1140" v2="1729" v3="1153" />+                <face v1="1140" v2="1153" v3="1141" />+                <face v1="1141" v2="1153" v3="1154" />+                <face v1="1141" v2="1154" v3="1142" />+                <face v1="1142" v2="1154" v3="1155" />+                <face v1="1142" v2="1155" v3="1143" />+                <face v1="1143" v2="1155" v3="1156" />+                <face v1="1143" v2="1156" v3="1144" />+                <face v1="1144" v2="1156" v3="1145" />+                <face v1="1146" v2="1159" v3="1147" />+                <face v1="1147" v2="1159" v3="1160" />+                <face v1="1147" v2="1160" v3="1148" />+                <face v1="1148" v2="1160" v3="1161" />+                <face v1="1148" v2="1161" v3="1149" />+                <face v1="1149" v2="1161" v3="1162" />+                <face v1="1149" v2="1162" v3="1150" />+                <face v1="1150" v2="1162" v3="1151" />+                <face v1="1151" v2="1729" v3="1727" />+                <face v1="1729" v2="1165" v3="1153" />+                <face v1="1153" v2="1165" v3="1166" />+                <face v1="1153" v2="1166" v3="1154" />+                <face v1="1154" v2="1166" v3="1167" />+                <face v1="1154" v2="1167" v3="1155" />+                <face v1="1155" v2="1167" v3="1168" />+                <face v1="1155" v2="1168" v3="1156" />+                <face v1="1156" v2="1168" v3="1169" />+                <face v1="1156" v2="1169" v3="1145" />+                <face v1="1145" v2="1169" v3="1170" />+                <face v1="1145" v2="1170" v3="1146" />+                <face v1="1146" v2="1170" v3="1171" />+                <face v1="1146" v2="1171" v3="1159" />+                <face v1="1159" v2="1171" v3="1172" />+                <face v1="1159" v2="1172" v3="1160" />+                <face v1="1160" v2="1172" v3="1173" />+                <face v1="1160" v2="1173" v3="1161" />+                <face v1="1161" v2="1173" v3="1174" />+                <face v1="1161" v2="1174" v3="1162" />+                <face v1="1162" v2="1174" v3="1175" />+                <face v1="1162" v2="1175" v3="1151" />+                <face v1="1151" v2="1175" v3="1728" />+                <face v1="1164" v2="1735" v3="1177" />+                <face v1="1164" v2="1177" v3="1165" />+                <face v1="1165" v2="1177" v3="1178" />+                <face v1="1165" v2="1178" v3="1166" />+                <face v1="1166" v2="1178" v3="1179" />+                <face v1="1166" v2="1179" v3="1167" />+                <face v1="1167" v2="1179" v3="1180" />+                <face v1="1167" v2="1180" v3="1168" />+                <face v1="1168" v2="1180" v3="1169" />+                <face v1="1169" v2="1182" v3="1170" />+                <face v1="1170" v2="1182" v3="1183" />+                <face v1="1170" v2="1183" v3="1171" />+                <face v1="1171" v2="1183" v3="1184" />+                <face v1="1171" v2="1184" v3="1172" />+                <face v1="1172" v2="1184" v3="1185" />+                <face v1="1172" v2="1185" v3="1173" />+                <face v1="1173" v2="1185" v3="1186" />+                <face v1="1173" v2="1186" v3="1174" />+                <face v1="1174" v2="1186" v3="1175" />+                <face v1="1175" v2="1735" v3="1733" />+                <face v1="1735" v2="1189" v3="1177" />+                <face v1="1177" v2="1189" v3="1190" />+                <face v1="1177" v2="1190" v3="1178" />+                <face v1="1178" v2="1190" v3="1191" />+                <face v1="1178" v2="1191" v3="1179" />+                <face v1="1179" v2="1191" v3="1192" />+                <face v1="1179" v2="1192" v3="1180" />+                <face v1="1180" v2="1192" v3="1193" />+                <face v1="1180" v2="1193" v3="1169" />+                <face v1="1169" v2="1193" v3="1206" />+                <face v1="1169" v2="1206" v3="1182" />+                <face v1="1182" v2="1206" v3="1195" />+                <face v1="1182" v2="1195" v3="1183" />+                <face v1="1183" v2="1195" v3="1196" />+                <face v1="1183" v2="1196" v3="1184" />+                <face v1="1184" v2="1196" v3="1197" />+                <face v1="1184" v2="1197" v3="1185" />+                <face v1="1185" v2="1197" v3="1198" />+                <face v1="1185" v2="1198" v3="1186" />+                <face v1="1186" v2="1198" v3="1199" />+                <face v1="1186" v2="1199" v3="1175" />+                <face v1="1175" v2="1199" v3="1734" />+                <face v1="1188" v2="1741" v3="1189" />+                <face v1="1189" v2="1202" v3="1190" />+                <face v1="1190" v2="1202" v3="1191" />+                <face v1="1206" v2="1207" v3="1195" />+                <face v1="1195" v2="1207" v3="1208" />+                <face v1="1195" v2="1208" v3="1196" />+                <face v1="1196" v2="1208" v3="1197" />+                <face v1="1197" v2="1222" v3="1198" />+                <face v1="1198" v2="1222" v3="1283" />+                <face v1="1198" v2="1283" v3="1199" />+                <face v1="1199" v2="1283" v3="1741" />+                <face v1="1199" v2="1741" v3="1739" />+                <face v1="1741" v2="1213" v3="1189" />+                <face v1="1189" v2="1213" v3="1202" />+                <face v1="1202" v2="1215" v3="1191" />+                <face v1="1191" v2="1215" v3="1216" />+                <face v1="1191" v2="1216" v3="1192" />+                <face v1="1192" v2="1216" v3="1193" />+                <face v1="1207" v2="1220" v3="1208" />+                <face v1="1208" v2="1220" v3="1221" />+                <face v1="1208" v2="1221" v3="1197" />+                <face v1="1197" v2="1221" v3="1222" />+                <face v1="1212" v2="1747" v3="1213" />+                <face v1="1213" v2="1226" v3="1202" />+                <face v1="1202" v2="1226" v3="1215" />+                <face v1="1216" v2="1229" v3="1193" />+                <face v1="1193" v2="1229" v3="1230" />+                <face v1="1193" v2="1230" v3="1206" />+                <face v1="1206" v2="1230" v3="1231" />+                <face v1="1206" v2="1231" v3="1207" />+                <face v1="1207" v2="1231" v3="1244" />+                <face v1="1207" v2="1244" v3="1220" />+                <face v1="1220" v2="1244" v3="1245" />+                <face v1="1220" v2="1245" v3="1221" />+                <face v1="1221" v2="1245" v3="1234" />+                <face v1="1221" v2="1234" v3="1222" />+                <face v1="1222" v2="1234" v3="1283" />+                <face v1="1283" v2="1747" v3="1745" />+                <face v1="1747" v2="1237" v3="1213" />+                <face v1="1213" v2="1237" v3="1226" />+                <face v1="1215" v2="1240" v3="1216" />+                <face v1="1216" v2="1240" v3="1229" />+                <face v1="1229" v2="1266" v3="1230" />+                <face v1="1230" v2="1266" v3="1255" />+                <face v1="1230" v2="1255" v3="1231" />+                <face v1="1231" v2="1255" v3="1244" />+                <face v1="1245" v2="1246" v3="1234" />+                <face v1="1234" v2="1246" v3="1283" />+                <face v1="1237" v2="1262" v3="1226" />+                <face v1="1226" v2="1262" v3="1215" />+                <face v1="1240" v2="1289" v3="1229" />+                <face v1="1229" v2="1289" v3="1266" />+                <face v1="1244" v2="1269" v3="1245" />+                <face v1="1245" v2="1269" v3="1294" />+                <face v1="1245" v2="1294" v3="1246" />+                <face v1="1246" v2="1294" v3="1283" />+                <face v1="1262" v2="1263" v3="1215" />+                <face v1="1215" v2="1263" v3="1240" />+                <face v1="1751" v2="1273" v3="1237" />+                <face v1="1237" v2="1273" v3="1262" />+                <face v1="1255" v2="1280" v3="1244" />+                <face v1="1244" v2="1280" v3="1269" />+                <face v1="1751" v2="1780" v3="1273" />+                <face v1="1266" v2="1291" v3="1255" />+                <face v1="1255" v2="1291" v3="1280" />+                <face v1="1283" v2="1780" v3="1751" />+                <face v1="1280" v2="1377" v3="1269" />+                <face v1="1269" v2="1377" v3="1294" />+                <face v1="1262" v2="1311" v3="1263" />+                <face v1="1263" v2="1311" v3="1240" />+                <face v1="1291" v2="1316" v3="1280" />+                <face v1="1280" v2="1316" v3="1377" />+                <face v1="1273" v2="1334" v3="1262" />+                <face v1="1262" v2="1334" v3="1311" />+                <face v1="1780" v2="1800" v3="1273" />+                <face v1="1273" v2="1800" v3="1334" />+                <face v1="1311" v2="1348" v3="1240" />+                <face v1="1240" v2="1348" v3="1289" />+                <face v1="1311" v2="1372" v3="1348" />+                <face v1="1348" v2="1372" v3="1289" />+                <face v1="1377" v2="1366" v3="1294" />+                <face v1="1294" v2="1366" v3="1283" />+                <face v1="1334" v2="1383" v3="1311" />+                <face v1="1311" v2="1383" v3="1372" />+                <face v1="1372" v2="1385" v3="1289" />+                <face v1="1289" v2="1385" v3="1374" />+                <face v1="1289" v2="1374" v3="1266" />+                <face v1="1266" v2="1374" v3="1291" />+                <face v1="1366" v2="1391" v3="1283" />+                <face v1="1283" v2="1391" v3="1784" />+                <face v1="1334" v2="1407" v3="1383" />+                <face v1="1383" v2="1407" v3="1372" />+                <face v1="1372" v2="1409" v3="1385" />+                <face v1="1385" v2="1409" v3="1374" />+                <face v1="1374" v2="1399" v3="1291" />+                <face v1="1291" v2="1399" v3="1400" />+                <face v1="1291" v2="1400" v3="1316" />+                <face v1="1316" v2="1400" v3="1401" />+                <face v1="1316" v2="1401" v3="1377" />+                <face v1="1377" v2="1401" v3="1402" />+                <face v1="1377" v2="1402" v3="1366" />+                <face v1="1366" v2="1402" v3="1391" />+                <face v1="1784" v2="1404" v3="1800" />+                <face v1="1800" v2="1406" v3="1334" />+                <face v1="1334" v2="1406" v3="1407" />+                <face v1="1407" v2="1420" v3="1372" />+                <face v1="1372" v2="1420" v3="1409" />+                <face v1="1402" v2="1415" v3="1391" />+                <face v1="1391" v2="1415" v3="1788" />+                <face v1="1391" v2="1789" v3="1784" />+                <face v1="1404" v2="1795" v3="1800" />+                <face v1="1800" v2="1803" v3="1406" />+                <face v1="1406" v2="1803" v3="1431" />+                <face v1="1406" v2="1431" v3="1407" />+                <face v1="1407" v2="1431" v3="1420" />+                <face v1="1420" v2="1433" v3="1409" />+                <face v1="1409" v2="1433" v3="1422" />+                <face v1="1409" v2="1422" v3="1374" />+                <face v1="1374" v2="1422" v3="1399" />+                <face v1="1400" v2="1425" v3="1401" />+                <face v1="1401" v2="1425" v3="1426" />+                <face v1="1401" v2="1426" v3="1402" />+                <face v1="1402" v2="1426" v3="1439" />+                <face v1="1402" v2="1439" v3="1415" />+                <face v1="1415" v2="1439" v3="1795" />+                <face v1="1415" v2="1795" v3="1793" />+                <face v1="1431" v2="1809" v3="1420" />+                <face v1="1420" v2="1809" v3="1433" />+                <face v1="1433" v2="1815" v3="1422" />+                <face v1="1422" v2="1815" v3="1399" />+                <face v1="1399" v2="1436" v3="1400" />+                <face v1="1400" v2="1436" v3="1425" />+                <face v1="1425" v2="1827" v3="1426" />+                <face v1="1426" v2="1827" v3="1439" />+                <face v1="1428" v2="1797" v3="1798" />+                <face v1="1803" v2="1805" v3="1431" />+                <face v1="1431" v2="1806" v3="1807" />+                <face v1="1809" v2="1811" v3="1433" />+                <face v1="1433" v2="1812" v3="1813" />+                <face v1="1815" v2="1817" v3="1399" />+                <face v1="1399" v2="1818" v3="1819" />+                <face v1="1399" v2="1820" v3="1436" />+                <face v1="1436" v2="1821" v3="1822" />+                <face v1="1436" v2="1823" v3="1425" />+                <face v1="1425" v2="1824" v3="1825" />+                <face v1="1827" v2="1829" v3="1439" />+                <face v1="1439" v2="1830" v3="1831" />+                <face v1="1439" v2="1832" v3="1833" />+            </lodfacelist>+        </lodgenerated>+        <lodgenerated value="2000">+            <lodfacelist submeshindex="0" numfaces="1182">+                <face v1="0" v2="25" v3="1" />+                <face v1="1" v2="25" v3="26" />+                <face v1="1" v2="26" v3="2" />+                <face v1="2" v2="26" v3="27" />+                <face v1="2" v2="27" v3="3" />+                <face v1="3" v2="27" v3="4" />+                <face v1="9" v2="22" v3="10" />+                <face v1="10" v2="22" v3="11" />+                <face v1="1442" v2="24" v3="25" />+                <face v1="27" v2="28" v3="4" />+                <face v1="4" v2="28" v3="29" />+                <face v1="4" v2="29" v3="5" />+                <face v1="5" v2="29" v3="6" />+                <face v1="7" v2="32" v3="8" />+                <face v1="8" v2="32" v3="33" />+                <face v1="8" v2="33" v3="9" />+                <face v1="9" v2="33" v3="34" />+                <face v1="9" v2="34" v3="22" />+                <face v1="22" v2="34" v3="35" />+                <face v1="22" v2="35" v3="11" />+                <face v1="11" v2="35" v3="1443" />+                <face v1="11" v2="1444" v3="1442" />+                <face v1="24" v2="36" v3="49" />+                <face v1="24" v2="49" v3="25" />+                <face v1="25" v2="49" v3="38" />+                <face v1="25" v2="38" v3="26" />+                <face v1="26" v2="38" v3="39" />+                <face v1="26" v2="39" v3="27" />+                <face v1="27" v2="39" v3="40" />+                <face v1="27" v2="40" v3="28" />+                <face v1="28" v2="40" v3="29" />+                <face v1="29" v2="42" v3="6" />+                <face v1="6" v2="42" v3="43" />+                <face v1="6" v2="43" v3="7" />+                <face v1="7" v2="43" v3="32" />+                <face v1="32" v2="45" v3="33" />+                <face v1="33" v2="45" v3="46" />+                <face v1="33" v2="46" v3="34" />+                <face v1="34" v2="46" v3="47" />+                <face v1="34" v2="47" v3="35" />+                <face v1="35" v2="47" v3="1446" />+                <face v1="35" v2="1447" v3="1448" />+                <face v1="49" v2="50" v3="38" />+                <face v1="38" v2="50" v3="51" />+                <face v1="38" v2="51" v3="39" />+                <face v1="39" v2="51" v3="52" />+                <face v1="39" v2="52" v3="40" />+                <face v1="40" v2="52" v3="53" />+                <face v1="40" v2="53" v3="29" />+                <face v1="29" v2="53" v3="42" />+                <face v1="43" v2="56" v3="32" />+                <face v1="32" v2="56" v3="57" />+                <face v1="32" v2="57" v3="45" />+                <face v1="45" v2="57" v3="58" />+                <face v1="45" v2="58" v3="46" />+                <face v1="46" v2="58" v3="59" />+                <face v1="46" v2="59" v3="47" />+                <face v1="47" v2="59" v3="1451" />+                <face v1="1451" v2="60" v3="73" />+                <face v1="1451" v2="73" v3="49" />+                <face v1="49" v2="73" v3="62" />+                <face v1="49" v2="62" v3="50" />+                <face v1="50" v2="62" v3="63" />+                <face v1="50" v2="63" v3="51" />+                <face v1="51" v2="63" v3="64" />+                <face v1="51" v2="64" v3="52" />+                <face v1="52" v2="64" v3="53" />+                <face v1="42" v2="67" v3="43" />+                <face v1="43" v2="67" v3="68" />+                <face v1="43" v2="68" v3="56" />+                <face v1="56" v2="68" v3="69" />+                <face v1="56" v2="69" v3="57" />+                <face v1="57" v2="69" v3="70" />+                <face v1="57" v2="70" v3="58" />+                <face v1="58" v2="70" v3="59" />+                <face v1="59" v2="1453" v3="1451" />+                <face v1="73" v2="74" v3="62" />+                <face v1="62" v2="74" v3="75" />+                <face v1="62" v2="75" v3="63" />+                <face v1="63" v2="75" v3="76" />+                <face v1="63" v2="76" v3="64" />+                <face v1="64" v2="76" v3="77" />+                <face v1="64" v2="77" v3="53" />+                <face v1="53" v2="77" v3="42" />+                <face v1="42" v2="79" v3="67" />+                <face v1="67" v2="79" v3="68" />+                <face v1="68" v2="81" v3="69" />+                <face v1="69" v2="81" v3="82" />+                <face v1="69" v2="82" v3="70" />+                <face v1="70" v2="82" v3="83" />+                <face v1="70" v2="83" v3="59" />+                <face v1="59" v2="83" v3="1457" />+                <face v1="73" v2="86" v3="74" />+                <face v1="74" v2="86" v3="75" />+                <face v1="75" v2="88" v3="76" />+                <face v1="76" v2="88" v3="77" />+                <face v1="77" v2="90" v3="42" />+                <face v1="42" v2="90" v3="103" />+                <face v1="42" v2="103" v3="79" />+                <face v1="79" v2="103" v3="92" />+                <face v1="79" v2="92" v3="68" />+                <face v1="68" v2="92" v3="93" />+                <face v1="68" v2="93" v3="81" />+                <face v1="81" v2="93" v3="94" />+                <face v1="81" v2="94" v3="82" />+                <face v1="82" v2="94" v3="83" />+                <face v1="1457" v2="97" v3="73" />+                <face v1="73" v2="97" v3="86" />+                <face v1="86" v2="99" v3="75" />+                <face v1="75" v2="99" v3="88" />+                <face v1="88" v2="101" v3="77" />+                <face v1="77" v2="101" v3="90" />+                <face v1="103" v2="116" v3="92" />+                <face v1="92" v2="116" v3="117" />+                <face v1="92" v2="117" v3="93" />+                <face v1="93" v2="117" v3="94" />+                <face v1="94" v2="107" v3="83" />+                <face v1="83" v2="107" v3="1457" />+                <face v1="1457" v2="108" v3="97" />+                <face v1="97" v2="110" v3="86" />+                <face v1="86" v2="110" v3="99" />+                <face v1="99" v2="112" v3="88" />+                <face v1="88" v2="112" v3="101" />+                <face v1="101" v2="138" v3="90" />+                <face v1="90" v2="138" v3="127" />+                <face v1="90" v2="127" v3="103" />+                <face v1="103" v2="127" v3="116" />+                <face v1="117" v2="118" v3="94" />+                <face v1="94" v2="118" v3="107" />+                <face v1="107" v2="1465" v3="1457" />+                <face v1="108" v2="121" v3="97" />+                <face v1="97" v2="121" v3="122" />+                <face v1="97" v2="122" v3="110" />+                <face v1="110" v2="122" v3="123" />+                <face v1="110" v2="123" v3="99" />+                <face v1="99" v2="123" v3="112" />+                <face v1="112" v2="125" v3="101" />+                <face v1="101" v2="125" v3="138" />+                <face v1="127" v2="140" v3="116" />+                <face v1="116" v2="140" v3="141" />+                <face v1="116" v2="141" v3="117" />+                <face v1="117" v2="141" v3="118" />+                <face v1="118" v2="131" v3="107" />+                <face v1="107" v2="131" v3="1469" />+                <face v1="121" v2="134" v3="122" />+                <face v1="122" v2="134" v3="123" />+                <face v1="123" v2="136" v3="112" />+                <face v1="112" v2="136" v3="125" />+                <face v1="141" v2="142" v3="118" />+                <face v1="118" v2="142" v3="1469" />+                <face v1="118" v2="1469" v3="131" />+                <face v1="1469" v2="1477" v3="145" />+                <face v1="1469" v2="145" v3="121" />+                <face v1="121" v2="145" v3="146" />+                <face v1="121" v2="146" v3="134" />+                <face v1="134" v2="146" v3="147" />+                <face v1="134" v2="147" v3="123" />+                <face v1="123" v2="147" v3="148" />+                <face v1="123" v2="148" v3="136" />+                <face v1="136" v2="148" v3="149" />+                <face v1="136" v2="149" v3="125" />+                <face v1="125" v2="149" v3="138" />+                <face v1="138" v2="151" v3="127" />+                <face v1="127" v2="151" v3="152" />+                <face v1="127" v2="152" v3="140" />+                <face v1="140" v2="152" v3="141" />+                <face v1="1477" v2="169" v3="145" />+                <face v1="145" v2="169" v3="170" />+                <face v1="145" v2="170" v3="146" />+                <face v1="146" v2="170" v3="159" />+                <face v1="146" v2="159" v3="147" />+                <face v1="147" v2="159" v3="148" />+                <face v1="149" v2="186" v3="138" />+                <face v1="151" v2="138" v3="164" />+                <face v1="151" v2="164" v3="152" />+                <face v1="152" v2="164" v3="165" />+                <face v1="152" v2="165" v3="141" />+                <face v1="141" v2="165" v3="166" />+                <face v1="141" v2="166" v3="142" />+                <face v1="142" v2="166" v3="167" />+                <face v1="142" v2="167" v3="1469" />+                <face v1="1469" v2="167" v3="1476" />+                <face v1="170" v2="171" v3="159" />+                <face v1="159" v2="171" v3="172" />+                <face v1="159" v2="172" v3="148" />+                <face v1="148" v2="172" v3="149" />+                <face v1="186" v2="175" v3="138" />+                <face v1="138" v2="175" v3="176" />+                <face v1="138" v2="176" v3="164" />+                <face v1="164" v2="176" v3="177" />+                <face v1="164" v2="177" v3="165" />+                <face v1="165" v2="177" v3="166" />+                <face v1="1481" v2="193" v3="169" />+                <face v1="169" v2="193" v3="182" />+                <face v1="169" v2="182" v3="170" />+                <face v1="170" v2="182" v3="183" />+                <face v1="170" v2="183" v3="171" />+                <face v1="171" v2="183" v3="184" />+                <face v1="171" v2="184" v3="172" />+                <face v1="172" v2="184" v3="185" />+                <face v1="172" v2="185" v3="149" />+                <face v1="149" v2="185" v3="186" />+                <face v1="175" v2="188" v3="176" />+                <face v1="176" v2="188" v3="189" />+                <face v1="176" v2="189" v3="177" />+                <face v1="177" v2="189" v3="190" />+                <face v1="177" v2="190" v3="166" />+                <face v1="166" v2="190" v3="191" />+                <face v1="166" v2="191" v3="167" />+                <face v1="167" v2="191" v3="1481" />+                <face v1="1481" v2="1489" v3="193" />+                <face v1="193" v2="194" v3="182" />+                <face v1="182" v2="194" v3="195" />+                <face v1="182" v2="195" v3="183" />+                <face v1="183" v2="195" v3="196" />+                <face v1="183" v2="196" v3="184" />+                <face v1="184" v2="196" v3="185" />+                <face v1="186" v2="199" v3="175" />+                <face v1="175" v2="199" v3="200" />+                <face v1="175" v2="200" v3="188" />+                <face v1="188" v2="200" v3="201" />+                <face v1="188" v2="201" v3="189" />+                <face v1="189" v2="201" v3="202" />+                <face v1="189" v2="202" v3="190" />+                <face v1="190" v2="202" v3="191" />+                <face v1="191" v2="1489" v3="1481" />+                <face v1="1489" v2="205" v3="193" />+                <face v1="193" v2="205" v3="206" />+                <face v1="193" v2="206" v3="194" />+                <face v1="194" v2="206" v3="207" />+                <face v1="194" v2="207" v3="195" />+                <face v1="195" v2="207" v3="208" />+                <face v1="195" v2="208" v3="196" />+                <face v1="196" v2="208" v3="209" />+                <face v1="196" v2="209" v3="185" />+                <face v1="185" v2="209" v3="186" />+                <face v1="186" v2="211" v3="199" />+                <face v1="199" v2="211" v3="212" />+                <face v1="199" v2="212" v3="200" />+                <face v1="200" v2="212" v3="213" />+                <face v1="200" v2="213" v3="201" />+                <face v1="201" v2="213" v3="214" />+                <face v1="201" v2="214" v3="202" />+                <face v1="202" v2="214" v3="215" />+                <face v1="202" v2="215" v3="191" />+                <face v1="191" v2="215" v3="1488" />+                <face v1="205" v2="218" v3="206" />+                <face v1="206" v2="218" v3="219" />+                <face v1="206" v2="219" v3="207" />+                <face v1="207" v2="219" v3="220" />+                <face v1="207" v2="220" v3="208" />+                <face v1="208" v2="220" v3="209" />+                <face v1="209" v2="222" v3="186" />+                <face v1="186" v2="222" v3="223" />+                <face v1="186" v2="223" v3="211" />+                <face v1="211" v2="223" v3="224" />+                <face v1="211" v2="224" v3="212" />+                <face v1="212" v2="224" v3="225" />+                <face v1="212" v2="225" v3="213" />+                <face v1="213" v2="225" v3="214" />+                <face v1="1493" v2="1498" v3="229" />+                <face v1="1493" v2="229" v3="205" />+                <face v1="205" v2="229" v3="218" />+                <face v1="218" v2="231" v3="219" />+                <face v1="219" v2="231" v3="220" />+                <face v1="220" v2="233" v3="209" />+                <face v1="209" v2="233" v3="246" />+                <face v1="209" v2="246" v3="222" />+                <face v1="222" v2="246" v3="235" />+                <face v1="222" v2="235" v3="223" />+                <face v1="223" v2="235" v3="236" />+                <face v1="223" v2="236" v3="224" />+                <face v1="224" v2="236" v3="225" />+                <face v1="225" v2="238" v3="214" />+                <face v1="214" v2="238" v3="239" />+                <face v1="214" v2="239" v3="215" />+                <face v1="215" v2="239" v3="1498" />+                <face v1="215" v2="1498" v3="1493" />+                <face v1="229" v2="242" v3="218" />+                <face v1="218" v2="242" v3="231" />+                <face v1="231" v2="244" v3="220" />+                <face v1="220" v2="244" v3="233" />+                <face v1="235" v2="248" v3="236" />+                <face v1="236" v2="248" v3="249" />+                <face v1="236" v2="249" v3="225" />+                <face v1="225" v2="249" v3="262" />+                <face v1="225" v2="262" v3="238" />+                <face v1="238" v2="262" v3="323" />+                <face v1="238" v2="323" v3="239" />+                <face v1="239" v2="323" v3="1497" />+                <face v1="240" v2="253" v3="229" />+                <face v1="229" v2="253" v3="242" />+                <face v1="242" v2="255" v3="231" />+                <face v1="231" v2="255" v3="244" />+                <face v1="246" v2="259" v3="235" />+                <face v1="235" v2="259" v3="248" />+                <face v1="248" v2="273" v3="249" />+                <face v1="249" v2="273" v3="262" />+                <face v1="1502" v2="264" v3="253" />+                <face v1="253" v2="266" v3="242" />+                <face v1="242" v2="266" v3="255" />+                <face v1="233" v2="270" v3="246" />+                <face v1="246" v2="270" v3="283" />+                <face v1="246" v2="283" v3="259" />+                <face v1="259" v2="283" v3="272" />+                <face v1="259" v2="272" v3="248" />+                <face v1="248" v2="272" v3="273" />+                <face v1="273" v2="274" v3="262" />+                <face v1="262" v2="274" v3="323" />+                <face v1="323" v2="1504" v3="1502" />+                <face v1="266" v2="279" v3="255" />+                <face v1="255" v2="279" v3="244" />+                <face v1="270" v2="233" v3="283" />+                <face v1="283" v2="296" v3="272" />+                <face v1="272" v2="296" v3="273" />+                <face v1="253" v2="290" v3="266" />+                <face v1="266" v2="290" v3="279" />+                <face v1="279" v2="292" v3="244" />+                <face v1="244" v2="292" v3="233" />+                <face v1="233" v2="462" v3="283" />+                <face v1="1508" v2="301" v3="253" />+                <face v1="253" v2="301" v3="290" />+                <face v1="292" v2="377" v3="233" />+                <face v1="233" v2="377" v3="462" />+                <face v1="1508" v2="312" v3="301" />+                <face v1="279" v2="316" v3="292" />+                <face v1="292" v2="316" v3="377" />+                <face v1="296" v2="321" v3="273" />+                <face v1="273" v2="321" v3="274" />+                <face v1="323" v2="1516" v3="1508" />+                <face v1="1520" v2="397" v3="301" />+                <face v1="301" v2="397" v3="290" />+                <face v1="283" v2="380" v3="296" />+                <face v1="296" v2="380" v3="321" />+                <face v1="290" v2="399" v3="279" />+                <face v1="279" v2="399" v3="316" />+                <face v1="397" v2="399" v3="290" />+                <face v1="399" v2="412" v3="316" />+                <face v1="316" v2="412" v3="377" />+                <face v1="321" v2="406" v3="274" />+                <face v1="274" v2="406" v3="323" />+                <face v1="380" v2="417" v3="321" />+                <face v1="321" v2="417" v3="406" />+                <face v1="399" v2="436" v3="412" />+                <face v1="412" v2="436" v3="377" />+                <face v1="406" v2="431" v3="323" />+                <face v1="323" v2="431" v3="1520" />+                <face v1="1520" v2="1549" v3="397" />+                <face v1="436" v2="449" v3="377" />+                <face v1="377" v2="449" v3="462" />+                <face v1="462" v2="439" v3="283" />+                <face v1="283" v2="439" v3="380" />+                <face v1="431" v2="1549" v3="1520" />+                <face v1="399" v2="460" v3="436" />+                <face v1="436" v2="460" v3="449" />+                <face v1="439" v2="452" v3="380" />+                <face v1="380" v2="452" v3="417" />+                <face v1="406" v2="479" v3="431" />+                <face v1="431" v2="479" v3="1548" />+                <face v1="444" v2="493" v3="397" />+                <face v1="397" v2="493" v3="399" />+                <face v1="399" v2="471" v3="460" />+                <face v1="460" v2="473" v3="449" />+                <face v1="449" v2="473" v3="462" />+                <face v1="452" v2="465" v3="417" />+                <face v1="417" v2="465" v3="466" />+                <face v1="417" v2="466" v3="406" />+                <face v1="406" v2="466" v3="479" />+                <face v1="493" v2="482" v3="399" />+                <face v1="399" v2="482" v3="471" />+                <face v1="471" v2="484" v3="460" />+                <face v1="460" v2="484" v3="473" />+                <face v1="1553" v2="480" v3="493" />+                <face v1="482" v2="495" v3="471" />+                <face v1="471" v2="495" v3="484" />+                <face v1="473" v2="486" v3="462" />+                <face v1="462" v2="486" v3="439" />+                <face v1="439" v2="488" v3="452" />+                <face v1="452" v2="488" v3="489" />+                <face v1="452" v2="489" v3="465" />+                <face v1="465" v2="489" v3="490" />+                <face v1="465" v2="490" v3="466" />+                <face v1="466" v2="490" v3="479" />+                <face v1="479" v2="1558" v3="1553" />+                <face v1="493" v2="506" v3="482" />+                <face v1="482" v2="506" v3="495" />+                <face v1="495" v2="508" v3="484" />+                <face v1="484" v2="508" v3="497" />+                <face v1="484" v2="497" v3="473" />+                <face v1="473" v2="497" v3="486" />+                <face v1="439" v2="500" v3="488" />+                <face v1="488" v2="500" v3="489" />+                <face v1="489" v2="502" v3="490" />+                <face v1="490" v2="502" v3="503" />+                <face v1="490" v2="503" v3="479" />+                <face v1="479" v2="503" v3="1562" />+                <face v1="1562" v2="504" v3="517" />+                <face v1="1562" v2="517" v3="493" />+                <face v1="493" v2="517" v3="506" />+                <face v1="506" v2="507" v3="495" />+                <face v1="495" v2="507" v3="508" />+                <face v1="500" v2="513" v3="489" />+                <face v1="489" v2="513" v3="514" />+                <face v1="489" v2="514" v3="502" />+                <face v1="502" v2="514" v3="515" />+                <face v1="502" v2="515" v3="503" />+                <face v1="503" v2="515" v3="1563" />+                <face v1="503" v2="1564" v3="1562" />+                <face v1="504" v2="516" v3="517" />+                <face v1="517" v2="518" v3="506" />+                <face v1="506" v2="518" v3="519" />+                <face v1="506" v2="519" v3="507" />+                <face v1="507" v2="519" v3="520" />+                <face v1="507" v2="520" v3="508" />+                <face v1="508" v2="520" v3="521" />+                <face v1="508" v2="521" v3="497" />+                <face v1="497" v2="521" v3="522" />+                <face v1="497" v2="522" v3="486" />+                <face v1="486" v2="522" v3="523" />+                <face v1="486" v2="523" v3="439" />+                <face v1="439" v2="523" v3="524" />+                <face v1="439" v2="524" v3="500" />+                <face v1="500" v2="524" v3="525" />+                <face v1="500" v2="525" v3="513" />+                <face v1="513" v2="525" v3="526" />+                <face v1="513" v2="526" v3="514" />+                <face v1="514" v2="526" v3="527" />+                <face v1="514" v2="527" v3="515" />+                <face v1="515" v2="527" v3="1566" />+                <face v1="515" v2="1567" v3="1568" />+                <face v1="516" v2="541" v3="517" />+                <face v1="517" v2="541" v3="530" />+                <face v1="517" v2="530" v3="518" />+                <face v1="518" v2="530" v3="531" />+                <face v1="518" v2="531" v3="519" />+                <face v1="519" v2="531" v3="532" />+                <face v1="519" v2="532" v3="520" />+                <face v1="520" v2="532" v3="533" />+                <face v1="520" v2="533" v3="521" />+                <face v1="521" v2="533" v3="522" />+                <face v1="523" v2="536" v3="524" />+                <face v1="524" v2="536" v3="537" />+                <face v1="524" v2="537" v3="525" />+                <face v1="525" v2="537" v3="538" />+                <face v1="525" v2="538" v3="526" />+                <face v1="526" v2="538" v3="539" />+                <face v1="526" v2="539" v3="527" />+                <face v1="527" v2="539" v3="1571" />+                <face v1="1571" v2="540" v3="541" />+                <face v1="541" v2="542" v3="530" />+                <face v1="530" v2="542" v3="543" />+                <face v1="530" v2="543" v3="531" />+                <face v1="531" v2="543" v3="544" />+                <face v1="531" v2="544" v3="532" />+                <face v1="532" v2="544" v3="533" />+                <face v1="522" v2="547" v3="523" />+                <face v1="523" v2="547" v3="548" />+                <face v1="523" v2="548" v3="536" />+                <face v1="536" v2="548" v3="549" />+                <face v1="536" v2="549" v3="537" />+                <face v1="537" v2="549" v3="550" />+                <face v1="537" v2="550" v3="538" />+                <face v1="538" v2="550" v3="551" />+                <face v1="538" v2="551" v3="539" />+                <face v1="539" v2="551" v3="1572" />+                <face v1="539" v2="1573" v3="1571" />+                <face v1="540" v2="553" v3="541" />+                <face v1="541" v2="553" v3="554" />+                <face v1="541" v2="554" v3="542" />+                <face v1="542" v2="554" v3="555" />+                <face v1="542" v2="555" v3="543" />+                <face v1="543" v2="555" v3="556" />+                <face v1="543" v2="556" v3="544" />+                <face v1="544" v2="556" v3="557" />+                <face v1="544" v2="557" v3="533" />+                <face v1="533" v2="557" v3="522" />+                <face v1="522" v2="559" v3="547" />+                <face v1="547" v2="559" v3="548" />+                <face v1="548" v2="561" v3="549" />+                <face v1="549" v2="561" v3="562" />+                <face v1="549" v2="562" v3="550" />+                <face v1="550" v2="562" v3="563" />+                <face v1="550" v2="563" v3="551" />+                <face v1="551" v2="563" v3="1577" />+                <face v1="553" v2="566" v3="554" />+                <face v1="554" v2="566" v3="555" />+                <face v1="555" v2="568" v3="556" />+                <face v1="556" v2="568" v3="557" />+                <face v1="557" v2="570" v3="522" />+                <face v1="522" v2="570" v3="583" />+                <face v1="522" v2="583" v3="559" />+                <face v1="559" v2="583" v3="572" />+                <face v1="559" v2="572" v3="548" />+                <face v1="548" v2="572" v3="573" />+                <face v1="548" v2="573" v3="561" />+                <face v1="561" v2="573" v3="574" />+                <face v1="561" v2="574" v3="562" />+                <face v1="562" v2="574" v3="563" />+                <face v1="1577" v2="577" v3="553" />+                <face v1="553" v2="577" v3="566" />+                <face v1="566" v2="579" v3="555" />+                <face v1="555" v2="579" v3="568" />+                <face v1="568" v2="581" v3="557" />+                <face v1="557" v2="581" v3="570" />+                <face v1="583" v2="596" v3="572" />+                <face v1="572" v2="596" v3="597" />+                <face v1="572" v2="597" v3="573" />+                <face v1="573" v2="597" v3="574" />+                <face v1="574" v2="587" v3="563" />+                <face v1="563" v2="587" v3="1577" />+                <face v1="1577" v2="588" v3="577" />+                <face v1="577" v2="590" v3="566" />+                <face v1="566" v2="590" v3="579" />+                <face v1="579" v2="592" v3="568" />+                <face v1="568" v2="592" v3="581" />+                <face v1="581" v2="618" v3="570" />+                <face v1="570" v2="618" v3="607" />+                <face v1="570" v2="607" v3="583" />+                <face v1="583" v2="607" v3="596" />+                <face v1="597" v2="598" v3="574" />+                <face v1="574" v2="598" v3="587" />+                <face v1="587" v2="1585" v3="1577" />+                <face v1="588" v2="601" v3="577" />+                <face v1="577" v2="601" v3="602" />+                <face v1="577" v2="602" v3="590" />+                <face v1="590" v2="602" v3="603" />+                <face v1="590" v2="603" v3="579" />+                <face v1="579" v2="603" v3="592" />+                <face v1="592" v2="605" v3="581" />+                <face v1="581" v2="605" v3="618" />+                <face v1="607" v2="620" v3="596" />+                <face v1="596" v2="620" v3="621" />+                <face v1="596" v2="621" v3="597" />+                <face v1="597" v2="621" v3="598" />+                <face v1="598" v2="611" v3="587" />+                <face v1="587" v2="611" v3="1589" />+                <face v1="601" v2="614" v3="602" />+                <face v1="602" v2="614" v3="603" />+                <face v1="603" v2="616" v3="592" />+                <face v1="592" v2="616" v3="605" />+                <face v1="621" v2="622" v3="598" />+                <face v1="598" v2="622" v3="1589" />+                <face v1="598" v2="1589" v3="611" />+                <face v1="1589" v2="1597" v3="625" />+                <face v1="1589" v2="625" v3="601" />+                <face v1="601" v2="625" v3="626" />+                <face v1="601" v2="626" v3="614" />+                <face v1="614" v2="626" v3="627" />+                <face v1="614" v2="627" v3="603" />+                <face v1="603" v2="627" v3="628" />+                <face v1="603" v2="628" v3="616" />+                <face v1="616" v2="628" v3="629" />+                <face v1="616" v2="629" v3="605" />+                <face v1="605" v2="629" v3="618" />+                <face v1="618" v2="631" v3="607" />+                <face v1="607" v2="631" v3="632" />+                <face v1="607" v2="632" v3="620" />+                <face v1="620" v2="632" v3="621" />+                <face v1="1597" v2="649" v3="625" />+                <face v1="625" v2="649" v3="650" />+                <face v1="625" v2="650" v3="626" />+                <face v1="626" v2="650" v3="639" />+                <face v1="626" v2="639" v3="627" />+                <face v1="627" v2="639" v3="628" />+                <face v1="629" v2="666" v3="618" />+                <face v1="631" v2="618" v3="644" />+                <face v1="631" v2="644" v3="632" />+                <face v1="632" v2="644" v3="645" />+                <face v1="632" v2="645" v3="621" />+                <face v1="621" v2="645" v3="646" />+                <face v1="621" v2="646" v3="622" />+                <face v1="622" v2="646" v3="647" />+                <face v1="622" v2="647" v3="1589" />+                <face v1="1589" v2="647" v3="1596" />+                <face v1="650" v2="651" v3="639" />+                <face v1="639" v2="651" v3="652" />+                <face v1="639" v2="652" v3="628" />+                <face v1="628" v2="652" v3="629" />+                <face v1="666" v2="655" v3="618" />+                <face v1="618" v2="655" v3="656" />+                <face v1="618" v2="656" v3="644" />+                <face v1="644" v2="656" v3="657" />+                <face v1="644" v2="657" v3="645" />+                <face v1="645" v2="657" v3="646" />+                <face v1="1601" v2="673" v3="649" />+                <face v1="649" v2="673" v3="662" />+                <face v1="649" v2="662" v3="650" />+                <face v1="650" v2="662" v3="663" />+                <face v1="650" v2="663" v3="651" />+                <face v1="651" v2="663" v3="664" />+                <face v1="651" v2="664" v3="652" />+                <face v1="652" v2="664" v3="665" />+                <face v1="652" v2="665" v3="629" />+                <face v1="629" v2="665" v3="666" />+                <face v1="655" v2="668" v3="656" />+                <face v1="656" v2="668" v3="669" />+                <face v1="656" v2="669" v3="657" />+                <face v1="657" v2="669" v3="670" />+                <face v1="657" v2="670" v3="646" />+                <face v1="646" v2="670" v3="671" />+                <face v1="646" v2="671" v3="647" />+                <face v1="647" v2="671" v3="1601" />+                <face v1="1601" v2="1609" v3="673" />+                <face v1="673" v2="674" v3="662" />+                <face v1="662" v2="674" v3="675" />+                <face v1="662" v2="675" v3="663" />+                <face v1="663" v2="675" v3="676" />+                <face v1="663" v2="676" v3="664" />+                <face v1="664" v2="676" v3="665" />+                <face v1="666" v2="679" v3="655" />+                <face v1="655" v2="679" v3="680" />+                <face v1="655" v2="680" v3="668" />+                <face v1="668" v2="680" v3="681" />+                <face v1="668" v2="681" v3="669" />+                <face v1="669" v2="681" v3="682" />+                <face v1="669" v2="682" v3="670" />+                <face v1="670" v2="682" v3="671" />+                <face v1="671" v2="1609" v3="1601" />+                <face v1="1609" v2="685" v3="673" />+                <face v1="673" v2="685" v3="686" />+                <face v1="673" v2="686" v3="674" />+                <face v1="674" v2="686" v3="687" />+                <face v1="674" v2="687" v3="675" />+                <face v1="675" v2="687" v3="688" />+                <face v1="675" v2="688" v3="676" />+                <face v1="676" v2="688" v3="689" />+                <face v1="676" v2="689" v3="665" />+                <face v1="665" v2="689" v3="666" />+                <face v1="666" v2="691" v3="679" />+                <face v1="679" v2="691" v3="692" />+                <face v1="679" v2="692" v3="680" />+                <face v1="680" v2="692" v3="693" />+                <face v1="680" v2="693" v3="681" />+                <face v1="681" v2="693" v3="694" />+                <face v1="681" v2="694" v3="682" />+                <face v1="682" v2="694" v3="695" />+                <face v1="682" v2="695" v3="671" />+                <face v1="671" v2="695" v3="1608" />+                <face v1="685" v2="698" v3="686" />+                <face v1="686" v2="698" v3="699" />+                <face v1="686" v2="699" v3="687" />+                <face v1="687" v2="699" v3="700" />+                <face v1="687" v2="700" v3="688" />+                <face v1="688" v2="700" v3="689" />+                <face v1="689" v2="702" v3="666" />+                <face v1="666" v2="702" v3="703" />+                <face v1="666" v2="703" v3="691" />+                <face v1="691" v2="703" v3="704" />+                <face v1="691" v2="704" v3="692" />+                <face v1="692" v2="704" v3="705" />+                <face v1="692" v2="705" v3="693" />+                <face v1="693" v2="705" v3="694" />+                <face v1="1613" v2="1618" v3="709" />+                <face v1="1613" v2="709" v3="685" />+                <face v1="685" v2="709" v3="698" />+                <face v1="698" v2="711" v3="699" />+                <face v1="699" v2="711" v3="700" />+                <face v1="700" v2="713" v3="689" />+                <face v1="689" v2="713" v3="726" />+                <face v1="689" v2="726" v3="702" />+                <face v1="702" v2="726" v3="715" />+                <face v1="702" v2="715" v3="703" />+                <face v1="703" v2="715" v3="716" />+                <face v1="703" v2="716" v3="704" />+                <face v1="704" v2="716" v3="705" />+                <face v1="705" v2="718" v3="694" />+                <face v1="694" v2="718" v3="719" />+                <face v1="694" v2="719" v3="695" />+                <face v1="695" v2="719" v3="1618" />+                <face v1="695" v2="1618" v3="1613" />+                <face v1="709" v2="722" v3="698" />+                <face v1="698" v2="722" v3="711" />+                <face v1="711" v2="724" v3="700" />+                <face v1="700" v2="724" v3="713" />+                <face v1="715" v2="728" v3="716" />+                <face v1="716" v2="728" v3="729" />+                <face v1="716" v2="729" v3="705" />+                <face v1="705" v2="729" v3="742" />+                <face v1="705" v2="742" v3="718" />+                <face v1="718" v2="742" v3="803" />+                <face v1="718" v2="803" v3="719" />+                <face v1="719" v2="803" v3="1617" />+                <face v1="720" v2="733" v3="709" />+                <face v1="709" v2="733" v3="722" />+                <face v1="722" v2="735" v3="711" />+                <face v1="711" v2="735" v3="724" />+                <face v1="726" v2="739" v3="715" />+                <face v1="715" v2="739" v3="728" />+                <face v1="728" v2="753" v3="729" />+                <face v1="729" v2="753" v3="742" />+                <face v1="1622" v2="744" v3="733" />+                <face v1="733" v2="746" v3="722" />+                <face v1="722" v2="746" v3="735" />+                <face v1="713" v2="750" v3="726" />+                <face v1="726" v2="750" v3="763" />+                <face v1="726" v2="763" v3="739" />+                <face v1="739" v2="763" v3="752" />+                <face v1="739" v2="752" v3="728" />+                <face v1="728" v2="752" v3="753" />+                <face v1="753" v2="754" v3="742" />+                <face v1="742" v2="754" v3="803" />+                <face v1="803" v2="1624" v3="1622" />+                <face v1="746" v2="759" v3="735" />+                <face v1="735" v2="759" v3="724" />+                <face v1="750" v2="713" v3="763" />+                <face v1="763" v2="776" v3="752" />+                <face v1="752" v2="776" v3="753" />+                <face v1="733" v2="770" v3="746" />+                <face v1="746" v2="770" v3="759" />+                <face v1="759" v2="772" v3="724" />+                <face v1="724" v2="772" v3="713" />+                <face v1="713" v2="942" v3="763" />+                <face v1="1628" v2="781" v3="733" />+                <face v1="733" v2="781" v3="770" />+                <face v1="772" v2="857" v3="713" />+                <face v1="713" v2="857" v3="942" />+                <face v1="1628" v2="792" v3="781" />+                <face v1="759" v2="796" v3="772" />+                <face v1="772" v2="796" v3="857" />+                <face v1="776" v2="801" v3="753" />+                <face v1="753" v2="801" v3="754" />+                <face v1="803" v2="1636" v3="1628" />+                <face v1="1640" v2="877" v3="781" />+                <face v1="781" v2="877" v3="770" />+                <face v1="763" v2="860" v3="776" />+                <face v1="776" v2="860" v3="801" />+                <face v1="770" v2="879" v3="759" />+                <face v1="759" v2="879" v3="796" />+                <face v1="877" v2="879" v3="770" />+                <face v1="879" v2="892" v3="796" />+                <face v1="796" v2="892" v3="857" />+                <face v1="801" v2="886" v3="754" />+                <face v1="754" v2="886" v3="803" />+                <face v1="860" v2="897" v3="801" />+                <face v1="801" v2="897" v3="886" />+                <face v1="879" v2="916" v3="892" />+                <face v1="892" v2="916" v3="857" />+                <face v1="886" v2="911" v3="803" />+                <face v1="803" v2="911" v3="1640" />+                <face v1="1640" v2="1669" v3="877" />+                <face v1="916" v2="929" v3="857" />+                <face v1="857" v2="929" v3="942" />+                <face v1="942" v2="919" v3="763" />+                <face v1="763" v2="919" v3="860" />+                <face v1="911" v2="1669" v3="1640" />+                <face v1="879" v2="940" v3="916" />+                <face v1="916" v2="940" v3="929" />+                <face v1="919" v2="932" v3="860" />+                <face v1="860" v2="932" v3="897" />+                <face v1="886" v2="959" v3="911" />+                <face v1="911" v2="959" v3="1668" />+                <face v1="924" v2="973" v3="877" />+                <face v1="877" v2="973" v3="879" />+                <face v1="879" v2="951" v3="940" />+                <face v1="940" v2="953" v3="929" />+                <face v1="929" v2="953" v3="942" />+                <face v1="932" v2="945" v3="897" />+                <face v1="897" v2="945" v3="946" />+                <face v1="897" v2="946" v3="886" />+                <face v1="886" v2="946" v3="959" />+                <face v1="973" v2="962" v3="879" />+                <face v1="879" v2="962" v3="951" />+                <face v1="951" v2="964" v3="940" />+                <face v1="940" v2="964" v3="953" />+                <face v1="1673" v2="960" v3="973" />+                <face v1="962" v2="975" v3="951" />+                <face v1="951" v2="975" v3="964" />+                <face v1="953" v2="966" v3="942" />+                <face v1="942" v2="966" v3="919" />+                <face v1="919" v2="968" v3="932" />+                <face v1="932" v2="968" v3="969" />+                <face v1="932" v2="969" v3="945" />+                <face v1="945" v2="969" v3="970" />+                <face v1="945" v2="970" v3="946" />+                <face v1="946" v2="970" v3="959" />+                <face v1="959" v2="1678" v3="1673" />+                <face v1="973" v2="986" v3="962" />+                <face v1="962" v2="986" v3="975" />+                <face v1="975" v2="988" v3="964" />+                <face v1="964" v2="988" v3="977" />+                <face v1="964" v2="977" v3="953" />+                <face v1="953" v2="977" v3="966" />+                <face v1="919" v2="980" v3="968" />+                <face v1="968" v2="980" v3="969" />+                <face v1="969" v2="982" v3="970" />+                <face v1="970" v2="982" v3="983" />+                <face v1="970" v2="983" v3="959" />+                <face v1="959" v2="983" v3="1682" />+                <face v1="1682" v2="984" v3="997" />+                <face v1="1682" v2="997" v3="973" />+                <face v1="973" v2="997" v3="986" />+                <face v1="986" v2="987" v3="975" />+                <face v1="975" v2="987" v3="988" />+                <face v1="980" v2="993" v3="969" />+                <face v1="969" v2="993" v3="994" />+                <face v1="969" v2="994" v3="982" />+                <face v1="982" v2="994" v3="995" />+                <face v1="982" v2="995" v3="983" />+                <face v1="983" v2="995" v3="1683" />+                <face v1="983" v2="1684" v3="1682" />+                <face v1="984" v2="996" v3="997" />+                <face v1="997" v2="998" v3="986" />+                <face v1="986" v2="998" v3="999" />+                <face v1="986" v2="999" v3="987" />+                <face v1="987" v2="999" v3="1000" />+                <face v1="987" v2="1000" v3="988" />+                <face v1="988" v2="1000" v3="1001" />+                <face v1="988" v2="1001" v3="977" />+                <face v1="977" v2="1001" v3="1002" />+                <face v1="977" v2="1002" v3="966" />+                <face v1="966" v2="1002" v3="1003" />+                <face v1="966" v2="1003" v3="919" />+                <face v1="919" v2="1003" v3="1004" />+                <face v1="919" v2="1004" v3="980" />+                <face v1="980" v2="1004" v3="1005" />+                <face v1="980" v2="1005" v3="993" />+                <face v1="993" v2="1005" v3="1006" />+                <face v1="993" v2="1006" v3="994" />+                <face v1="994" v2="1006" v3="1007" />+                <face v1="994" v2="1007" v3="995" />+                <face v1="995" v2="1007" v3="1686" />+                <face v1="995" v2="1687" v3="1688" />+                <face v1="996" v2="1021" v3="997" />+                <face v1="997" v2="1021" v3="1010" />+                <face v1="997" v2="1010" v3="998" />+                <face v1="998" v2="1010" v3="1011" />+                <face v1="998" v2="1011" v3="999" />+                <face v1="999" v2="1011" v3="1012" />+                <face v1="999" v2="1012" v3="1000" />+                <face v1="1000" v2="1012" v3="1013" />+                <face v1="1000" v2="1013" v3="1001" />+                <face v1="1001" v2="1013" v3="1002" />+                <face v1="1003" v2="1016" v3="1004" />+                <face v1="1004" v2="1016" v3="1017" />+                <face v1="1004" v2="1017" v3="1005" />+                <face v1="1005" v2="1017" v3="1018" />+                <face v1="1005" v2="1018" v3="1006" />+                <face v1="1006" v2="1018" v3="1019" />+                <face v1="1006" v2="1019" v3="1007" />+                <face v1="1007" v2="1019" v3="1691" />+                <face v1="1691" v2="1020" v3="1021" />+                <face v1="1021" v2="1022" v3="1010" />+                <face v1="1010" v2="1022" v3="1023" />+                <face v1="1010" v2="1023" v3="1011" />+                <face v1="1011" v2="1023" v3="1024" />+                <face v1="1011" v2="1024" v3="1012" />+                <face v1="1012" v2="1024" v3="1013" />+                <face v1="1002" v2="1027" v3="1003" />+                <face v1="1003" v2="1027" v3="1028" />+                <face v1="1003" v2="1028" v3="1016" />+                <face v1="1016" v2="1028" v3="1029" />+                <face v1="1016" v2="1029" v3="1017" />+                <face v1="1017" v2="1029" v3="1030" />+                <face v1="1017" v2="1030" v3="1018" />+                <face v1="1018" v2="1030" v3="1031" />+                <face v1="1018" v2="1031" v3="1019" />+                <face v1="1019" v2="1031" v3="1692" />+                <face v1="1019" v2="1693" v3="1691" />+                <face v1="1020" v2="1033" v3="1021" />+                <face v1="1021" v2="1033" v3="1034" />+                <face v1="1021" v2="1034" v3="1022" />+                <face v1="1022" v2="1034" v3="1035" />+                <face v1="1022" v2="1035" v3="1023" />+                <face v1="1023" v2="1035" v3="1036" />+                <face v1="1023" v2="1036" v3="1024" />+                <face v1="1024" v2="1036" v3="1037" />+                <face v1="1024" v2="1037" v3="1013" />+                <face v1="1013" v2="1037" v3="1002" />+                <face v1="1002" v2="1039" v3="1027" />+                <face v1="1027" v2="1039" v3="1028" />+                <face v1="1028" v2="1041" v3="1029" />+                <face v1="1029" v2="1041" v3="1042" />+                <face v1="1029" v2="1042" v3="1030" />+                <face v1="1030" v2="1042" v3="1043" />+                <face v1="1030" v2="1043" v3="1031" />+                <face v1="1031" v2="1043" v3="1697" />+                <face v1="1033" v2="1046" v3="1034" />+                <face v1="1034" v2="1046" v3="1035" />+                <face v1="1035" v2="1048" v3="1036" />+                <face v1="1036" v2="1048" v3="1037" />+                <face v1="1037" v2="1050" v3="1002" />+                <face v1="1002" v2="1050" v3="1063" />+                <face v1="1002" v2="1063" v3="1039" />+                <face v1="1039" v2="1063" v3="1052" />+                <face v1="1039" v2="1052" v3="1028" />+                <face v1="1028" v2="1052" v3="1053" />+                <face v1="1028" v2="1053" v3="1041" />+                <face v1="1041" v2="1053" v3="1054" />+                <face v1="1041" v2="1054" v3="1042" />+                <face v1="1042" v2="1054" v3="1043" />+                <face v1="1697" v2="1057" v3="1033" />+                <face v1="1033" v2="1057" v3="1046" />+                <face v1="1046" v2="1059" v3="1035" />+                <face v1="1035" v2="1059" v3="1048" />+                <face v1="1048" v2="1061" v3="1037" />+                <face v1="1037" v2="1061" v3="1050" />+                <face v1="1063" v2="1076" v3="1052" />+                <face v1="1052" v2="1076" v3="1077" />+                <face v1="1052" v2="1077" v3="1053" />+                <face v1="1053" v2="1077" v3="1054" />+                <face v1="1054" v2="1067" v3="1043" />+                <face v1="1043" v2="1067" v3="1697" />+                <face v1="1697" v2="1068" v3="1057" />+                <face v1="1057" v2="1070" v3="1046" />+                <face v1="1046" v2="1070" v3="1059" />+                <face v1="1059" v2="1072" v3="1048" />+                <face v1="1048" v2="1072" v3="1061" />+                <face v1="1061" v2="1098" v3="1050" />+                <face v1="1050" v2="1098" v3="1087" />+                <face v1="1050" v2="1087" v3="1063" />+                <face v1="1063" v2="1087" v3="1076" />+                <face v1="1077" v2="1078" v3="1054" />+                <face v1="1054" v2="1078" v3="1067" />+                <face v1="1067" v2="1705" v3="1697" />+                <face v1="1068" v2="1081" v3="1057" />+                <face v1="1057" v2="1081" v3="1082" />+                <face v1="1057" v2="1082" v3="1070" />+                <face v1="1070" v2="1082" v3="1083" />+                <face v1="1070" v2="1083" v3="1059" />+                <face v1="1059" v2="1083" v3="1072" />+                <face v1="1072" v2="1085" v3="1061" />+                <face v1="1061" v2="1085" v3="1098" />+                <face v1="1087" v2="1100" v3="1076" />+                <face v1="1076" v2="1100" v3="1101" />+                <face v1="1076" v2="1101" v3="1077" />+                <face v1="1077" v2="1101" v3="1078" />+                <face v1="1078" v2="1091" v3="1067" />+                <face v1="1067" v2="1091" v3="1709" />+                <face v1="1081" v2="1094" v3="1082" />+                <face v1="1082" v2="1094" v3="1083" />+                <face v1="1083" v2="1096" v3="1072" />+                <face v1="1072" v2="1096" v3="1085" />+                <face v1="1101" v2="1102" v3="1078" />+                <face v1="1078" v2="1102" v3="1709" />+                <face v1="1078" v2="1709" v3="1091" />+                <face v1="1709" v2="1717" v3="1105" />+                <face v1="1709" v2="1105" v3="1081" />+                <face v1="1081" v2="1105" v3="1106" />+                <face v1="1081" v2="1106" v3="1094" />+                <face v1="1094" v2="1106" v3="1107" />+                <face v1="1094" v2="1107" v3="1083" />+                <face v1="1083" v2="1107" v3="1108" />+                <face v1="1083" v2="1108" v3="1096" />+                <face v1="1096" v2="1108" v3="1109" />+                <face v1="1096" v2="1109" v3="1085" />+                <face v1="1085" v2="1109" v3="1098" />+                <face v1="1098" v2="1111" v3="1087" />+                <face v1="1087" v2="1111" v3="1112" />+                <face v1="1087" v2="1112" v3="1100" />+                <face v1="1100" v2="1112" v3="1101" />+                <face v1="1717" v2="1129" v3="1105" />+                <face v1="1105" v2="1129" v3="1130" />+                <face v1="1105" v2="1130" v3="1106" />+                <face v1="1106" v2="1130" v3="1119" />+                <face v1="1106" v2="1119" v3="1107" />+                <face v1="1107" v2="1119" v3="1108" />+                <face v1="1109" v2="1146" v3="1098" />+                <face v1="1111" v2="1098" v3="1124" />+                <face v1="1111" v2="1124" v3="1112" />+                <face v1="1112" v2="1124" v3="1125" />+                <face v1="1112" v2="1125" v3="1101" />+                <face v1="1101" v2="1125" v3="1126" />+                <face v1="1101" v2="1126" v3="1102" />+                <face v1="1102" v2="1126" v3="1127" />+                <face v1="1102" v2="1127" v3="1709" />+                <face v1="1709" v2="1127" v3="1716" />+                <face v1="1130" v2="1131" v3="1119" />+                <face v1="1119" v2="1131" v3="1132" />+                <face v1="1119" v2="1132" v3="1108" />+                <face v1="1108" v2="1132" v3="1109" />+                <face v1="1146" v2="1135" v3="1098" />+                <face v1="1098" v2="1135" v3="1136" />+                <face v1="1098" v2="1136" v3="1124" />+                <face v1="1124" v2="1136" v3="1137" />+                <face v1="1124" v2="1137" v3="1125" />+                <face v1="1125" v2="1137" v3="1126" />+                <face v1="1721" v2="1153" v3="1129" />+                <face v1="1129" v2="1153" v3="1142" />+                <face v1="1129" v2="1142" v3="1130" />+                <face v1="1130" v2="1142" v3="1143" />+                <face v1="1130" v2="1143" v3="1131" />+                <face v1="1131" v2="1143" v3="1144" />+                <face v1="1131" v2="1144" v3="1132" />+                <face v1="1132" v2="1144" v3="1145" />+                <face v1="1132" v2="1145" v3="1109" />+                <face v1="1109" v2="1145" v3="1146" />+                <face v1="1135" v2="1148" v3="1136" />+                <face v1="1136" v2="1148" v3="1149" />+                <face v1="1136" v2="1149" v3="1137" />+                <face v1="1137" v2="1149" v3="1150" />+                <face v1="1137" v2="1150" v3="1126" />+                <face v1="1126" v2="1150" v3="1151" />+                <face v1="1126" v2="1151" v3="1127" />+                <face v1="1127" v2="1151" v3="1721" />+                <face v1="1721" v2="1729" v3="1153" />+                <face v1="1153" v2="1154" v3="1142" />+                <face v1="1142" v2="1154" v3="1155" />+                <face v1="1142" v2="1155" v3="1143" />+                <face v1="1143" v2="1155" v3="1156" />+                <face v1="1143" v2="1156" v3="1144" />+                <face v1="1144" v2="1156" v3="1145" />+                <face v1="1146" v2="1159" v3="1135" />+                <face v1="1135" v2="1159" v3="1160" />+                <face v1="1135" v2="1160" v3="1148" />+                <face v1="1148" v2="1160" v3="1161" />+                <face v1="1148" v2="1161" v3="1149" />+                <face v1="1149" v2="1161" v3="1162" />+                <face v1="1149" v2="1162" v3="1150" />+                <face v1="1150" v2="1162" v3="1151" />+                <face v1="1151" v2="1729" v3="1721" />+                <face v1="1729" v2="1165" v3="1153" />+                <face v1="1153" v2="1165" v3="1166" />+                <face v1="1153" v2="1166" v3="1154" />+                <face v1="1154" v2="1166" v3="1167" />+                <face v1="1154" v2="1167" v3="1155" />+                <face v1="1155" v2="1167" v3="1168" />+                <face v1="1155" v2="1168" v3="1156" />+                <face v1="1156" v2="1168" v3="1169" />+                <face v1="1156" v2="1169" v3="1145" />+                <face v1="1145" v2="1169" v3="1146" />+                <face v1="1146" v2="1171" v3="1159" />+                <face v1="1159" v2="1171" v3="1172" />+                <face v1="1159" v2="1172" v3="1160" />+                <face v1="1160" v2="1172" v3="1173" />+                <face v1="1160" v2="1173" v3="1161" />+                <face v1="1161" v2="1173" v3="1174" />+                <face v1="1161" v2="1174" v3="1162" />+                <face v1="1162" v2="1174" v3="1175" />+                <face v1="1162" v2="1175" v3="1151" />+                <face v1="1151" v2="1175" v3="1728" />+                <face v1="1164" v2="1735" v3="1165" />+                <face v1="1165" v2="1178" v3="1166" />+                <face v1="1166" v2="1178" v3="1179" />+                <face v1="1166" v2="1179" v3="1167" />+                <face v1="1167" v2="1179" v3="1168" />+                <face v1="1169" v2="1182" v3="1146" />+                <face v1="1146" v2="1182" v3="1171" />+                <face v1="1171" v2="1184" v3="1172" />+                <face v1="1172" v2="1184" v3="1185" />+                <face v1="1172" v2="1185" v3="1173" />+                <face v1="1173" v2="1185" v3="1174" />+                <face v1="1175" v2="1735" v3="1733" />+                <face v1="1735" v2="1189" v3="1165" />+                <face v1="1165" v2="1189" v3="1178" />+                <face v1="1178" v2="1191" v3="1179" />+                <face v1="1179" v2="1191" v3="1192" />+                <face v1="1179" v2="1192" v3="1168" />+                <face v1="1168" v2="1192" v3="1193" />+                <face v1="1168" v2="1193" v3="1169" />+                <face v1="1169" v2="1193" v3="1206" />+                <face v1="1169" v2="1206" v3="1182" />+                <face v1="1182" v2="1206" v3="1195" />+                <face v1="1182" v2="1195" v3="1171" />+                <face v1="1171" v2="1195" v3="1184" />+                <face v1="1184" v2="1197" v3="1185" />+                <face v1="1185" v2="1197" v3="1198" />+                <face v1="1185" v2="1198" v3="1174" />+                <face v1="1174" v2="1198" v3="1199" />+                <face v1="1174" v2="1199" v3="1175" />+                <face v1="1175" v2="1199" v3="1734" />+                <face v1="1188" v2="1741" v3="1189" />+                <face v1="1189" v2="1202" v3="1178" />+                <face v1="1178" v2="1202" v3="1191" />+                <face v1="1206" v2="1207" v3="1195" />+                <face v1="1195" v2="1207" v3="1208" />+                <face v1="1195" v2="1208" v3="1184" />+                <face v1="1184" v2="1208" v3="1197" />+                <face v1="1197" v2="1222" v3="1198" />+                <face v1="1198" v2="1222" v3="1283" />+                <face v1="1198" v2="1283" v3="1199" />+                <face v1="1199" v2="1283" v3="1741" />+                <face v1="1199" v2="1741" v3="1739" />+                <face v1="1741" v2="1213" v3="1189" />+                <face v1="1189" v2="1213" v3="1202" />+                <face v1="1202" v2="1215" v3="1191" />+                <face v1="1191" v2="1215" v3="1216" />+                <face v1="1191" v2="1216" v3="1192" />+                <face v1="1192" v2="1216" v3="1193" />+                <face v1="1208" v2="1221" v3="1197" />+                <face v1="1197" v2="1221" v3="1222" />+                <face v1="1212" v2="1747" v3="1213" />+                <face v1="1213" v2="1226" v3="1202" />+                <face v1="1202" v2="1226" v3="1215" />+                <face v1="1216" v2="1229" v3="1193" />+                <face v1="1193" v2="1229" v3="1230" />+                <face v1="1193" v2="1230" v3="1206" />+                <face v1="1206" v2="1230" v3="1231" />+                <face v1="1206" v2="1231" v3="1207" />+                <face v1="1207" v2="1231" v3="1244" />+                <face v1="1207" v2="1244" v3="1208" />+                <face v1="1208" v2="1244" v3="1245" />+                <face v1="1208" v2="1245" v3="1221" />+                <face v1="1221" v2="1245" v3="1234" />+                <face v1="1221" v2="1234" v3="1222" />+                <face v1="1222" v2="1234" v3="1283" />+                <face v1="1283" v2="1747" v3="1745" />+                <face v1="1747" v2="1237" v3="1213" />+                <face v1="1213" v2="1237" v3="1226" />+                <face v1="1215" v2="1240" v3="1216" />+                <face v1="1216" v2="1240" v3="1229" />+                <face v1="1229" v2="1266" v3="1230" />+                <face v1="1230" v2="1266" v3="1231" />+                <face v1="1237" v2="1262" v3="1226" />+                <face v1="1226" v2="1262" v3="1215" />+                <face v1="1240" v2="1289" v3="1229" />+                <face v1="1229" v2="1289" v3="1266" />+                <face v1="1245" v2="1294" v3="1234" />+                <face v1="1234" v2="1294" v3="1283" />+                <face v1="1262" v2="1263" v3="1215" />+                <face v1="1215" v2="1263" v3="1240" />+                <face v1="1751" v2="1800" v3="1237" />+                <face v1="1237" v2="1800" v3="1262" />+                <face v1="1231" v2="1316" v3="1244" />+                <face v1="1244" v2="1316" v3="1245" />+                <face v1="1751" v2="1780" v3="1800" />+                <face v1="1266" v2="1291" v3="1231" />+                <face v1="1231" v2="1291" v3="1316" />+                <face v1="1283" v2="1780" v3="1751" />+                <face v1="1316" v2="1377" v3="1245" />+                <face v1="1245" v2="1377" v3="1294" />+                <face v1="1262" v2="1383" v3="1263" />+                <face v1="1263" v2="1383" v3="1240" />+                <face v1="1800" v2="1334" v3="1262" />+                <face v1="1262" v2="1334" v3="1383" />+                <face v1="1383" v2="1348" v3="1240" />+                <face v1="1240" v2="1348" v3="1289" />+                <face v1="1383" v2="1372" v3="1348" />+                <face v1="1348" v2="1372" v3="1289" />+                <face v1="1377" v2="1366" v3="1294" />+                <face v1="1294" v2="1366" v3="1283" />+                <face v1="1372" v2="1385" v3="1289" />+                <face v1="1289" v2="1385" v3="1374" />+                <face v1="1289" v2="1374" v3="1266" />+                <face v1="1266" v2="1374" v3="1291" />+                <face v1="1366" v2="1391" v3="1283" />+                <face v1="1283" v2="1391" v3="1784" />+                <face v1="1334" v2="1407" v3="1383" />+                <face v1="1383" v2="1407" v3="1372" />+                <face v1="1372" v2="1409" v3="1385" />+                <face v1="1385" v2="1409" v3="1374" />+                <face v1="1374" v2="1399" v3="1291" />+                <face v1="1291" v2="1399" v3="1400" />+                <face v1="1291" v2="1400" v3="1316" />+                <face v1="1316" v2="1400" v3="1401" />+                <face v1="1316" v2="1401" v3="1377" />+                <face v1="1377" v2="1401" v3="1366" />+                <face v1="1784" v2="1404" v3="1800" />+                <face v1="1800" v2="1803" v3="1334" />+                <face v1="1334" v2="1803" v3="1407" />+                <face v1="1407" v2="1420" v3="1372" />+                <face v1="1372" v2="1420" v3="1409" />+                <face v1="1391" v2="1789" v3="1784" />+                <face v1="1404" v2="1832" v3="1800" />+                <face v1="1803" v2="1431" v3="1407" />+                <face v1="1407" v2="1431" v3="1420" />+                <face v1="1420" v2="1812" v3="1409" />+                <face v1="1409" v2="1812" v3="1422" />+                <face v1="1409" v2="1422" v3="1374" />+                <face v1="1374" v2="1422" v3="1399" />+                <face v1="1400" v2="1425" v3="1401" />+                <face v1="1401" v2="1425" v3="1426" />+                <face v1="1401" v2="1426" v3="1366" />+                <face v1="1366" v2="1426" v3="1439" />+                <face v1="1366" v2="1439" v3="1391" />+                <face v1="1391" v2="1439" v3="1832" />+                <face v1="1391" v2="1832" v3="1793" />+                <face v1="1431" v2="1809" v3="1420" />+                <face v1="1420" v2="1809" v3="1812" />+                <face v1="1812" v2="1815" v3="1422" />+                <face v1="1422" v2="1815" v3="1399" />+                <face v1="1399" v2="1821" v3="1400" />+                <face v1="1400" v2="1821" v3="1425" />+                <face v1="1425" v2="1827" v3="1426" />+                <face v1="1426" v2="1827" v3="1439" />+                <face v1="1803" v2="1805" v3="1431" />+                <face v1="1431" v2="1806" v3="1807" />+                <face v1="1815" v2="1817" v3="1399" />+                <face v1="1399" v2="1818" v3="1819" />+                <face v1="1821" v2="1823" v3="1425" />+                <face v1="1425" v2="1824" v3="1825" />+                <face v1="1827" v2="1829" v3="1439" />+                <face v1="1439" v2="1830" v3="1831" />+            </lodfacelist>+        </lodgenerated>+        <lodgenerated value="2500">+            <lodfacelist submeshindex="0" numfaces="946">+                <face v1="1" v2="26" v3="2" />+                <face v1="2" v2="26" v3="27" />+                <face v1="2" v2="27" v3="3" />+                <face v1="3" v2="27" v3="4" />+                <face v1="1793" v2="24" v3="1" />+                <face v1="27" v2="28" v3="4" />+                <face v1="4" v2="28" v3="29" />+                <face v1="4" v2="29" v3="5" />+                <face v1="5" v2="29" v3="6" />+                <face v1="7" v2="32" v3="8" />+                <face v1="8" v2="32" v3="33" />+                <face v1="8" v2="33" v3="9" />+                <face v1="9" v2="33" v3="34" />+                <face v1="9" v2="34" v3="10" />+                <face v1="10" v2="34" v3="35" />+                <face v1="10" v2="35" v3="11" />+                <face v1="11" v2="35" v3="1443" />+                <face v1="11" v2="1444" v3="1793" />+                <face v1="24" v2="49" v3="1" />+                <face v1="1" v2="49" v3="38" />+                <face v1="1" v2="38" v3="26" />+                <face v1="26" v2="38" v3="27" />+                <face v1="29" v2="42" v3="6" />+                <face v1="6" v2="42" v3="43" />+                <face v1="6" v2="43" v3="7" />+                <face v1="7" v2="43" v3="32" />+                <face v1="32" v2="45" v3="33" />+                <face v1="33" v2="45" v3="46" />+                <face v1="33" v2="46" v3="34" />+                <face v1="34" v2="46" v3="35" />+                <face v1="49" v2="62" v3="38" />+                <face v1="38" v2="62" v3="51" />+                <face v1="38" v2="51" v3="27" />+                <face v1="27" v2="51" v3="52" />+                <face v1="27" v2="52" v3="28" />+                <face v1="28" v2="52" v3="53" />+                <face v1="28" v2="53" v3="29" />+                <face v1="29" v2="53" v3="42" />+                <face v1="43" v2="56" v3="32" />+                <face v1="32" v2="56" v3="57" />+                <face v1="32" v2="57" v3="45" />+                <face v1="45" v2="57" v3="58" />+                <face v1="45" v2="58" v3="46" />+                <face v1="46" v2="58" v3="59" />+                <face v1="46" v2="59" v3="35" />+                <face v1="35" v2="59" v3="1448" />+                <face v1="1448" v2="60" v3="73" />+                <face v1="1448" v2="73" v3="49" />+                <face v1="49" v2="73" v3="62" />+                <face v1="51" v2="64" v3="52" />+                <face v1="52" v2="64" v3="53" />+                <face v1="43" v2="68" v3="56" />+                <face v1="56" v2="68" v3="57" />+                <face v1="57" v2="70" v3="58" />+                <face v1="58" v2="70" v3="59" />+                <face v1="59" v2="1453" v3="1448" />+                <face v1="62" v2="75" v3="51" />+                <face v1="51" v2="75" v3="64" />+                <face v1="64" v2="77" v3="53" />+                <face v1="53" v2="77" v3="42" />+                <face v1="42" v2="79" v3="43" />+                <face v1="43" v2="79" v3="68" />+                <face v1="68" v2="81" v3="57" />+                <face v1="57" v2="81" v3="70" />+                <face v1="70" v2="83" v3="59" />+                <face v1="59" v2="83" v3="1457" />+                <face v1="73" v2="86" v3="62" />+                <face v1="62" v2="86" v3="75" />+                <face v1="75" v2="88" v3="64" />+                <face v1="64" v2="88" v3="77" />+                <face v1="77" v2="90" v3="42" />+                <face v1="42" v2="90" v3="103" />+                <face v1="42" v2="103" v3="79" />+                <face v1="79" v2="103" v3="92" />+                <face v1="79" v2="92" v3="68" />+                <face v1="68" v2="92" v3="93" />+                <face v1="68" v2="93" v3="81" />+                <face v1="81" v2="93" v3="94" />+                <face v1="81" v2="94" v3="70" />+                <face v1="70" v2="94" v3="83" />+                <face v1="1457" v2="97" v3="73" />+                <face v1="73" v2="97" v3="86" />+                <face v1="86" v2="99" v3="75" />+                <face v1="75" v2="99" v3="88" />+                <face v1="88" v2="101" v3="77" />+                <face v1="77" v2="101" v3="90" />+                <face v1="103" v2="116" v3="92" />+                <face v1="92" v2="116" v3="117" />+                <face v1="92" v2="117" v3="93" />+                <face v1="93" v2="117" v3="94" />+                <face v1="94" v2="107" v3="83" />+                <face v1="83" v2="107" v3="1457" />+                <face v1="1457" v2="108" v3="97" />+                <face v1="97" v2="110" v3="86" />+                <face v1="86" v2="110" v3="99" />+                <face v1="99" v2="112" v3="88" />+                <face v1="88" v2="112" v3="101" />+                <face v1="101" v2="138" v3="90" />+                <face v1="90" v2="138" v3="127" />+                <face v1="90" v2="127" v3="103" />+                <face v1="103" v2="127" v3="116" />+                <face v1="117" v2="118" v3="94" />+                <face v1="94" v2="118" v3="107" />+                <face v1="107" v2="1465" v3="1457" />+                <face v1="108" v2="121" v3="97" />+                <face v1="97" v2="121" v3="110" />+                <face v1="110" v2="123" v3="99" />+                <face v1="99" v2="123" v3="112" />+                <face v1="112" v2="125" v3="101" />+                <face v1="101" v2="125" v3="138" />+                <face v1="127" v2="140" v3="116" />+                <face v1="116" v2="140" v3="141" />+                <face v1="116" v2="141" v3="117" />+                <face v1="117" v2="141" v3="118" />+                <face v1="118" v2="131" v3="107" />+                <face v1="107" v2="131" v3="1469" />+                <face v1="121" v2="134" v3="110" />+                <face v1="110" v2="134" v3="123" />+                <face v1="123" v2="136" v3="112" />+                <face v1="112" v2="136" v3="125" />+                <face v1="141" v2="142" v3="118" />+                <face v1="118" v2="142" v3="1469" />+                <face v1="118" v2="1469" v3="131" />+                <face v1="1469" v2="145" v3="121" />+                <face v1="121" v2="145" v3="146" />+                <face v1="121" v2="146" v3="134" />+                <face v1="134" v2="146" v3="147" />+                <face v1="134" v2="147" v3="123" />+                <face v1="123" v2="147" v3="148" />+                <face v1="123" v2="148" v3="136" />+                <face v1="136" v2="148" v3="149" />+                <face v1="136" v2="149" v3="125" />+                <face v1="125" v2="149" v3="138" />+                <face v1="138" v2="151" v3="127" />+                <face v1="127" v2="151" v3="152" />+                <face v1="127" v2="152" v3="140" />+                <face v1="140" v2="152" v3="141" />+                <face v1="1469" v2="169" v3="145" />+                <face v1="145" v2="169" v3="170" />+                <face v1="145" v2="170" v3="146" />+                <face v1="146" v2="170" v3="147" />+                <face v1="149" v2="186" v3="138" />+                <face v1="151" v2="138" v3="164" />+                <face v1="151" v2="164" v3="152" />+                <face v1="152" v2="164" v3="165" />+                <face v1="152" v2="165" v3="141" />+                <face v1="141" v2="165" v3="166" />+                <face v1="141" v2="166" v3="142" />+                <face v1="142" v2="166" v3="167" />+                <face v1="142" v2="167" v3="1469" />+                <face v1="170" v2="171" v3="147" />+                <face v1="147" v2="171" v3="172" />+                <face v1="147" v2="172" v3="148" />+                <face v1="148" v2="172" v3="149" />+                <face v1="186" v2="175" v3="138" />+                <face v1="138" v2="175" v3="176" />+                <face v1="138" v2="176" v3="164" />+                <face v1="164" v2="176" v3="165" />+                <face v1="1469" v2="193" v3="169" />+                <face v1="169" v2="193" v3="194" />+                <face v1="169" v2="194" v3="170" />+                <face v1="170" v2="194" v3="171" />+                <face v1="172" v2="185" v3="149" />+                <face v1="149" v2="185" v3="186" />+                <face v1="175" v2="188" v3="176" />+                <face v1="176" v2="188" v3="189" />+                <face v1="176" v2="189" v3="165" />+                <face v1="165" v2="189" v3="190" />+                <face v1="165" v2="190" v3="166" />+                <face v1="166" v2="190" v3="191" />+                <face v1="166" v2="191" v3="167" />+                <face v1="167" v2="191" v3="1469" />+                <face v1="1469" v2="1489" v3="193" />+                <face v1="194" v2="195" v3="171" />+                <face v1="171" v2="195" v3="196" />+                <face v1="171" v2="196" v3="172" />+                <face v1="172" v2="196" v3="185" />+                <face v1="186" v2="199" v3="175" />+                <face v1="175" v2="199" v3="200" />+                <face v1="175" v2="200" v3="188" />+                <face v1="188" v2="200" v3="201" />+                <face v1="188" v2="201" v3="189" />+                <face v1="189" v2="201" v3="190" />+                <face v1="191" v2="1489" v3="1469" />+                <face v1="1489" v2="205" v3="193" />+                <face v1="193" v2="205" v3="194" />+                <face v1="194" v2="207" v3="195" />+                <face v1="195" v2="207" v3="196" />+                <face v1="186" v2="211" v3="199" />+                <face v1="199" v2="211" v3="212" />+                <face v1="199" v2="212" v3="200" />+                <face v1="200" v2="212" v3="201" />+                <face v1="201" v2="214" v3="190" />+                <face v1="190" v2="214" v3="215" />+                <face v1="190" v2="215" v3="191" />+                <face v1="191" v2="215" v3="1488" />+                <face v1="205" v2="218" v3="194" />+                <face v1="194" v2="218" v3="207" />+                <face v1="207" v2="220" v3="196" />+                <face v1="196" v2="220" v3="185" />+                <face v1="185" v2="222" v3="186" />+                <face v1="186" v2="222" v3="223" />+                <face v1="186" v2="223" v3="211" />+                <face v1="211" v2="223" v3="212" />+                <face v1="212" v2="225" v3="201" />+                <face v1="201" v2="225" v3="214" />+                <face v1="1493" v2="1498" v3="229" />+                <face v1="1493" v2="229" v3="205" />+                <face v1="205" v2="229" v3="218" />+                <face v1="218" v2="231" v3="207" />+                <face v1="207" v2="231" v3="220" />+                <face v1="220" v2="233" v3="185" />+                <face v1="185" v2="233" v3="246" />+                <face v1="185" v2="246" v3="222" />+                <face v1="222" v2="246" v3="223" />+                <face v1="223" v2="236" v3="212" />+                <face v1="212" v2="236" v3="225" />+                <face v1="225" v2="238" v3="214" />+                <face v1="214" v2="238" v3="215" />+                <face v1="215" v2="1498" v3="1493" />+                <face v1="229" v2="242" v3="218" />+                <face v1="218" v2="242" v3="231" />+                <face v1="231" v2="244" v3="220" />+                <face v1="220" v2="244" v3="233" />+                <face v1="236" v2="249" v3="225" />+                <face v1="225" v2="249" v3="262" />+                <face v1="225" v2="262" v3="238" />+                <face v1="238" v2="262" v3="323" />+                <face v1="238" v2="323" v3="215" />+                <face v1="215" v2="323" v3="1497" />+                <face v1="240" v2="253" v3="229" />+                <face v1="229" v2="253" v3="242" />+                <face v1="246" v2="259" v3="223" />+                <face v1="223" v2="259" v3="236" />+                <face v1="236" v2="273" v3="249" />+                <face v1="249" v2="273" v3="262" />+                <face v1="1502" v2="264" v3="253" />+                <face v1="253" v2="266" v3="242" />+                <face v1="242" v2="266" v3="231" />+                <face v1="233" v2="270" v3="246" />+                <face v1="246" v2="270" v3="283" />+                <face v1="246" v2="283" v3="259" />+                <face v1="259" v2="283" v3="272" />+                <face v1="259" v2="272" v3="236" />+                <face v1="236" v2="272" v3="273" />+                <face v1="273" v2="274" v3="262" />+                <face v1="262" v2="274" v3="323" />+                <face v1="323" v2="1504" v3="1502" />+                <face v1="266" v2="279" v3="231" />+                <face v1="231" v2="279" v3="244" />+                <face v1="270" v2="233" v3="283" />+                <face v1="283" v2="296" v3="272" />+                <face v1="272" v2="296" v3="273" />+                <face v1="253" v2="290" v3="266" />+                <face v1="266" v2="290" v3="279" />+                <face v1="233" v2="462" v3="283" />+                <face v1="1508" v2="301" v3="253" />+                <face v1="253" v2="301" v3="290" />+                <face v1="244" v2="377" v3="233" />+                <face v1="233" v2="377" v3="462" />+                <face v1="296" v2="321" v3="273" />+                <face v1="273" v2="321" v3="274" />+                <face v1="283" v2="452" v3="296" />+                <face v1="296" v2="452" v3="321" />+                <face v1="290" v2="399" v3="279" />+                <face v1="279" v2="399" v3="244" />+                <face v1="301" v2="399" v3="290" />+                <face v1="399" v2="412" v3="244" />+                <face v1="244" v2="412" v3="377" />+                <face v1="321" v2="406" v3="274" />+                <face v1="274" v2="406" v3="323" />+                <face v1="452" v2="417" v3="321" />+                <face v1="321" v2="417" v3="406" />+                <face v1="399" v2="436" v3="412" />+                <face v1="412" v2="436" v3="377" />+                <face v1="406" v2="431" v3="323" />+                <face v1="323" v2="431" v3="1508" />+                <face v1="1508" v2="1549" v3="301" />+                <face v1="462" v2="439" v3="283" />+                <face v1="283" v2="439" v3="452" />+                <face v1="431" v2="1549" v3="1508" />+                <face v1="399" v2="460" v3="436" />+                <face v1="436" v2="460" v3="377" />+                <face v1="406" v2="479" v3="431" />+                <face v1="431" v2="479" v3="1548" />+                <face v1="444" v2="493" v3="301" />+                <face v1="301" v2="493" v3="399" />+                <face v1="399" v2="471" v3="460" />+                <face v1="460" v2="473" v3="377" />+                <face v1="377" v2="473" v3="462" />+                <face v1="452" v2="465" v3="417" />+                <face v1="417" v2="465" v3="466" />+                <face v1="417" v2="466" v3="406" />+                <face v1="406" v2="466" v3="479" />+                <face v1="493" v2="482" v3="399" />+                <face v1="399" v2="482" v3="471" />+                <face v1="471" v2="484" v3="460" />+                <face v1="460" v2="484" v3="473" />+                <face v1="1553" v2="480" v3="493" />+                <face v1="482" v2="495" v3="471" />+                <face v1="471" v2="495" v3="484" />+                <face v1="473" v2="486" v3="462" />+                <face v1="462" v2="486" v3="439" />+                <face v1="439" v2="488" v3="452" />+                <face v1="452" v2="488" v3="489" />+                <face v1="452" v2="489" v3="465" />+                <face v1="465" v2="489" v3="490" />+                <face v1="465" v2="490" v3="466" />+                <face v1="466" v2="490" v3="479" />+                <face v1="479" v2="1558" v3="1553" />+                <face v1="493" v2="506" v3="482" />+                <face v1="482" v2="506" v3="495" />+                <face v1="495" v2="508" v3="484" />+                <face v1="484" v2="508" v3="497" />+                <face v1="484" v2="497" v3="473" />+                <face v1="473" v2="497" v3="486" />+                <face v1="439" v2="500" v3="488" />+                <face v1="488" v2="500" v3="489" />+                <face v1="490" v2="503" v3="479" />+                <face v1="479" v2="503" v3="1562" />+                <face v1="1562" v2="504" v3="493" />+                <face v1="506" v2="519" v3="495" />+                <face v1="495" v2="519" v3="508" />+                <face v1="500" v2="513" v3="489" />+                <face v1="489" v2="513" v3="514" />+                <face v1="489" v2="514" v3="490" />+                <face v1="490" v2="514" v3="503" />+                <face v1="503" v2="1564" v3="1562" />+                <face v1="493" v2="530" v3="506" />+                <face v1="506" v2="530" v3="519" />+                <face v1="508" v2="521" v3="497" />+                <face v1="497" v2="521" v3="522" />+                <face v1="497" v2="522" v3="486" />+                <face v1="486" v2="522" v3="523" />+                <face v1="486" v2="523" v3="439" />+                <face v1="439" v2="523" v3="524" />+                <face v1="439" v2="524" v3="500" />+                <face v1="500" v2="524" v3="513" />+                <face v1="513" v2="526" v3="514" />+                <face v1="514" v2="526" v3="527" />+                <face v1="514" v2="527" v3="503" />+                <face v1="503" v2="527" v3="1568" />+                <face v1="1568" v2="541" v3="493" />+                <face v1="493" v2="541" v3="530" />+                <face v1="530" v2="531" v3="519" />+                <face v1="519" v2="531" v3="532" />+                <face v1="519" v2="532" v3="508" />+                <face v1="508" v2="532" v3="533" />+                <face v1="508" v2="533" v3="521" />+                <face v1="521" v2="533" v3="522" />+                <face v1="524" v2="537" v3="513" />+                <face v1="513" v2="537" v3="538" />+                <face v1="513" v2="538" v3="526" />+                <face v1="526" v2="538" v3="539" />+                <face v1="526" v2="539" v3="527" />+                <face v1="527" v2="539" v3="1568" />+                <face v1="1568" v2="540" v3="541" />+                <face v1="541" v2="542" v3="530" />+                <face v1="530" v2="542" v3="531" />+                <face v1="531" v2="544" v3="532" />+                <face v1="532" v2="544" v3="533" />+                <face v1="523" v2="548" v3="524" />+                <face v1="524" v2="548" v3="549" />+                <face v1="524" v2="549" v3="537" />+                <face v1="537" v2="549" v3="550" />+                <face v1="537" v2="550" v3="538" />+                <face v1="538" v2="550" v3="539" />+                <face v1="539" v2="1573" v3="1568" />+                <face v1="542" v2="555" v3="531" />+                <face v1="531" v2="555" v3="544" />+                <face v1="544" v2="557" v3="533" />+                <face v1="533" v2="557" v3="522" />+                <face v1="522" v2="559" v3="523" />+                <face v1="523" v2="559" v3="548" />+                <face v1="548" v2="561" v3="549" />+                <face v1="549" v2="561" v3="550" />+                <face v1="550" v2="563" v3="539" />+                <face v1="539" v2="563" v3="1577" />+                <face v1="541" v2="566" v3="542" />+                <face v1="542" v2="566" v3="555" />+                <face v1="555" v2="568" v3="544" />+                <face v1="544" v2="568" v3="557" />+                <face v1="557" v2="570" v3="522" />+                <face v1="522" v2="570" v3="583" />+                <face v1="522" v2="583" v3="559" />+                <face v1="559" v2="583" v3="572" />+                <face v1="559" v2="572" v3="548" />+                <face v1="548" v2="572" v3="573" />+                <face v1="548" v2="573" v3="561" />+                <face v1="561" v2="573" v3="574" />+                <face v1="561" v2="574" v3="550" />+                <face v1="550" v2="574" v3="563" />+                <face v1="1577" v2="577" v3="541" />+                <face v1="541" v2="577" v3="566" />+                <face v1="566" v2="579" v3="555" />+                <face v1="555" v2="579" v3="568" />+                <face v1="568" v2="581" v3="557" />+                <face v1="557" v2="581" v3="570" />+                <face v1="583" v2="596" v3="572" />+                <face v1="572" v2="596" v3="597" />+                <face v1="572" v2="597" v3="573" />+                <face v1="573" v2="597" v3="574" />+                <face v1="574" v2="587" v3="563" />+                <face v1="563" v2="587" v3="1577" />+                <face v1="1577" v2="588" v3="577" />+                <face v1="577" v2="590" v3="566" />+                <face v1="566" v2="590" v3="579" />+                <face v1="579" v2="592" v3="568" />+                <face v1="568" v2="592" v3="581" />+                <face v1="581" v2="618" v3="570" />+                <face v1="570" v2="618" v3="607" />+                <face v1="570" v2="607" v3="583" />+                <face v1="583" v2="607" v3="596" />+                <face v1="597" v2="598" v3="574" />+                <face v1="574" v2="598" v3="587" />+                <face v1="587" v2="1585" v3="1577" />+                <face v1="588" v2="625" v3="577" />+                <face v1="577" v2="625" v3="590" />+                <face v1="590" v2="603" v3="579" />+                <face v1="579" v2="603" v3="592" />+                <face v1="592" v2="605" v3="581" />+                <face v1="581" v2="605" v3="618" />+                <face v1="607" v2="620" v3="596" />+                <face v1="596" v2="620" v3="621" />+                <face v1="596" v2="621" v3="597" />+                <face v1="597" v2="621" v3="598" />+                <face v1="598" v2="611" v3="587" />+                <face v1="587" v2="611" v3="1589" />+                <face v1="625" v2="614" v3="590" />+                <face v1="590" v2="614" v3="603" />+                <face v1="603" v2="616" v3="592" />+                <face v1="592" v2="616" v3="605" />+                <face v1="621" v2="622" v3="598" />+                <face v1="598" v2="622" v3="1589" />+                <face v1="598" v2="1589" v3="611" />+                <face v1="625" v2="626" v3="614" />+                <face v1="614" v2="626" v3="627" />+                <face v1="614" v2="627" v3="603" />+                <face v1="603" v2="627" v3="628" />+                <face v1="603" v2="628" v3="616" />+                <face v1="616" v2="628" v3="629" />+                <face v1="616" v2="629" v3="605" />+                <face v1="605" v2="629" v3="618" />+                <face v1="618" v2="631" v3="607" />+                <face v1="607" v2="631" v3="632" />+                <face v1="607" v2="632" v3="620" />+                <face v1="620" v2="632" v3="621" />+                <face v1="1589" v2="649" v3="625" />+                <face v1="625" v2="649" v3="650" />+                <face v1="625" v2="650" v3="626" />+                <face v1="626" v2="650" v3="627" />+                <face v1="629" v2="666" v3="618" />+                <face v1="631" v2="618" v3="644" />+                <face v1="631" v2="644" v3="632" />+                <face v1="632" v2="644" v3="645" />+                <face v1="632" v2="645" v3="621" />+                <face v1="621" v2="645" v3="646" />+                <face v1="621" v2="646" v3="622" />+                <face v1="622" v2="646" v3="647" />+                <face v1="622" v2="647" v3="1589" />+                <face v1="650" v2="651" v3="627" />+                <face v1="627" v2="651" v3="652" />+                <face v1="627" v2="652" v3="628" />+                <face v1="628" v2="652" v3="629" />+                <face v1="666" v2="655" v3="618" />+                <face v1="618" v2="655" v3="656" />+                <face v1="618" v2="656" v3="644" />+                <face v1="644" v2="656" v3="645" />+                <face v1="1589" v2="673" v3="649" />+                <face v1="649" v2="673" v3="674" />+                <face v1="649" v2="674" v3="650" />+                <face v1="650" v2="674" v3="651" />+                <face v1="652" v2="665" v3="629" />+                <face v1="629" v2="665" v3="666" />+                <face v1="655" v2="668" v3="656" />+                <face v1="656" v2="668" v3="669" />+                <face v1="656" v2="669" v3="645" />+                <face v1="645" v2="669" v3="670" />+                <face v1="645" v2="670" v3="646" />+                <face v1="646" v2="670" v3="671" />+                <face v1="646" v2="671" v3="647" />+                <face v1="647" v2="671" v3="1589" />+                <face v1="1589" v2="1609" v3="673" />+                <face v1="674" v2="675" v3="651" />+                <face v1="651" v2="675" v3="676" />+                <face v1="651" v2="676" v3="652" />+                <face v1="652" v2="676" v3="665" />+                <face v1="666" v2="679" v3="655" />+                <face v1="655" v2="679" v3="680" />+                <face v1="655" v2="680" v3="668" />+                <face v1="668" v2="680" v3="681" />+                <face v1="668" v2="681" v3="669" />+                <face v1="669" v2="681" v3="670" />+                <face v1="671" v2="1609" v3="1589" />+                <face v1="1609" v2="685" v3="673" />+                <face v1="673" v2="685" v3="674" />+                <face v1="674" v2="687" v3="675" />+                <face v1="675" v2="687" v3="676" />+                <face v1="666" v2="691" v3="679" />+                <face v1="679" v2="691" v3="692" />+                <face v1="679" v2="692" v3="680" />+                <face v1="680" v2="692" v3="681" />+                <face v1="681" v2="694" v3="670" />+                <face v1="670" v2="694" v3="695" />+                <face v1="670" v2="695" v3="671" />+                <face v1="671" v2="695" v3="1608" />+                <face v1="685" v2="698" v3="674" />+                <face v1="674" v2="698" v3="687" />+                <face v1="687" v2="700" v3="676" />+                <face v1="676" v2="700" v3="665" />+                <face v1="665" v2="702" v3="666" />+                <face v1="666" v2="702" v3="703" />+                <face v1="666" v2="703" v3="691" />+                <face v1="691" v2="703" v3="692" />+                <face v1="692" v2="705" v3="681" />+                <face v1="681" v2="705" v3="694" />+                <face v1="1613" v2="1618" v3="709" />+                <face v1="1613" v2="709" v3="685" />+                <face v1="685" v2="709" v3="698" />+                <face v1="698" v2="711" v3="687" />+                <face v1="687" v2="711" v3="700" />+                <face v1="700" v2="713" v3="665" />+                <face v1="665" v2="713" v3="726" />+                <face v1="665" v2="726" v3="702" />+                <face v1="702" v2="726" v3="703" />+                <face v1="703" v2="716" v3="692" />+                <face v1="692" v2="716" v3="705" />+                <face v1="705" v2="718" v3="694" />+                <face v1="694" v2="718" v3="695" />+                <face v1="695" v2="1618" v3="1613" />+                <face v1="709" v2="722" v3="698" />+                <face v1="698" v2="722" v3="711" />+                <face v1="711" v2="724" v3="700" />+                <face v1="700" v2="724" v3="713" />+                <face v1="716" v2="729" v3="705" />+                <face v1="705" v2="729" v3="742" />+                <face v1="705" v2="742" v3="718" />+                <face v1="718" v2="742" v3="803" />+                <face v1="718" v2="803" v3="695" />+                <face v1="695" v2="803" v3="1617" />+                <face v1="720" v2="733" v3="709" />+                <face v1="709" v2="733" v3="722" />+                <face v1="726" v2="739" v3="703" />+                <face v1="703" v2="739" v3="716" />+                <face v1="716" v2="753" v3="729" />+                <face v1="729" v2="753" v3="742" />+                <face v1="1622" v2="744" v3="733" />+                <face v1="733" v2="746" v3="722" />+                <face v1="722" v2="746" v3="711" />+                <face v1="713" v2="750" v3="726" />+                <face v1="726" v2="750" v3="763" />+                <face v1="726" v2="763" v3="739" />+                <face v1="739" v2="763" v3="752" />+                <face v1="739" v2="752" v3="716" />+                <face v1="716" v2="752" v3="753" />+                <face v1="753" v2="754" v3="742" />+                <face v1="742" v2="754" v3="803" />+                <face v1="803" v2="1624" v3="1622" />+                <face v1="746" v2="759" v3="711" />+                <face v1="711" v2="759" v3="724" />+                <face v1="750" v2="713" v3="763" />+                <face v1="763" v2="776" v3="752" />+                <face v1="752" v2="776" v3="753" />+                <face v1="733" v2="770" v3="746" />+                <face v1="746" v2="770" v3="759" />+                <face v1="713" v2="942" v3="763" />+                <face v1="1628" v2="781" v3="733" />+                <face v1="733" v2="781" v3="770" />+                <face v1="724" v2="857" v3="713" />+                <face v1="713" v2="857" v3="942" />+                <face v1="776" v2="801" v3="753" />+                <face v1="753" v2="801" v3="754" />+                <face v1="763" v2="932" v3="776" />+                <face v1="776" v2="932" v3="801" />+                <face v1="770" v2="879" v3="759" />+                <face v1="759" v2="879" v3="724" />+                <face v1="781" v2="879" v3="770" />+                <face v1="879" v2="892" v3="724" />+                <face v1="724" v2="892" v3="857" />+                <face v1="801" v2="886" v3="754" />+                <face v1="754" v2="886" v3="803" />+                <face v1="932" v2="897" v3="801" />+                <face v1="801" v2="897" v3="886" />+                <face v1="879" v2="916" v3="892" />+                <face v1="892" v2="916" v3="857" />+                <face v1="886" v2="911" v3="803" />+                <face v1="803" v2="911" v3="1628" />+                <face v1="1628" v2="1669" v3="781" />+                <face v1="942" v2="919" v3="763" />+                <face v1="763" v2="919" v3="932" />+                <face v1="911" v2="1669" v3="1628" />+                <face v1="879" v2="940" v3="916" />+                <face v1="916" v2="940" v3="857" />+                <face v1="886" v2="959" v3="911" />+                <face v1="911" v2="959" v3="1668" />+                <face v1="924" v2="973" v3="781" />+                <face v1="781" v2="973" v3="879" />+                <face v1="879" v2="951" v3="940" />+                <face v1="940" v2="953" v3="857" />+                <face v1="857" v2="953" v3="942" />+                <face v1="932" v2="945" v3="897" />+                <face v1="897" v2="945" v3="946" />+                <face v1="897" v2="946" v3="886" />+                <face v1="886" v2="946" v3="959" />+                <face v1="973" v2="962" v3="879" />+                <face v1="879" v2="962" v3="951" />+                <face v1="951" v2="964" v3="940" />+                <face v1="940" v2="964" v3="953" />+                <face v1="1673" v2="960" v3="973" />+                <face v1="962" v2="975" v3="951" />+                <face v1="951" v2="975" v3="964" />+                <face v1="953" v2="966" v3="942" />+                <face v1="942" v2="966" v3="919" />+                <face v1="919" v2="968" v3="932" />+                <face v1="932" v2="968" v3="969" />+                <face v1="932" v2="969" v3="945" />+                <face v1="945" v2="969" v3="970" />+                <face v1="945" v2="970" v3="946" />+                <face v1="946" v2="970" v3="959" />+                <face v1="959" v2="1678" v3="1673" />+                <face v1="973" v2="986" v3="962" />+                <face v1="962" v2="986" v3="975" />+                <face v1="975" v2="988" v3="964" />+                <face v1="964" v2="988" v3="977" />+                <face v1="964" v2="977" v3="953" />+                <face v1="953" v2="977" v3="966" />+                <face v1="919" v2="980" v3="968" />+                <face v1="968" v2="980" v3="969" />+                <face v1="970" v2="983" v3="959" />+                <face v1="959" v2="983" v3="1682" />+                <face v1="1682" v2="984" v3="973" />+                <face v1="986" v2="999" v3="975" />+                <face v1="975" v2="999" v3="988" />+                <face v1="980" v2="993" v3="969" />+                <face v1="969" v2="993" v3="994" />+                <face v1="969" v2="994" v3="970" />+                <face v1="970" v2="994" v3="983" />+                <face v1="983" v2="1684" v3="1682" />+                <face v1="973" v2="1010" v3="986" />+                <face v1="986" v2="1010" v3="999" />+                <face v1="988" v2="1001" v3="977" />+                <face v1="977" v2="1001" v3="1002" />+                <face v1="977" v2="1002" v3="966" />+                <face v1="966" v2="1002" v3="1003" />+                <face v1="966" v2="1003" v3="919" />+                <face v1="919" v2="1003" v3="1004" />+                <face v1="919" v2="1004" v3="980" />+                <face v1="980" v2="1004" v3="993" />+                <face v1="993" v2="1006" v3="994" />+                <face v1="994" v2="1006" v3="1007" />+                <face v1="994" v2="1007" v3="983" />+                <face v1="983" v2="1007" v3="1688" />+                <face v1="1688" v2="1021" v3="973" />+                <face v1="973" v2="1021" v3="1010" />+                <face v1="1010" v2="1011" v3="999" />+                <face v1="999" v2="1011" v3="1012" />+                <face v1="999" v2="1012" v3="988" />+                <face v1="988" v2="1012" v3="1013" />+                <face v1="988" v2="1013" v3="1001" />+                <face v1="1001" v2="1013" v3="1002" />+                <face v1="1004" v2="1017" v3="993" />+                <face v1="993" v2="1017" v3="1018" />+                <face v1="993" v2="1018" v3="1006" />+                <face v1="1006" v2="1018" v3="1019" />+                <face v1="1006" v2="1019" v3="1007" />+                <face v1="1007" v2="1019" v3="1688" />+                <face v1="1688" v2="1020" v3="1021" />+                <face v1="1021" v2="1022" v3="1010" />+                <face v1="1010" v2="1022" v3="1011" />+                <face v1="1011" v2="1024" v3="1012" />+                <face v1="1012" v2="1024" v3="1013" />+                <face v1="1003" v2="1028" v3="1004" />+                <face v1="1004" v2="1028" v3="1029" />+                <face v1="1004" v2="1029" v3="1017" />+                <face v1="1017" v2="1029" v3="1030" />+                <face v1="1017" v2="1030" v3="1018" />+                <face v1="1018" v2="1030" v3="1019" />+                <face v1="1019" v2="1693" v3="1688" />+                <face v1="1022" v2="1035" v3="1011" />+                <face v1="1011" v2="1035" v3="1024" />+                <face v1="1024" v2="1037" v3="1013" />+                <face v1="1013" v2="1037" v3="1002" />+                <face v1="1002" v2="1039" v3="1003" />+                <face v1="1003" v2="1039" v3="1028" />+                <face v1="1028" v2="1041" v3="1029" />+                <face v1="1029" v2="1041" v3="1030" />+                <face v1="1030" v2="1043" v3="1019" />+                <face v1="1019" v2="1043" v3="1697" />+                <face v1="1021" v2="1046" v3="1022" />+                <face v1="1022" v2="1046" v3="1035" />+                <face v1="1035" v2="1048" v3="1024" />+                <face v1="1024" v2="1048" v3="1037" />+                <face v1="1037" v2="1050" v3="1002" />+                <face v1="1002" v2="1050" v3="1063" />+                <face v1="1002" v2="1063" v3="1039" />+                <face v1="1039" v2="1063" v3="1052" />+                <face v1="1039" v2="1052" v3="1028" />+                <face v1="1028" v2="1052" v3="1053" />+                <face v1="1028" v2="1053" v3="1041" />+                <face v1="1041" v2="1053" v3="1054" />+                <face v1="1041" v2="1054" v3="1030" />+                <face v1="1030" v2="1054" v3="1043" />+                <face v1="1697" v2="1057" v3="1021" />+                <face v1="1021" v2="1057" v3="1046" />+                <face v1="1046" v2="1059" v3="1035" />+                <face v1="1035" v2="1059" v3="1048" />+                <face v1="1048" v2="1061" v3="1037" />+                <face v1="1037" v2="1061" v3="1050" />+                <face v1="1063" v2="1076" v3="1052" />+                <face v1="1052" v2="1076" v3="1077" />+                <face v1="1052" v2="1077" v3="1053" />+                <face v1="1053" v2="1077" v3="1054" />+                <face v1="1054" v2="1067" v3="1043" />+                <face v1="1043" v2="1067" v3="1697" />+                <face v1="1697" v2="1068" v3="1057" />+                <face v1="1057" v2="1070" v3="1046" />+                <face v1="1046" v2="1070" v3="1059" />+                <face v1="1059" v2="1072" v3="1048" />+                <face v1="1048" v2="1072" v3="1061" />+                <face v1="1061" v2="1098" v3="1050" />+                <face v1="1050" v2="1098" v3="1087" />+                <face v1="1050" v2="1087" v3="1063" />+                <face v1="1063" v2="1087" v3="1076" />+                <face v1="1077" v2="1078" v3="1054" />+                <face v1="1054" v2="1078" v3="1067" />+                <face v1="1067" v2="1705" v3="1697" />+                <face v1="1068" v2="1081" v3="1057" />+                <face v1="1057" v2="1081" v3="1070" />+                <face v1="1070" v2="1083" v3="1059" />+                <face v1="1059" v2="1083" v3="1072" />+                <face v1="1072" v2="1085" v3="1061" />+                <face v1="1061" v2="1085" v3="1098" />+                <face v1="1087" v2="1100" v3="1076" />+                <face v1="1076" v2="1100" v3="1101" />+                <face v1="1076" v2="1101" v3="1077" />+                <face v1="1077" v2="1101" v3="1078" />+                <face v1="1078" v2="1091" v3="1067" />+                <face v1="1067" v2="1091" v3="1709" />+                <face v1="1081" v2="1094" v3="1070" />+                <face v1="1070" v2="1094" v3="1083" />+                <face v1="1083" v2="1096" v3="1072" />+                <face v1="1072" v2="1096" v3="1085" />+                <face v1="1101" v2="1102" v3="1078" />+                <face v1="1078" v2="1102" v3="1709" />+                <face v1="1078" v2="1709" v3="1091" />+                <face v1="1709" v2="1105" v3="1081" />+                <face v1="1081" v2="1105" v3="1106" />+                <face v1="1081" v2="1106" v3="1094" />+                <face v1="1094" v2="1106" v3="1107" />+                <face v1="1094" v2="1107" v3="1083" />+                <face v1="1083" v2="1107" v3="1108" />+                <face v1="1083" v2="1108" v3="1096" />+                <face v1="1096" v2="1108" v3="1109" />+                <face v1="1096" v2="1109" v3="1085" />+                <face v1="1085" v2="1109" v3="1098" />+                <face v1="1098" v2="1111" v3="1087" />+                <face v1="1087" v2="1111" v3="1112" />+                <face v1="1087" v2="1112" v3="1100" />+                <face v1="1100" v2="1112" v3="1101" />+                <face v1="1709" v2="1129" v3="1105" />+                <face v1="1105" v2="1129" v3="1130" />+                <face v1="1105" v2="1130" v3="1106" />+                <face v1="1106" v2="1130" v3="1107" />+                <face v1="1109" v2="1146" v3="1098" />+                <face v1="1111" v2="1098" v3="1124" />+                <face v1="1111" v2="1124" v3="1112" />+                <face v1="1112" v2="1124" v3="1125" />+                <face v1="1112" v2="1125" v3="1101" />+                <face v1="1101" v2="1125" v3="1126" />+                <face v1="1101" v2="1126" v3="1102" />+                <face v1="1102" v2="1126" v3="1127" />+                <face v1="1102" v2="1127" v3="1709" />+                <face v1="1130" v2="1131" v3="1107" />+                <face v1="1107" v2="1131" v3="1132" />+                <face v1="1107" v2="1132" v3="1108" />+                <face v1="1108" v2="1132" v3="1109" />+                <face v1="1146" v2="1135" v3="1098" />+                <face v1="1098" v2="1135" v3="1136" />+                <face v1="1098" v2="1136" v3="1124" />+                <face v1="1124" v2="1136" v3="1125" />+                <face v1="1709" v2="1153" v3="1129" />+                <face v1="1129" v2="1153" v3="1154" />+                <face v1="1129" v2="1154" v3="1130" />+                <face v1="1130" v2="1154" v3="1131" />+                <face v1="1132" v2="1145" v3="1109" />+                <face v1="1109" v2="1145" v3="1146" />+                <face v1="1135" v2="1148" v3="1136" />+                <face v1="1136" v2="1148" v3="1149" />+                <face v1="1136" v2="1149" v3="1125" />+                <face v1="1125" v2="1149" v3="1150" />+                <face v1="1125" v2="1150" v3="1126" />+                <face v1="1126" v2="1150" v3="1151" />+                <face v1="1126" v2="1151" v3="1127" />+                <face v1="1127" v2="1151" v3="1709" />+                <face v1="1709" v2="1729" v3="1153" />+                <face v1="1154" v2="1155" v3="1131" />+                <face v1="1131" v2="1155" v3="1156" />+                <face v1="1131" v2="1156" v3="1132" />+                <face v1="1132" v2="1156" v3="1145" />+                <face v1="1146" v2="1159" v3="1135" />+                <face v1="1135" v2="1159" v3="1160" />+                <face v1="1135" v2="1160" v3="1148" />+                <face v1="1148" v2="1160" v3="1149" />+                <face v1="1151" v2="1729" v3="1709" />+                <face v1="1729" v2="1165" v3="1153" />+                <face v1="1153" v2="1165" v3="1154" />+                <face v1="1154" v2="1167" v3="1155" />+                <face v1="1155" v2="1167" v3="1168" />+                <face v1="1155" v2="1168" v3="1156" />+                <face v1="1156" v2="1168" v3="1169" />+                <face v1="1156" v2="1169" v3="1145" />+                <face v1="1145" v2="1169" v3="1146" />+                <face v1="1146" v2="1171" v3="1159" />+                <face v1="1159" v2="1171" v3="1160" />+                <face v1="1160" v2="1173" v3="1149" />+                <face v1="1149" v2="1173" v3="1174" />+                <face v1="1149" v2="1174" v3="1150" />+                <face v1="1150" v2="1174" v3="1151" />+                <face v1="1164" v2="1735" v3="1165" />+                <face v1="1165" v2="1178" v3="1154" />+                <face v1="1154" v2="1178" v3="1167" />+                <face v1="1169" v2="1182" v3="1146" />+                <face v1="1146" v2="1182" v3="1171" />+                <face v1="1171" v2="1184" v3="1160" />+                <face v1="1160" v2="1184" v3="1173" />+                <face v1="1151" v2="1735" v3="1733" />+                <face v1="1735" v2="1189" v3="1165" />+                <face v1="1165" v2="1189" v3="1178" />+                <face v1="1178" v2="1191" v3="1167" />+                <face v1="1167" v2="1191" v3="1192" />+                <face v1="1167" v2="1192" v3="1168" />+                <face v1="1168" v2="1192" v3="1193" />+                <face v1="1168" v2="1193" v3="1169" />+                <face v1="1169" v2="1193" v3="1206" />+                <face v1="1169" v2="1206" v3="1182" />+                <face v1="1182" v2="1206" v3="1195" />+                <face v1="1182" v2="1195" v3="1171" />+                <face v1="1171" v2="1195" v3="1184" />+                <face v1="1184" v2="1197" v3="1173" />+                <face v1="1173" v2="1197" v3="1198" />+                <face v1="1173" v2="1198" v3="1174" />+                <face v1="1174" v2="1198" v3="1199" />+                <face v1="1174" v2="1199" v3="1151" />+                <face v1="1151" v2="1199" v3="1734" />+                <face v1="1189" v2="1202" v3="1178" />+                <face v1="1178" v2="1202" v3="1191" />+                <face v1="1195" v2="1208" v3="1184" />+                <face v1="1184" v2="1208" v3="1197" />+                <face v1="1197" v2="1222" v3="1198" />+                <face v1="1198" v2="1222" v3="1283" />+                <face v1="1198" v2="1283" v3="1199" />+                <face v1="1199" v2="1283" v3="1739" />+                <face v1="1739" v2="1213" v3="1189" />+                <face v1="1189" v2="1213" v3="1202" />+                <face v1="1202" v2="1215" v3="1191" />+                <face v1="1191" v2="1215" v3="1192" />+                <face v1="1208" v2="1221" v3="1197" />+                <face v1="1197" v2="1221" v3="1222" />+                <face v1="1739" v2="1747" v3="1213" />+                <face v1="1213" v2="1226" v3="1202" />+                <face v1="1202" v2="1226" v3="1215" />+                <face v1="1193" v2="1230" v3="1206" />+                <face v1="1206" v2="1230" v3="1231" />+                <face v1="1206" v2="1231" v3="1195" />+                <face v1="1195" v2="1231" v3="1244" />+                <face v1="1195" v2="1244" v3="1208" />+                <face v1="1208" v2="1244" v3="1245" />+                <face v1="1208" v2="1245" v3="1221" />+                <face v1="1221" v2="1245" v3="1234" />+                <face v1="1221" v2="1234" v3="1222" />+                <face v1="1222" v2="1234" v3="1283" />+                <face v1="1283" v2="1747" v3="1739" />+                <face v1="1747" v2="1237" v3="1213" />+                <face v1="1213" v2="1237" v3="1226" />+                <face v1="1215" v2="1240" v3="1192" />+                <face v1="1192" v2="1240" v3="1193" />+                <face v1="1193" v2="1266" v3="1230" />+                <face v1="1230" v2="1266" v3="1231" />+                <face v1="1237" v2="1262" v3="1226" />+                <face v1="1226" v2="1262" v3="1215" />+                <face v1="1240" v2="1385" v3="1193" />+                <face v1="1193" v2="1385" v3="1266" />+                <face v1="1245" v2="1294" v3="1234" />+                <face v1="1234" v2="1294" v3="1283" />+                <face v1="1262" v2="1263" v3="1215" />+                <face v1="1215" v2="1263" v3="1240" />+                <face v1="1751" v2="1800" v3="1237" />+                <face v1="1237" v2="1800" v3="1262" />+                <face v1="1231" v2="1316" v3="1244" />+                <face v1="1244" v2="1316" v3="1245" />+                <face v1="1751" v2="1780" v3="1800" />+                <face v1="1266" v2="1291" v3="1231" />+                <face v1="1231" v2="1291" v3="1316" />+                <face v1="1283" v2="1780" v3="1751" />+                <face v1="1316" v2="1377" v3="1245" />+                <face v1="1245" v2="1377" v3="1294" />+                <face v1="1262" v2="1383" v3="1263" />+                <face v1="1263" v2="1383" v3="1240" />+                <face v1="1800" v2="1334" v3="1262" />+                <face v1="1262" v2="1334" v3="1383" />+                <face v1="1383" v2="1348" v3="1240" />+                <face v1="1240" v2="1348" v3="1385" />+                <face v1="1383" v2="1372" v3="1348" />+                <face v1="1348" v2="1372" v3="1385" />+                <face v1="1377" v2="1366" v3="1294" />+                <face v1="1294" v2="1366" v3="1283" />+                <face v1="1385" v2="1409" v3="1266" />+                <face v1="1266" v2="1409" v3="1291" />+                <face v1="1366" v2="1391" v3="1283" />+                <face v1="1283" v2="1391" v3="1784" />+                <face v1="1334" v2="1407" v3="1383" />+                <face v1="1383" v2="1407" v3="1372" />+                <face v1="1372" v2="1409" v3="1385" />+                <face v1="1409" v2="1399" v3="1291" />+                <face v1="1291" v2="1399" v3="1400" />+                <face v1="1291" v2="1400" v3="1316" />+                <face v1="1316" v2="1400" v3="1377" />+                <face v1="1784" v2="1404" v3="1800" />+                <face v1="1800" v2="1803" v3="1334" />+                <face v1="1334" v2="1803" v3="1407" />+                <face v1="1407" v2="1420" v3="1372" />+                <face v1="1372" v2="1420" v3="1409" />+                <face v1="1391" v2="1789" v3="1784" />+                <face v1="1803" v2="1806" v3="1407" />+                <face v1="1407" v2="1806" v3="1420" />+                <face v1="1420" v2="1812" v3="1409" />+                <face v1="1400" v2="1425" v3="1377" />+                <face v1="1377" v2="1425" v3="1426" />+                <face v1="1377" v2="1426" v3="1366" />+                <face v1="1366" v2="1426" v3="1439" />+                <face v1="1366" v2="1439" v3="1391" />+                <face v1="1391" v2="1439" v3="1793" />+                <face v1="1806" v2="1809" v3="1420" />+                <face v1="1420" v2="1809" v3="1812" />+                <face v1="1812" v2="1815" v3="1409" />+                <face v1="1409" v2="1815" v3="1399" />+                <face v1="1399" v2="1821" v3="1400" />+                <face v1="1400" v2="1821" v3="1425" />+                <face v1="1425" v2="1827" v3="1426" />+                <face v1="1426" v2="1827" v3="1439" />+                <face v1="1815" v2="1817" v3="1399" />+                <face v1="1399" v2="1818" v3="1819" />+                <face v1="1821" v2="1823" v3="1425" />+                <face v1="1425" v2="1824" v3="1825" />+                <face v1="1827" v2="1829" v3="1439" />+                <face v1="1439" v2="1830" v3="1793" />+            </lodfacelist>+        </lodgenerated>+    </levelofdetail>+</mesh>
+ media/ogrehead.mesh.xml view
@@ -0,0 +1,25423 @@+<mesh>+    <submeshes>+        <submesh material="Ogre/Eyes" usesharedvertices="false" use32bitindexes="false" operationtype="triangle_list">+            <faces count="82">+                <face v1="0" v2="1" v3="2" />+                <face v1="3" v2="4" v3="5" />+                <face v1="1" v2="0" v3="6" />+                <face v1="7" v2="8" v3="9" />+                <face v1="10" v2="11" v3="12" />+                <face v1="13" v2="0" v3="2" />+                <face v1="14" v2="15" v3="16" />+                <face v1="17" v2="18" v3="19" />+                <face v1="20" v2="21" v3="22" />+                <face v1="20" v2="23" v3="21" />+                <face v1="24" v2="16" v3="15" />+                <face v1="25" v2="26" v3="27" />+                <face v1="28" v2="29" v3="30" />+                <face v1="14" v2="16" v3="23" />+                <face v1="15" v2="14" v3="31" />+                <face v1="17" v2="19" v3="27" />+                <face v1="19" v2="25" v3="27" />+                <face v1="32" v2="24" v3="15" />+                <face v1="14" v2="23" v3="20" />+                <face v1="29" v2="19" v3="18" />+                <face v1="29" v2="28" v3="19" />+                <face v1="33" v2="2" v3="1" />+                <face v1="7" v2="3" v3="5" />+                <face v1="7" v2="9" v3="3" />+                <face v1="1" v2="6" v3="34" />+                <face v1="35" v2="13" v3="2" />+                <face v1="4" v2="3" v3="11" />+                <face v1="3" v2="12" v3="11" />+                <face v1="34" v2="36" v3="37" />+                <face v1="6" v2="36" v3="34" />+                <face v1="9" v2="38" v3="39" />+                <face v1="38" v2="9" v3="8" />+                <face v1="36" v2="0" v3="13" />+                <face v1="6" v2="0" v3="36" />+                <face v1="40" v2="13" v3="35" />+                <face v1="40" v2="36" v3="13" />+                <face v1="41" v2="38" v3="42" />+                <face v1="41" v2="39" v3="38" />+                <face v1="43" v2="37" v3="44" />+                <face v1="37" v2="43" v3="45" />+                <face v1="46" v2="34" v3="47" />+                <face v1="34" v2="46" v3="1" />+                <face v1="21" v2="32" v3="48" />+                <face v1="32" v2="21" v3="24" />+                <face v1="49" v2="25" v3="50" />+                <face v1="26" v2="25" v3="49" />+                <face v1="16" v2="21" v3="23" />+                <face v1="21" v2="16" v3="24" />+                <face v1="49" v2="51" v3="52" />+                <face v1="49" v2="50" v3="51" />+                <face v1="48" v2="53" v3="54" />+                <face v1="55" v2="53" v3="48" />+                <face v1="32" v2="56" v3="57" />+                <face v1="15" v2="56" v3="32" />+                <face v1="57" v2="48" v3="32" />+                <face v1="57" v2="55" v3="48" />+                <face v1="50" v2="30" v3="51" />+                <face v1="50" v2="28" v3="30" />+                <face v1="22" v2="48" v3="54" />+                <face v1="22" v2="21" v3="48" />+                <face v1="26" v2="55" v3="57" />+                <face v1="49" v2="55" v3="26" />+                <face v1="55" v2="52" v3="53" />+                <face v1="55" v2="49" v3="52" />+                <face v1="27" v2="57" v3="56" />+                <face v1="26" v2="57" v3="27" />+                <face v1="19" v2="50" v3="25" />+                <face v1="19" v2="28" v3="50" />+                <face v1="37" v2="47" v3="34" />+                <face v1="37" v2="45" v3="47" />+                <face v1="10" v2="39" v3="41" />+                <face v1="10" v2="12" v3="39" />+                <face v1="37" v2="40" v3="44" />+                <face v1="37" v2="36" v3="40" />+                <face v1="45" v2="8" v3="47" />+                <face v1="8" v2="45" v3="38" />+                <face v1="42" v2="45" v3="43" />+                <face v1="42" v2="38" v3="45" />+                <face v1="47" v2="7" v3="46" />+                <face v1="7" v2="47" v3="8" />+                <face v1="39" v2="3" v3="9" />+                <face v1="39" v2="12" v3="3" />+            </faces>+            <geometry vertexcount="58">+                <vertexbuffer positions="true" normals="true" texture_coord_dimensions_0="2" texture_coords="1">+                    <vertex>+                        <position x="5.61572" y="15.2486" z="5.66475" />+                        <normal x="0.278925" y="0.473199" z="0.835634" />+                        <texcoord u="2.10283" v="0.413862" />+                    </vertex>+                    <vertex>+                        <position x="6.1485" y="16.1399" z="4.58445" />+                        <normal x="0.420076" y="0.583175" z="0.695301" />+                        <texcoord u="2.20506" v="0.217455" />+                    </vertex>+                    <vertex>+                        <position x="4.08621" y="14.7806" z="6.42355" />+                        <normal x="0.433503" y="0.286322" z="0.854456" />+                        <texcoord u="1.79244" v="0.522846" />+                    </vertex>+                    <vertex>+                        <position x="9.99759" y="16.3372" z="1.38245" />+                        <normal x="0.698421" y="0.531478" z="0.479311" />+                        <texcoord u="2.97686" v="0.0968456" />+                    </vertex>+                    <vertex>+                        <position x="11.0235" y="16.7644" z="-0.382347" />+                        <normal x="0.814045" y="0.236502" z="0.530469" />+                        <texcoord u="3.17599" v="-0.0290602" />+                    </vertex>+                    <vertex>+                        <position x="9.53412" y="16.7757" z="1.01385" />+                        <normal x="0.412821" y="0.800843" z="0.433854" />+                        <texcoord u="2.87849" v="0.00490338" />+                    </vertex>+                    <vertex>+                        <position x="6.64199" y="15.3338" z="5.26825" />+                        <normal x="0.391826" y="0.504166" z="0.769603" />+                        <texcoord u="2.31191" v="0.386925" />+                    </vertex>+                    <vertex>+                        <position x="8.04471" y="16.7872" z="2.40995" />+                        <normal x="0.378405" y="0.805066" z="0.456814" />+                        <texcoord u="2.58097" v="0.0388637" />+                    </vertex>+                    <vertex>+                        <position x="9.20213" y="16.0201" z="2.73255" />+                        <normal x="0.600296" y="0.564071" z="0.566982" />+                        <texcoord u="2.82232" v="0.191332" />+                    </vertex>+                    <vertex>+                        <position x="9.61759" y="16.2108" z="2.08195" />+                        <normal x="0.631651" y="0.582561" z="0.511508" />+                        <texcoord u="2.90343" v="0.138569" />+                    </vertex>+                    <vertex>+                        <position x="10.8396" y="15.7626" z="0.0694523" />+                        <normal x="0.964056" y="0.0209615" z="0.264872" />+                        <texcoord u="3.14127" v="0.172295" />+                    </vertex>+                    <vertex>+                        <position x="10.9023" y="16.506" z="-0.424549" />+                        <normal x="0.929522" y="0.0329303" z="0.367294" />+                        <texcoord u="3.15066" v="0.0189819" />+                    </vertex>+                    <vertex>+                        <position x="10.737" y="15.9536" z="0.48085" />+                        <normal x="0.905158" y="0.227824" z="0.358866" />+                        <texcoord u="3.12305" v="0.146418" />+                    </vertex>+                    <vertex>+                        <position x="5.16272" y="14.7657" z="6.00655" />+                        <normal x="0.363992" y="0.216818" z="0.905814" />+                        <texcoord u="2.01174" v="0.514332" />+                    </vertex>+                    <vertex>+                        <position x="-4.08621" y="14.7806" z="6.42355" />+                        <normal x="-0.433503" y="0.286322" z="0.854456" />+                        <texcoord u="0.104731" v="0.529965" />+                    </vertex>+                    <vertex>+                        <position x="-6.1485" y="16.1399" z="4.58445" />+                        <normal x="-0.420076" y="0.583175" z="0.695301" />+                        <texcoord u="-0.33442" v="0.228167" />+                    </vertex>+                    <vertex>+                        <position x="-5.61572" y="15.2486" z="5.66475" />+                        <normal x="-0.278925" y="0.473199" z="0.835634" />+                        <texcoord u="-0.216604" v="0.423645" />+                    </vertex>+                    <vertex>+                        <position x="-9.53412" y="16.7757" z="1.01385" />+                        <normal x="-0.412821" y="0.800843" z="0.433854" />+                        <texcoord u="-1.05934" v="0.0215128" />+                    </vertex>+                    <vertex>+                        <position x="-11.0235" y="16.7644" z="-0.382347" />+                        <normal x="-0.814045" y="0.236502" z="0.530469" />+                        <texcoord u="-1.37699" v="-0.00985622" />+                    </vertex>+                    <vertex>+                        <position x="-9.99759" y="16.3372" z="1.38245" />+                        <normal x="-0.698421" y="0.531478" z="0.479311" />+                        <texcoord u="-1.1524" v="0.114262" />+                    </vertex>+                    <vertex>+                        <position x="-4.60796" y="14.4711" z="6.32125" />+                        <normal x="-0.362604" y="0.200772" z="0.91006" />+                        <texcoord u="-0.00375453" v="0.586544" />+                    </vertex>+                    <vertex>+                        <position x="-6.79243" y="14.472" z="5.44375" />+                        <normal x="-0.42909" y="0.206363" z="0.879372" />+                        <texcoord u="-0.461203" v="0.566369" />+                    </vertex>+                    <vertex>+                        <position x="-6.69781" y="13.4952" z="5.50875" />+                        <normal x="-0.467698" y="-0.00559732" z="0.88387" />+                        <texcoord u="-0.441194" v="0.753112" />+                    </vertex>+                    <vertex>+                        <position x="-5.16272" y="14.7657" z="6.00655" />+                        <normal x="-0.353381" y="0.291263" z="0.888981" />+                        <texcoord u="-0.120589" v="0.523326" />+                    </vertex>+                    <vertex>+                        <position x="-6.64199" y="15.3338" z="5.26825" />+                        <normal x="-0.391826" y="0.504166" z="0.769603" />+                        <texcoord u="-0.431401" v="0.398496" />+                    </vertex>+                    <vertex>+                        <position x="-9.61759" y="16.2108" z="2.08195" />+                        <normal x="-0.631651" y="0.582561" z="0.511508" />+                        <texcoord u="-1.06888" v="0.155324" />+                    </vertex>+                    <vertex>+                        <position x="-9.20213" y="16.0201" z="2.73255" />+                        <normal x="-0.600296" y="0.564071" z="0.566982" />+                        <texcoord u="-0.978388" v="0.207363" />+                    </vertex>+                    <vertex>+                        <position x="-8.04471" y="16.7872" z="2.40995" />+                        <normal x="-0.378405" y="0.805066" z="0.456814" />+                        <texcoord u="-0.741693" v="0.0528784" />+                    </vertex>+                    <vertex>+                        <position x="-10.737" y="15.9536" z="0.48085" />+                        <normal x="-0.905158" y="0.227824" z="0.358866" />+                        <texcoord u="-1.3116" v="0.165123" />+                    </vertex>+                    <vertex>+                        <position x="-10.9023" y="16.506" z="-0.424549" />+                        <normal x="-0.929522" y="0.0329303" z="0.367294" />+                        <texcoord u="-1.35226" v="0.0379747" />+                    </vertex>+                    <vertex>+                        <position x="-10.8396" y="15.7626" z="0.0694523" />+                        <normal x="-0.964056" y="0.0209615" z="0.264872" />+                        <texcoord u="-1.33575" v="0.191179" />+                    </vertex>+                    <vertex>+                        <position x="-3.89298" y="14.9007" z="6.73075" />+                        <normal x="-0.73947" y="-0.32207" z="0.591147" />+                        <texcoord u="0.146851" v="0.514672" />+                    </vertex>+                    <vertex>+                        <position x="-7.35424" y="15.3284" z="4.76485" />+                        <normal x="-0.457831" y="0.539992" z="0.706257" />+                        <texcoord u="-0.58212" v="0.387564" />+                    </vertex>+                    <vertex>+                        <position x="3.89298" y="14.9007" z="6.73075" />+                        <normal x="0.73947" y="-0.32207" z="0.591147" />+                        <texcoord u="1.75475" v="0.50789" />+                    </vertex>+                    <vertex>+                        <position x="7.35424" y="15.3284" z="4.76485" />+                        <normal x="0.457831" y="0.539992" z="0.706257" />+                        <texcoord u="2.45536" v="0.374753" />+                    </vertex>+                    <vertex>+                        <position x="4.60796" y="14.4711" z="6.32125" />+                        <normal x="0.38632" y="0.227405" z="0.893893" />+                        <texcoord u="1.89945" v="0.578516" />+                    </vertex>+                    <vertex>+                        <position x="6.79243" y="14.472" z="5.44375" />+                        <normal x="0.433936" y="0.195" z="0.879588" />+                        <texcoord u="2.34424" v="0.554536" />+                    </vertex>+                    <vertex>+                        <position x="8.05394" y="14.3771" z="4.71945" />+                        <normal x="0.60146" y="0.119941" z="0.789848" />+                        <texcoord u="2.59953" v="0.553362" />+                    </vertex>+                    <vertex>+                        <position x="9.7956" y="15.0682" z="2.60465" />+                        <normal x="0.820691" y="0.187499" z="0.539732" />+                        <texcoord u="2.94396" v="0.36809" />+                    </vertex>+                    <vertex>+                        <position x="10.402" y="15.4253" z="1.51755" />+                        <normal x="0.878057" y="0.192915" z="0.437949" />+                        <texcoord u="3.06135" v="0.272745" />+                    </vertex>+                    <vertex>+                        <position x="6.69781" y="13.4952" z="5.50875" />+                        <normal x="0.447541" y="0.0372288" z="0.893488" />+                        <texcoord u="2.32517" v="0.741444" />+                    </vertex>+                    <vertex>+                        <position x="10.6711" y="14.6185" z="0.875952" />+                        <normal x="0.91404" y="0.0196394" z="0.405148" />+                        <texcoord u="3.11229" v="0.409463" />+                    </vertex>+                    <vertex>+                        <position x="10.1022" y="13.7878" z="2.15505" />+                        <normal x="0.85015" y="0.0101184" z="0.526444" />+                        <texcoord u="3.00403" v="0.599352" />+                    </vertex>+                    <vertex>+                        <position x="9.26515" y="13.4314" z="3.32625" />+                        <normal x="0.757609" y="-0.0642148" z="0.649543" />+                        <texcoord u="2.83962" v="0.696863" />+                    </vertex>+                    <vertex>+                        <position x="7.92624" y="13.2468" z="4.72985" />+                        <normal x="0.632232" y="-0.0643254" z="0.772104" />+                        <texcoord u="2.57324" v="0.768019" />+                    </vertex>+                    <vertex>+                        <position x="9.0154" y="14.7822" z="3.75615" />+                        <normal x="0.747134" y="0.170934" z="0.642318" />+                        <texcoord u="2.79114" v="0.451695" />+                    </vertex>+                    <vertex>+                        <position x="7.09661" y="16.4636" z="3.49725" />+                        <normal x="0.327312" y="0.756706" z="0.565917" />+                        <texcoord u="2.39302" v="0.128161" />+                    </vertex>+                    <vertex>+                        <position x="8.36882" y="15.7339" z="3.84285" />+                        <normal x="0.48077" y="0.594283" z="0.644739" />+                        <texcoord u="2.65824" v="0.274013" />+                    </vertex>+                    <vertex>+                        <position x="-8.05394" y="14.3771" z="4.71945" />+                        <normal x="-0.60146" y="0.119941" z="0.789848" />+                        <texcoord u="-0.726944" v="0.567393" />+                    </vertex>+                    <vertex>+                        <position x="-9.7956" y="15.0682" z="2.60465" />+                        <normal x="-0.820691" y="0.187499" z="0.539732" />+                        <texcoord u="-1.10187" v="0.385155" />+                    </vertex>+                    <vertex>+                        <position x="-10.402" y="15.4253" z="1.51755" />+                        <normal x="-0.878057" y="0.192915" z="0.437949" />+                        <texcoord u="-1.23494" v="0.290866" />+                    </vertex>+                    <vertex>+                        <position x="-10.6711" y="14.6185" z="0.875952" />+                        <normal x="-0.91404" y="0.0196394" z="0.405148" />+                        <texcoord u="-1.29514" v="0.428053" />+                    </vertex>+                    <vertex>+                        <position x="-10.1022" y="13.7878" z="2.15505" />+                        <normal x="-0.85015" y="0.0101184" z="0.526444" />+                        <texcoord u="-1.16843" v="0.616951" />+                    </vertex>+                    <vertex>+                        <position x="-9.26515" y="13.4314" z="3.32625" />+                        <normal x="-0.757609" y="-0.0642148" z="0.649543" />+                        <texcoord u="-0.987121" v="0.713004" />+                    </vertex>+                    <vertex>+                        <position x="-7.92624" y="13.2468" z="4.72985" />+                        <normal x="-0.632232" y="-0.0643254" z="0.772104" />+                        <texcoord u="-0.700497" v="0.781828" />+                    </vertex>+                    <vertex>+                        <position x="-9.0154" y="14.7822" z="3.75615" />+                        <normal x="-0.747134" y="0.170934" z="0.642318" />+                        <texcoord u="-0.932444" v="0.467401" />+                    </vertex>+                    <vertex>+                        <position x="-7.09661" y="16.4636" z="3.49725" />+                        <normal x="-0.327312" y="0.756706" z="0.565917" />+                        <texcoord u="-0.538057" v="0.140524" />+                    </vertex>+                    <vertex>+                        <position x="-8.36882" y="15.7339" z="3.84285" />+                        <normal x="-0.48077" y="0.594283" z="0.644739" />+                        <texcoord u="-0.798292" v="0.288592" />+                    </vertex>+                </vertexbuffer>+            </geometry>+        </submesh>+        <submesh material="Ogre/Skin" usesharedvertices="false" use32bitindexes="false" operationtype="triangle_list">+            <faces count="3178">+                <face v1="0" v2="1" v3="2" />+                <face v1="2" v2="3" v3="0" />+                <face v1="4" v2="5" v3="6" />+                <face v1="6" v2="7" v3="4" />+                <face v1="8" v2="9" v3="10" />+                <face v1="11" v2="12" v3="13" />+                <face v1="14" v2="15" v3="16" />+                <face v1="14" v2="17" v3="15" />+                <face v1="18" v2="19" v3="20" />+                <face v1="21" v2="22" v3="23" />+                <face v1="21" v2="24" v3="22" />+                <face v1="25" v2="26" v3="27" />+                <face v1="26" v2="28" v3="27" />+                <face v1="29" v2="8" v3="30" />+                <face v1="29" v2="9" v3="8" />+                <face v1="31" v2="32" v3="33" />+                <face v1="32" v2="34" v3="33" />+                <face v1="35" v2="36" v3="37" />+                <face v1="35" v2="38" v3="36" />+                <face v1="39" v2="40" v3="41" />+                <face v1="41" v2="42" v3="39" />+                <face v1="43" v2="44" v3="45" />+                <face v1="46" v2="47" v3="48" />+                <face v1="49" v2="50" v3="51" />+                <face v1="52" v2="53" v3="54" />+                <face v1="55" v2="56" v3="57" />+                <face v1="56" v2="58" v3="57" />+                <face v1="59" v2="60" v3="61" />+                <face v1="59" v2="62" v3="60" />+                <face v1="63" v2="64" v3="65" />+                <face v1="60" v2="66" v3="67" />+                <face v1="60" v2="68" v3="66" />+                <face v1="69" v2="70" v3="71" />+                <face v1="71" v2="63" v3="69" />+                <face v1="72" v2="73" v3="74" />+                <face v1="72" v2="75" v3="73" />+                <face v1="76" v2="77" v3="78" />+                <face v1="77" v2="79" v3="78" />+                <face v1="80" v2="81" v3="82" />+                <face v1="80" v2="83" v3="81" />+                <face v1="84" v2="85" v3="86" />+                <face v1="84" v2="68" v3="85" />+                <face v1="87" v2="88" v3="89" />+                <face v1="90" v2="91" v3="92" />+                <face v1="93" v2="94" v3="95" />+                <face v1="96" v2="97" v3="98" />+                <face v1="97" v2="99" v3="98" />+                <face v1="100" v2="101" v3="102" />+                <face v1="100" v2="102" v3="103" />+                <face v1="103" v2="104" v3="100" />+                <face v1="105" v2="106" v3="107" />+                <face v1="108" v2="109" v3="110" />+                <face v1="111" v2="112" v3="113" />+                <face v1="111" v2="114" v3="112" />+                <face v1="115" v2="116" v3="117" />+                <face v1="117" v2="118" v3="115" />+                <face v1="119" v2="120" v3="121" />+                <face v1="119" v2="122" v3="120" />+                <face v1="123" v2="124" v3="125" />+                <face v1="126" v2="127" v3="41" />+                <face v1="128" v2="129" v3="130" />+                <face v1="128" v2="131" v3="129" />+                <face v1="38" v2="132" v3="133" />+                <face v1="38" v2="134" v3="132" />+                <face v1="135" v2="136" v3="33" />+                <face v1="137" v2="138" v3="46" />+                <face v1="46" v2="50" v3="137" />+                <face v1="139" v2="140" v3="141" />+                <face v1="141" v2="142" v3="139" />+                <face v1="143" v2="144" v3="145" />+                <face v1="145" v2="146" v3="143" />+                <face v1="147" v2="148" v3="149" />+                <face v1="148" v2="150" v3="149" />+                <face v1="151" v2="152" v3="148" />+                <face v1="153" v2="154" v3="155" />+                <face v1="154" v2="156" v3="155" />+                <face v1="157" v2="158" v3="159" />+                <face v1="160" v2="161" v3="162" />+                <face v1="162" v2="157" v3="160" />+                <face v1="163" v2="164" v3="165" />+                <face v1="165" v2="166" v3="163" />+                <face v1="167" v2="168" v3="169" />+                <face v1="167" v2="170" v3="168" />+                <face v1="171" v2="172" v3="173" />+                <face v1="173" v2="174" v3="171" />+                <face v1="175" v2="176" v3="177" />+                <face v1="176" v2="172" v3="177" />+                <face v1="178" v2="177" v3="179" />+                <face v1="180" v2="181" v3="182" />+                <face v1="182" v2="183" v3="180" />+                <face v1="184" v2="185" v3="186" />+                <face v1="185" v2="187" v3="186" />+                <face v1="188" v2="189" v3="190" />+                <face v1="188" v2="191" v3="189" />+                <face v1="192" v2="193" v3="194" />+                <face v1="193" v2="195" v3="194" />+                <face v1="196" v2="197" v3="198" />+                <face v1="196" v2="195" v3="197" />+                <face v1="199" v2="200" v3="201" />+                <face v1="202" v2="203" v3="204" />+                <face v1="202" v2="205" v3="203" />+                <face v1="206" v2="199" v3="207" />+                <face v1="208" v2="209" v3="210" />+                <face v1="209" v2="211" v3="210" />+                <face v1="173" v2="119" v3="212" />+                <face v1="212" v2="174" v3="173" />+                <face v1="213" v2="214" v3="215" />+                <face v1="216" v2="217" v3="218" />+                <face v1="218" v2="219" v3="216" />+                <face v1="220" v2="221" v3="222" />+                <face v1="222" v2="167" v3="220" />+                <face v1="223" v2="224" v3="225" />+                <face v1="223" v2="226" v3="224" />+                <face v1="220" v2="227" v3="228" />+                <face v1="227" v2="229" v3="228" />+                <face v1="230" v2="228" v3="231" />+                <face v1="232" v2="136" v3="233" />+                <face v1="234" v2="136" v3="235" />+                <face v1="236" v2="237" v3="238" />+                <face v1="238" v2="239" v3="236" />+                <face v1="240" v2="241" v3="242" />+                <face v1="240" v2="243" v3="241" />+                <face v1="244" v2="245" v3="246" />+                <face v1="244" v2="247" v3="245" />+                <face v1="248" v2="249" v3="250" />+                <face v1="248" v2="251" v3="249" />+                <face v1="252" v2="253" v3="254" />+                <face v1="254" v2="255" v3="252" />+                <face v1="256" v2="257" v3="258" />+                <face v1="256" v2="259" v3="257" />+                <face v1="260" v2="261" v3="262" />+                <face v1="263" v2="264" v3="265" />+                <face v1="266" v2="267" v3="268" />+                <face v1="268" v2="263" v3="266" />+                <face v1="269" v2="270" v3="271" />+                <face v1="269" v2="272" v3="270" />+                <face v1="273" v2="274" v3="275" />+                <face v1="273" v2="276" v3="274" />+                <face v1="265" v2="264" v3="277" />+                <face v1="278" v2="279" v3="280" />+                <face v1="278" v2="281" v3="279" />+                <face v1="282" v2="283" v3="284" />+                <face v1="285" v2="286" v3="287" />+                <face v1="285" v2="284" v3="286" />+                <face v1="288" v2="289" v3="290" />+                <face v1="288" v2="291" v3="289" />+                <face v1="292" v2="24" v3="293" />+                <face v1="292" v2="22" v3="24" />+                <face v1="294" v2="262" v3="287" />+                <face v1="285" v2="295" v3="296" />+                <face v1="296" v2="297" v3="285" />+                <face v1="298" v2="89" v3="88" />+                <face v1="88" v2="299" v3="298" />+                <face v1="105" v2="300" v3="301" />+                <face v1="301" v2="302" v3="105" />+                <face v1="303" v2="304" v3="305" />+                <face v1="304" v2="99" v3="305" />+                <face v1="306" v2="97" v3="101" />+                <face v1="97" v2="307" v3="101" />+                <face v1="308" v2="106" v3="302" />+                <face v1="303" v2="100" v3="309" />+                <face v1="305" v2="306" v3="100" />+                <face v1="310" v2="311" v3="124" />+                <face v1="124" v2="312" v3="310" />+                <face v1="313" v2="314" v3="315" />+                <face v1="316" v2="63" v3="71" />+                <face v1="316" v2="110" v3="63" />+                <face v1="315" v2="317" v3="313" />+                <face v1="315" v2="318" v3="317" />+                <face v1="319" v2="320" v3="321" />+                <face v1="319" v2="322" v3="320" />+                <face v1="323" v2="320" v3="314" />+                <face v1="323" v2="120" v3="320" />+                <face v1="298" v2="106" v3="308" />+                <face v1="311" v2="310" v3="87" />+                <face v1="324" v2="91" v3="325" />+                <face v1="324" v2="92" v3="91" />+                <face v1="326" v2="109" v3="327" />+                <face v1="90" v2="328" v3="91" />+                <face v1="90" v2="318" v3="328" />+                <face v1="329" v2="330" v3="92" />+                <face v1="331" v2="332" v3="333" />+                <face v1="333" v2="334" v3="331" />+                <face v1="43" v2="335" v3="336" />+                <face v1="43" v2="337" v3="338" />+                <face v1="43" v2="334" v3="333" />+                <face v1="339" v2="340" v3="45" />+                <face v1="341" v2="342" v3="331" />+                <face v1="342" v2="343" v3="331" />+                <face v1="337" v2="344" v3="345" />+                <face v1="337" v2="346" v3="344" />+                <face v1="347" v2="348" v3="349" />+                <face v1="348" v2="350" v3="349" />+                <face v1="310" v2="88" v3="87" />+                <face v1="351" v2="352" v3="353" />+                <face v1="351" v2="229" v3="352" />+                <face v1="207" v2="201" v3="354" />+                <face v1="355" v2="178" v3="356" />+                <face v1="178" v2="357" v3="356" />+                <face v1="153" v2="355" v3="154" />+                <face v1="153" v2="358" v3="355" />+                <face v1="151" v2="359" v3="152" />+                <face v1="360" v2="361" v3="362" />+                <face v1="363" v2="170" v3="364" />+                <face v1="170" v2="165" v3="364" />+                <face v1="186" v2="365" v3="184" />+                <face v1="186" v2="366" v3="365" />+                <face v1="367" v2="368" v3="369" />+                <face v1="369" v2="370" v3="367" />+                <face v1="159" v2="371" v3="157" />+                <face v1="372" v2="373" v3="179" />+                <face v1="222" v2="374" v3="170" />+                <face v1="170" v2="167" v3="222" />+                <face v1="375" v2="144" v3="376" />+                <face v1="375" v2="145" v3="144" />+                <face v1="377" v2="378" v3="379" />+                <face v1="377" v2="211" v3="378" />+                <face v1="380" v2="201" v3="381" />+                <face v1="380" v2="354" v3="201" />+                <face v1="382" v2="383" v3="384" />+                <face v1="384" v2="114" v3="382" />+                <face v1="385" v2="95" v3="94" />+                <face v1="386" v2="387" v3="388" />+                <face v1="387" v2="389" v3="388" />+                <face v1="390" v2="160" v3="157" />+                <face v1="143" v2="391" v3="392" />+                <face v1="144" v2="393" v3="376" />+                <face v1="393" v2="394" v3="376" />+                <face v1="395" v2="396" v3="166" />+                <face v1="255" v2="397" v3="252" />+                <face v1="397" v2="398" v3="252" />+                <face v1="132" v2="399" v3="133" />+                <face v1="132" v2="400" v3="399" />+                <face v1="401" v2="402" v3="403" />+                <face v1="401" v2="131" v3="402" />+                <face v1="404" v2="243" v3="405" />+                <face v1="404" v2="241" v3="243" />+                <face v1="406" v2="254" v3="407" />+                <face v1="407" v2="256" v3="406" />+                <face v1="408" v2="409" v3="410" />+                <face v1="408" v2="242" v3="409" />+                <face v1="411" v2="412" v3="31" />+                <face v1="411" v2="258" v3="412" />+                <face v1="397" v2="413" v3="6" />+                <face v1="289" v2="291" v3="414" />+                <face v1="415" v2="416" v3="417" />+                <face v1="418" v2="419" v3="420" />+                <face v1="421" v2="422" v3="423" />+                <face v1="424" v2="425" v3="426" />+                <face v1="427" v2="428" v3="424" />+                <face v1="429" v2="430" v3="431" />+                <face v1="430" v2="432" v3="431" />+                <face v1="433" v2="434" v3="435" />+                <face v1="433" v2="436" v3="434" />+                <face v1="437" v2="438" v3="439" />+                <face v1="440" v2="441" v3="442" />+                <face v1="443" v2="444" v3="445" />+                <face v1="444" v2="446" v3="445" />+                <face v1="447" v2="448" v3="449" />+                <face v1="447" v2="450" v3="448" />+                <face v1="451" v2="452" v3="453" />+                <face v1="454" v2="455" v3="456" />+                <face v1="456" v2="457" v3="454" />+                <face v1="458" v2="459" v3="460" />+                <face v1="461" v2="462" v3="463" />+                <face v1="463" v2="464" v3="461" />+                <face v1="465" v2="466" v3="467" />+                <face v1="465" v2="468" v3="466" />+                <face v1="469" v2="470" v3="471" />+                <face v1="469" v2="472" v3="470" />+                <face v1="41" v2="473" v3="474" />+                <face v1="475" v2="476" v3="416" />+                <face v1="477" v2="478" v3="436" />+                <face v1="479" v2="480" v3="481" />+                <face v1="480" v2="482" v3="481" />+                <face v1="483" v2="484" v3="480" />+                <face v1="480" v2="485" v3="483" />+                <face v1="437" v2="486" v3="487" />+                <face v1="437" v2="488" v3="486" />+                <face v1="489" v2="490" v3="491" />+                <face v1="492" v2="489" v3="491" />+                <face v1="492" v2="493" v3="489" />+                <face v1="494" v2="495" v3="496" />+                <face v1="497" v2="498" v3="499" />+                <face v1="499" v2="500" v3="497" />+                <face v1="501" v2="502" v3="503" />+                <face v1="504" v2="503" v3="502" />+                <face v1="504" v2="505" v3="503" />+                <face v1="506" v2="507" v3="508" />+                <face v1="506" v2="509" v3="507" />+                <face v1="510" v2="511" v3="512" />+                <face v1="510" v2="513" v3="511" />+                <face v1="514" v2="515" v3="516" />+                <face v1="517" v2="518" v3="519" />+                <face v1="517" v2="474" v3="518" />+                <face v1="468" v2="520" v3="521" />+                <face v1="468" v2="522" v3="520" />+                <face v1="523" v2="524" v3="525" />+                <face v1="525" v2="416" v3="523" />+                <face v1="526" v2="527" v3="528" />+                <face v1="526" v2="529" v3="527" />+                <face v1="530" v2="531" v3="532" />+                <face v1="532" v2="533" v3="530" />+                <face v1="533" v2="534" v3="535" />+                <face v1="536" v2="530" v3="537" />+                <face v1="536" v2="538" v3="530" />+                <face v1="539" v2="540" v3="541" />+                <face v1="541" v2="542" v3="539" />+                <face v1="543" v2="539" v3="544" />+                <face v1="545" v2="543" v3="546" />+                <face v1="541" v2="547" v3="542" />+                <face v1="547" v2="548" v3="542" />+                <face v1="549" v2="550" v3="551" />+                <face v1="549" v2="552" v3="550" />+                <face v1="553" v2="554" v3="555" />+                <face v1="556" v2="557" v3="558" />+                <face v1="558" v2="559" v3="556" />+                <face v1="560" v2="561" v3="562" />+                <face v1="562" v2="563" v3="560" />+                <face v1="564" v2="565" v3="566" />+                <face v1="566" v2="567" v3="564" />+                <face v1="568" v2="569" v3="570" />+                <face v1="570" v2="571" v3="568" />+                <face v1="572" v2="573" v3="574" />+                <face v1="555" v2="575" v3="576" />+                <face v1="553" v2="577" v3="578" />+                <face v1="579" v2="580" v3="581" />+                <face v1="580" v2="582" v3="581" />+                <face v1="583" v2="584" v3="585" />+                <face v1="583" v2="586" v3="584" />+                <face v1="587" v2="588" v3="583" />+                <face v1="588" v2="586" v3="583" />+                <face v1="589" v2="590" v3="591" />+                <face v1="591" v2="592" v3="589" />+                <face v1="593" v2="594" v3="595" />+                <face v1="593" v2="596" v3="594" />+                <face v1="597" v2="598" v3="599" />+                <face v1="597" v2="600" v3="598" />+                <face v1="601" v2="602" v3="603" />+                <face v1="601" v2="600" v3="602" />+                <face v1="598" v2="604" v3="593" />+                <face v1="589" v2="605" v3="590" />+                <face v1="606" v2="607" v3="608" />+                <face v1="607" v2="609" v3="608" />+                <face v1="603" v2="610" v3="611" />+                <face v1="611" v2="601" v3="603" />+                <face v1="612" v2="416" v3="476" />+                <face v1="613" v2="614" v3="615" />+                <face v1="614" v2="616" v3="615" />+                <face v1="440" v2="617" v3="618" />+                <face v1="449" v2="435" v3="421" />+                <face v1="448" v2="435" v3="449" />+                <face v1="448" v2="433" v3="435" />+                <face v1="619" v2="620" v3="621" />+                <face v1="621" v2="622" v3="619" />+                <face v1="451" v2="623" v3="624" />+                <face v1="624" v2="625" v3="451" />+                <face v1="626" v2="457" v3="627" />+                <face v1="603" v2="451" v3="610" />+                <face v1="451" v2="625" v3="610" />+                <face v1="628" v2="436" v3="478" />+                <face v1="629" v2="630" v3="631" />+                <face v1="478" v2="632" v3="628" />+                <face v1="632" v2="633" v3="628" />+                <face v1="634" v2="635" v3="631" />+                <face v1="635" v2="636" v3="631" />+                <face v1="637" v2="638" v3="639" />+                <face v1="637" v2="640" v3="638" />+                <face v1="641" v2="425" v3="642" />+                <face v1="641" v2="426" v3="425" />+                <face v1="643" v2="427" v3="426" />+                <face v1="426" v2="644" v3="643" />+                <face v1="645" v2="644" v3="646" />+                <face v1="646" v2="452" v3="645" />+                <face v1="647" v2="602" v3="648" />+                <face v1="647" v2="649" v3="602" />+                <face v1="451" v2="603" v3="452" />+                <face v1="603" v2="602" v3="452" />+                <face v1="650" v2="453" v3="646" />+                <face v1="646" v2="641" v3="650" />+                <face v1="494" v2="651" v3="652" />+                <face v1="494" v2="653" v3="651" />+                <face v1="654" v2="655" v3="656" />+                <face v1="654" v2="657" v3="655" />+                <face v1="658" v2="659" v3="660" />+                <face v1="658" v2="661" v3="659" />+                <face v1="495" v2="652" v3="654" />+                <face v1="489" v2="662" v3="663" />+                <face v1="495" v2="654" v3="656" />+                <face v1="664" v2="489" v3="665" />+                <face v1="666" v2="667" v3="668" />+                <face v1="666" v2="669" v3="667" />+                <face v1="670" v2="671" v3="503" />+                <face v1="672" v2="673" v3="674" />+                <face v1="675" v2="668" v3="667" />+                <face v1="667" v2="676" v3="675" />+                <face v1="677" v2="505" v3="678" />+                <face v1="678" v2="679" v3="677" />+                <face v1="680" v2="681" v3="98" />+                <face v1="681" v2="59" v3="98" />+                <face v1="682" v2="683" v3="684" />+                <face v1="682" v2="685" v3="683" />+                <face v1="686" v2="687" v3="688" />+                <face v1="688" v2="689" v3="686" />+                <face v1="652" v2="651" v3="690" />+                <face v1="515" v2="669" v3="691" />+                <face v1="669" v2="666" v3="691" />+                <face v1="692" v2="693" v3="688" />+                <face v1="694" v2="498" v3="497" />+                <face v1="497" v2="502" v3="694" />+                <face v1="695" v2="696" v3="697" />+                <face v1="695" v2="698" v3="696" />+                <face v1="499" v2="699" v3="700" />+                <face v1="701" v2="702" v3="703" />+                <face v1="701" v2="704" v3="702" />+                <face v1="705" v2="706" v3="707" />+                <face v1="708" v2="709" v3="707" />+                <face v1="707" v2="701" v3="703" />+                <face v1="710" v2="711" v3="707" />+                <face v1="463" v2="710" v3="712" />+                <face v1="701" v2="707" v3="713" />+                <face v1="714" v2="704" v3="715" />+                <face v1="715" v2="716" v3="714" />+                <face v1="717" v2="667" v3="718" />+                <face v1="719" v2="720" v3="607" />+                <face v1="719" v2="721" v3="720" />+                <face v1="511" v2="722" v3="723" />+                <face v1="511" v2="724" v3="722" />+                <face v1="719" v2="725" v3="721" />+                <face v1="719" v2="726" v3="725" />+                <face v1="727" v2="728" v3="543" />+                <face v1="728" v2="546" v3="543" />+                <face v1="729" v2="730" v3="731" />+                <face v1="556" v2="559" v3="574" />+                <face v1="574" v2="573" v3="556" />+                <face v1="540" v2="732" v3="541" />+                <face v1="540" v2="545" v3="732" />+                <face v1="733" v2="734" v3="735" />+                <face v1="733" v2="736" v3="734" />+                <face v1="569" v2="552" v3="570" />+                <face v1="569" v2="550" v3="552" />+                <face v1="566" v2="737" v3="567" />+                <face v1="566" v2="738" v3="737" />+                <face v1="563" v2="739" v3="560" />+                <face v1="563" v2="740" v3="739" />+                <face v1="741" v2="742" v3="743" />+                <face v1="741" v2="744" v3="742" />+                <face v1="745" v2="746" v3="747" />+                <face v1="747" v2="748" v3="745" />+                <face v1="749" v2="750" v3="751" />+                <face v1="751" v2="752" v3="749" />+                <face v1="547" v2="753" v3="754" />+                <face v1="755" v2="756" v3="757" />+                <face v1="758" v2="647" v3="759" />+                <face v1="759" v2="760" v3="758" />+                <face v1="761" v2="762" v3="581" />+                <face v1="581" v2="763" v3="761" />+                <face v1="762" v2="484" v3="581" />+                <face v1="764" v2="765" v3="531" />+                <face v1="528" v2="766" v3="526" />+                <face v1="528" v2="587" v3="766" />+                <face v1="767" v2="768" v3="769" />+                <face v1="769" v2="770" v3="767" />+                <face v1="678" v2="507" v3="771" />+                <face v1="771" v2="679" v3="678" />+                <face v1="661" v2="772" v3="773" />+                <face v1="774" v2="775" v3="776" />+                <face v1="774" v2="596" v3="775" />+                <face v1="550" v2="734" v3="551" />+                <face v1="734" v2="594" v3="551" />+                <face v1="777" v2="744" v3="778" />+                <face v1="744" v2="741" v3="778" />+                <face v1="779" v2="780" v3="781" />+                <face v1="782" v2="752" v3="783" />+                <face v1="752" v2="751" v3="783" />+                <face v1="740" v2="563" v3="784" />+                <face v1="784" v2="785" v3="740" />+                <face v1="555" v2="576" v3="786" />+                <face v1="787" v2="529" v3="788" />+                <face v1="529" v2="526" v3="788" />+                <face v1="789" v2="534" v3="790" />+                <face v1="534" v2="791" v3="790" />+                <face v1="534" v2="792" v3="535" />+                <face v1="793" v2="467" v3="466" />+                <face v1="466" v2="794" v3="793" />+                <face v1="795" v2="722" v3="796" />+                <face v1="795" v2="723" v3="722" />+                <face v1="797" v2="472" v3="798" />+                <face v1="797" v2="470" v3="472" />+                <face v1="799" v2="620" v3="800" />+                <face v1="799" v2="621" v3="620" />+                <face v1="801" v2="627" v3="802" />+                <face v1="801" v2="803" v3="627" />+                <face v1="804" v2="805" v3="806" />+                <face v1="804" v2="807" v3="805" />+                <face v1="808" v2="622" v3="469" />+                <face v1="469" v2="809" v3="808" />+                <face v1="418" v2="810" v3="811" />+                <face v1="812" v2="813" v3="650" />+                <face v1="650" v2="814" v3="812" />+                <face v1="815" v2="816" v3="817" />+                <face v1="815" v2="818" v3="816" />+                <face v1="819" v2="820" v3="617" />+                <face v1="820" v2="821" v3="617" />+                <face v1="822" v2="823" v3="824" />+                <face v1="419" v2="418" v3="811" />+                <face v1="457" v2="802" v3="627" />+                <face v1="457" v2="456" v3="802" />+                <face v1="825" v2="622" v3="808" />+                <face v1="825" v2="619" v3="622" />+                <face v1="809" v2="471" v3="826" />+                <face v1="809" v2="469" v3="471" />+                <face v1="827" v2="803" v3="801" />+                <face v1="801" v2="828" v3="827" />+                <face v1="829" v2="470" v3="797" />+                <face v1="829" v2="830" v3="470" />+                <face v1="722" v2="793" v3="794" />+                <face v1="794" v2="796" v3="722" />+                <face v1="465" v2="523" v3="831" />+                <face v1="465" v2="524" v3="523" />+                <face v1="832" v2="811" v3="810" />+                <face v1="832" v2="833" v3="811" />+                <face v1="792" v2="534" v3="789" />+                <face v1="526" v2="766" v3="788" />+                <face v1="536" v2="740" v3="785" />+                <face v1="562" v2="834" v3="563" />+                <face v1="834" v2="784" v3="563" />+                <face v1="551" v2="596" v3="774" />+                <face v1="551" v2="594" v3="596" />+                <face v1="835" v2="772" v3="661" />+                <face v1="508" v2="836" v3="767" />+                <face v1="767" v2="770" v3="508" />+                <face v1="837" v2="731" v3="838" />+                <face v1="838" v2="839" v3="837" />+                <face v1="790" v2="759" v3="840" />+                <face v1="790" v2="787" v3="759" />+                <face v1="595" v2="841" v3="599" />+                <face v1="595" v2="736" v3="841" />+                <face v1="559" v2="842" v3="574" />+                <face v1="536" v2="843" v3="844" />+                <face v1="564" v2="746" v3="745" />+                <face v1="745" v2="845" v3="564" />+                <face v1="567" v2="736" v3="733" />+                <face v1="567" v2="737" v3="736" />+                <face v1="570" v2="552" v3="578" />+                <face v1="543" v2="545" v3="540" />+                <face v1="753" v2="541" v3="732" />+                <face v1="753" v2="547" v3="541" />+                <face v1="754" v2="756" v3="547" />+                <face v1="756" v2="755" v3="547" />+                <face v1="838" v2="731" v3="730" />+                <face v1="846" v2="776" v3="775" />+                <face v1="775" v2="847" v3="846" />+                <face v1="848" v2="849" v3="850" />+                <face v1="851" v2="852" v3="86" />+                <face v1="852" v2="853" v3="86" />+                <face v1="349" v2="460" v3="459" />+                <face v1="349" v2="350" v3="460" />+                <face v1="715" v2="704" v3="713" />+                <face v1="704" v2="701" v3="713" />+                <face v1="712" v2="854" v3="463" />+                <face v1="854" v2="464" v3="463" />+                <face v1="711" v2="855" v3="856" />+                <face v1="703" v2="710" v3="707" />+                <face v1="709" v2="713" v3="707" />+                <face v1="706" v2="708" v3="707" />+                <face v1="703" v2="702" v3="712" />+                <face v1="712" v2="710" v3="703" />+                <face v1="856" v2="857" v3="705" />+                <face v1="705" v2="711" v3="856" />+                <face v1="685" v2="682" v3="858" />+                <face v1="859" v2="692" v3="683" />+                <face v1="859" v2="693" v3="692" />+                <face v1="504" v2="767" v3="836" />+                <face v1="504" v2="860" v3="767" />+                <face v1="498" v2="694" v3="672" />+                <face v1="848" v2="850" v3="691" />+                <face v1="861" v2="495" v3="862" />+                <face v1="687" v2="686" v3="720" />+                <face v1="686" v2="863" v3="720" />+                <face v1="864" v2="686" v3="865" />+                <face v1="686" v2="689" v3="865" />+                <face v1="866" v2="692" v3="688" />+                <face v1="688" v2="867" v3="866" />+                <face v1="868" v2="501" v3="503" />+                <face v1="503" v2="671" v3="868" />+                <face v1="688" v2="687" v3="867" />+                <face v1="515" v2="691" v3="850" />+                <face v1="850" v2="869" v3="515" />+                <face v1="489" v2="663" v3="665" />+                <face v1="490" v2="489" v3="664" />+                <face v1="496" v2="495" v3="861" />+                <face v1="662" v2="870" v3="663" />+                <face v1="662" v2="871" v3="870" />+                <face v1="872" v2="873" v3="664" />+                <face v1="664" v2="665" v3="872" />+                <face v1="660" v2="659" v3="871" />+                <face v1="871" v2="662" v3="660" />+                <face v1="874" v2="653" v3="494" />+                <face v1="494" v2="496" v3="874" />+                <face v1="875" v2="876" v3="862" />+                <face v1="875" v2="849" v3="876" />+                <face v1="814" v2="641" v3="642" />+                <face v1="814" v2="650" v3="641" />+                <face v1="646" v2="453" v3="452" />+                <face v1="647" v2="758" v3="649" />+                <face v1="758" v2="439" v3="649" />+                <face v1="877" v2="824" v3="878" />+                <face v1="824" v2="823" v3="878" />+                <face v1="646" v2="644" v3="641" />+                <face v1="644" v2="426" v3="641" />+                <face v1="426" v2="427" v3="424" />+                <face v1="879" v2="880" v3="881" />+                <face v1="879" v2="882" v3="880" />+                <face v1="633" v2="434" v3="628" />+                <face v1="883" v2="276" v3="273" />+                <face v1="273" v2="820" v3="883" />+                <face v1="630" v2="884" v3="432" />+                <face v1="630" v2="629" v3="884" />+                <face v1="431" v2="477" v3="436" />+                <face v1="431" v2="885" v3="477" />+                <face v1="628" v2="434" v3="436" />+                <face v1="453" v2="623" v3="451" />+                <face v1="802" v2="624" v3="801" />+                <face v1="802" v2="625" v3="624" />+                <face v1="801" v2="886" v3="828" />+                <face v1="801" v2="624" v3="886" />+                <face v1="827" v2="887" v3="832" />+                <face v1="832" v2="810" v3="827" />+                <face v1="888" v2="889" v3="798" />+                <face v1="798" v2="799" v3="888" />+                <face v1="471" v2="830" v3="890" />+                <face v1="471" v2="470" v3="830" />+                <face v1="890" v2="891" v3="807" />+                <face v1="890" v2="830" v3="891" />+                <face v1="475" v2="416" v3="415" />+                <face v1="892" v2="416" v3="612" />+                <face v1="611" v2="604" v3="601" />+                <face v1="775" v2="596" v3="593" />+                <face v1="593" v2="604" v3="775" />+                <face v1="604" v2="600" v3="601" />+                <face v1="604" v2="598" v3="600" />+                <face v1="648" v2="600" v3="597" />+                <face v1="648" v2="602" v3="600" />+                <face v1="599" v2="598" v3="593" />+                <face v1="593" v2="595" v3="599" />+                <face v1="551" v2="893" v3="549" />+                <face v1="551" v2="774" v3="893" />+                <face v1="589" v2="592" v3="554" />+                <face v1="894" v2="895" v3="896" />+                <face v1="896" v2="897" v3="894" />+                <face v1="588" v2="898" v3="586" />+                <face v1="588" v2="899" v3="898" />+                <face v1="730" v2="729" v3="900" />+                <face v1="901" v2="585" v3="580" />+                <face v1="901" v2="583" v3="585" />+                <face v1="731" v2="902" v3="729" />+                <face v1="575" v2="903" v3="904" />+                <face v1="575" v2="555" v3="903" />+                <face v1="905" v2="906" v3="907" />+                <face v1="905" v2="782" v3="906" />+                <face v1="908" v2="909" v3="910" />+                <face v1="908" v2="911" v3="909" />+                <face v1="750" v2="571" v3="570" />+                <face v1="570" v2="912" v3="750" />+                <face v1="565" v2="561" v3="560" />+                <face v1="560" v2="566" v3="565" />+                <face v1="559" v2="558" v3="755" />+                <face v1="558" v2="557" v3="913" />+                <face v1="557" v2="914" v3="913" />+                <face v1="896" v2="557" v3="897" />+                <face v1="557" v2="556" v3="897" />+                <face v1="903" v2="555" v3="554" />+                <face v1="554" v2="592" v3="903" />+                <face v1="594" v2="734" v3="595" />+                <face v1="734" v2="736" v3="595" />+                <face v1="737" v2="738" v3="535" />+                <face v1="535" v2="792" v3="737" />+                <face v1="537" v2="739" v3="740" />+                <face v1="740" v2="536" v3="537" />+                <face v1="844" v2="915" v3="536" />+                <face v1="779" v2="753" v3="732" />+                <face v1="779" v2="781" v3="753" />+                <face v1="539" v2="543" v3="540" />+                <face v1="530" v2="533" v3="535" />+                <face v1="535" v2="537" v3="530" />+                <face v1="528" v2="765" v3="916" />+                <face v1="528" v2="527" v3="765" />+                <face v1="917" v2="918" v3="919" />+                <face v1="917" v2="920" v3="918" />+                <face v1="921" v2="922" v3="923" />+                <face v1="921" v2="924" v3="922" />+                <face v1="925" v2="416" v3="525" />+                <face v1="926" v2="467" v3="927" />+                <face v1="467" v2="793" v3="927" />+                <face v1="41" v2="474" v3="517" />+                <face v1="669" v2="515" v3="514" />+                <face v1="609" v2="928" v3="895" />+                <face v1="609" v2="863" v3="928" />+                <face v1="721" v2="513" v3="510" />+                <face v1="510" v2="929" v3="721" />+                <face v1="930" v2="497" v3="500" />+                <face v1="930" v2="860" v3="497" />+                <face v1="501" v2="694" v3="502" />+                <face v1="652" v2="495" v3="494" />+                <face v1="493" v2="660" v3="489" />+                <face v1="493" v2="658" v3="660" />+                <face v1="660" v2="662" v3="489" />+                <face v1="98" v2="870" v3="680" />+                <face v1="98" v2="872" v3="870" />+                <face v1="772" v2="835" v3="931" />+                <face v1="685" v2="859" v3="683" />+                <face v1="693" v2="690" v3="932" />+                <face v1="693" v2="657" v3="690" />+                <face v1="876" v2="849" v3="848" />+                <face v1="86" v2="85" v3="851" />+                <face v1="85" v2="933" v3="851" />+                <face v1="857" v2="934" v3="935" />+                <face v1="934" v2="936" v3="935" />+                <face v1="937" v2="852" v3="938" />+                <face v1="937" v2="853" v3="852" />+                <face v1="939" v2="714" v3="940" />+                <face v1="714" v2="941" v3="940" />+                <face v1="671" v2="942" v3="943" />+                <face v1="943" v2="868" v3="671" />+                <face v1="944" v2="945" v3="946" />+                <face v1="945" v2="933" v3="946" />+                <face v1="947" v2="948" v3="868" />+                <face v1="946" v2="62" v3="59" />+                <face v1="59" v2="681" v3="946" />+                <face v1="487" v2="483" v3="485" />+                <face v1="487" v2="486" v3="483" />+                <face v1="480" v2="484" v3="482" />+                <face v1="484" v2="762" v3="482" />+                <face v1="762" v2="949" v3="482" />+                <face v1="949" v2="923" v3="718" />+                <face v1="581" v2="582" v3="763" />+                <face v1="582" v2="921" v3="763" />+                <face v1="582" v2="919" v3="921" />+                <face v1="711" v2="705" v3="707" />+                <face v1="41" v2="39" v3="473" />+                <face v1="41" v2="40" v3="39" />+                <face v1="466" v2="468" v3="521" />+                <face v1="521" v2="950" v3="466" />+                <face v1="925" v2="454" v3="457" />+                <face v1="925" v2="951" v3="454" />+                <face v1="447" v2="423" v3="952" />+                <face v1="447" v2="449" v3="423" />+                <face v1="443" v2="445" v3="448" />+                <face v1="448" v2="450" v3="443" />+                <face v1="439" v2="758" v3="488" />+                <face v1="488" v2="437" v3="439" />+                <face v1="618" v2="422" v3="953" />+                <face v1="440" v2="442" v3="819" />+                <face v1="819" v2="617" v3="440" />+                <face v1="954" v2="634" v3="631" />+                <face v1="421" v2="423" v3="449" />+                <face v1="419" v2="955" v3="956" />+                <face v1="956" v2="420" v3="419" />+                <face v1="957" v2="958" v3="614" />+                <face v1="614" v2="613" v3="957" />+                <face v1="274" v2="281" v3="275" />+                <face v1="281" v2="14" v3="275" />+                <face v1="16" v2="275" v3="14" />+                <face v1="16" v2="959" v3="275" />+                <face v1="960" v2="961" v3="962" />+                <face v1="960" v2="963" v3="961" />+                <face v1="295" v2="964" v3="965" />+                <face v1="965" v2="296" v3="295" />+                <face v1="397" v2="255" v3="413" />+                <face v1="966" v2="239" v3="967" />+                <face v1="966" v2="236" v3="239" />+                <face v1="258" v2="406" v3="256" />+                <face v1="258" v2="411" v3="406" />+                <face v1="968" v2="969" v3="250" />+                <face v1="968" v2="970" v3="969" />+                <face v1="403" v2="971" v3="972" />+                <face v1="403" v2="402" v3="971" />+                <face v1="36" v2="129" v3="401" />+                <face v1="129" v2="131" v3="401" />+                <face v1="163" v2="166" v3="396" />+                <face v1="376" v2="396" v3="395" />+                <face v1="376" v2="394" v3="396" />+                <face v1="143" v2="393" v3="144" />+                <face v1="143" v2="392" v3="393" />+                <face v1="196" v2="973" v3="195" />+                <face v1="386" v2="160" v3="390" />+                <face v1="390" v2="387" v3="386" />+                <face v1="974" v2="975" v3="189" />+                <face v1="975" v2="976" v3="189" />+                <face v1="156" v2="977" v3="155" />+                <face v1="978" v2="979" v3="980" />+                <face v1="979" v2="981" v3="980" />+                <face v1="218" v2="168" v3="982" />+                <face v1="218" v2="169" v3="168" />+                <face v1="352" v2="227" v3="217" />+                <face v1="352" v2="229" v3="227" />+                <face v1="983" v2="95" v3="385" />+                <face v1="984" v2="985" v3="986" />+                <face v1="986" v2="987" v3="984" />+                <face v1="139" v2="211" v3="377" />+                <face v1="139" v2="210" v3="211" />+                <face v1="392" v2="988" v3="142" />+                <face v1="392" v2="391" v3="988" />+                <face v1="989" v2="140" v3="990" />+                <face v1="991" v2="992" v3="993" />+                <face v1="991" v2="53" v3="992" />+                <face v1="993" v2="994" v3="991" />+                <face v1="145" v2="293" v3="24" />+                <face v1="24" v2="146" v3="145" />+                <face v1="995" v2="357" v3="178" />+                <face v1="356" v2="154" v3="355" />+                <face v1="976" v2="996" v3="997" />+                <face v1="976" v2="975" v3="996" />+                <face v1="998" v2="368" v3="367" />+                <face v1="367" v2="999" v3="998" />+                <face v1="1000" v2="981" v3="979" />+                <face v1="1000" v2="1001" v3="981" />+                <face v1="161" v2="160" v3="386" />+                <face v1="386" v2="180" v3="161" />+                <face v1="364" v2="165" v3="164" />+                <face v1="164" v2="183" v3="364" />+                <face v1="1002" v2="168" v3="363" />+                <face v1="168" v2="170" v3="363" />+                <face v1="358" v2="359" v3="151" />+                <face v1="358" v2="153" v3="359" />+                <face v1="372" v2="179" v3="171" />+                <face v1="171" v2="1003" v3="372" />+                <face v1="201" v2="207" v3="199" />+                <face v1="152" v2="1004" v3="1005" />+                <face v1="152" v2="1006" v3="1004" />+                <face v1="116" v2="1007" v3="1008" />+                <face v1="1007" v2="1009" v3="1008" />+                <face v1="971" v2="1010" v3="1011" />+                <face v1="971" v2="402" v3="1010" />+                <face v1="1012" v2="323" v3="1008" />+                <face v1="323" v2="116" v3="1008" />+                <face v1="49" v2="1013" v3="1014" />+                <face v1="345" v2="73" v3="1015" />+                <face v1="345" v2="344" v3="73" />+                <face v1="337" v2="43" v3="346" />+                <face v1="331" v2="334" v3="341" />+                <face v1="43" v2="45" v3="334" />+                <face v1="333" v2="346" v3="43" />+                <face v1="43" v2="338" v3="335" />+                <face v1="43" v2="336" v3="44" />+                <face v1="333" v2="332" v3="344" />+                <face v1="344" v2="346" v3="333" />+                <face v1="1016" v2="1017" v3="1018" />+                <face v1="1019" v2="1020" v3="1021" />+                <face v1="1019" v2="1022" v3="1020" />+                <face v1="1023" v2="327" v3="109" />+                <face v1="109" v2="108" v3="1023" />+                <face v1="315" v2="328" v3="318" />+                <face v1="311" v2="1024" v3="124" />+                <face v1="1024" v2="125" v3="124" />+                <face v1="1025" v2="1026" v3="107" />+                <face v1="315" v2="314" v3="320" />+                <face v1="320" v2="322" v3="315" />+                <face v1="1027" v2="90" v3="330" />+                <face v1="90" v2="92" v3="330" />+                <face v1="98" v2="59" v3="61" />+                <face v1="61" v2="96" v3="98" />+                <face v1="987" v2="1028" v3="1029" />+                <face v1="987" v2="986" v3="1028" />+                <face v1="1013" v2="1030" v3="1031" />+                <face v1="1013" v2="1032" v3="1030" />+                <face v1="1033" v2="1034" v3="326" />+                <face v1="316" v2="71" v3="1035" />+                <face v1="1032" v2="125" v3="1024" />+                <face v1="1032" v2="1013" v3="125" />+                <face v1="305" v2="100" v3="303" />+                <face v1="1036" v2="1037" v3="106" />+                <face v1="306" v2="101" v3="100" />+                <face v1="1037" v2="107" v3="106" />+                <face v1="102" v2="1038" v3="385" />+                <face v1="385" v2="103" v3="102" />+                <face v1="1036" v2="1039" v3="1037" />+                <face v1="1036" v2="325" v3="1039" />+                <face v1="1026" v2="300" v3="105" />+                <face v1="105" v2="107" v3="1026" />+                <face v1="287" v2="262" v3="295" />+                <face v1="295" v2="285" v3="287" />+                <face v1="224" v2="1040" v3="260" />+                <face v1="260" v2="294" v3="224" />+                <face v1="287" v2="1041" v3="294" />+                <face v1="287" v2="286" v3="1041" />+                <face v1="284" v2="283" v3="1042" />+                <face v1="1042" v2="286" v3="284" />+                <face v1="297" v2="1043" v3="285" />+                <face v1="1043" v2="284" v3="285" />+                <face v1="11" v2="1044" v3="12" />+                <face v1="11" v2="1045" v3="1044" />+                <face v1="1046" v2="1047" v3="1048" />+                <face v1="1046" v2="1049" v3="1047" />+                <face v1="265" v2="277" v3="1050" />+                <face v1="277" v2="1051" v3="1050" />+                <face v1="1052" v2="1053" v3="277" />+                <face v1="277" v2="264" v3="1052" />+                <face v1="11" v2="271" v3="270" />+                <face v1="1050" v2="263" v3="265" />+                <face v1="257" v2="260" v3="1040" />+                <face v1="1040" v2="1054" v3="257" />+                <face v1="411" v2="31" v3="1055" />+                <face v1="259" v2="260" v3="257" />+                <face v1="259" v2="261" v3="260" />+                <face v1="1056" v2="261" v3="259" />+                <face v1="1056" v2="964" v3="261" />+                <face v1="8" v2="1057" v3="25" />+                <face v1="8" v2="1058" v3="1057" />+                <face v1="10" v2="1058" v3="8" />+                <face v1="20" v2="16" v3="15" />+                <face v1="1059" v2="0" v3="3" />+                <face v1="1059" v2="1060" v3="0" />+                <face v1="1061" v2="136" v3="232" />+                <face v1="231" v2="1040" v3="230" />+                <face v1="231" v2="1054" v3="1040" />+                <face v1="1062" v2="1063" v3="215" />+                <face v1="220" v2="228" v3="221" />+                <face v1="224" v2="226" v3="230" />+                <face v1="230" v2="1040" v3="224" />+                <face v1="222" v2="221" v3="223" />+                <face v1="221" v2="226" v3="223" />+                <face v1="167" v2="227" v3="220" />+                <face v1="167" v2="169" v3="227" />+                <face v1="1062" v2="215" v3="214" />+                <face v1="214" v2="1064" v3="1062" />+                <face v1="203" v2="210" v3="988" />+                <face v1="203" v2="208" v3="210" />+                <face v1="1065" v2="391" v3="1066" />+                <face v1="1065" v2="204" v3="391" />+                <face v1="991" v2="202" v3="1067" />+                <face v1="991" v2="48" v3="202" />+                <face v1="360" v2="198" v3="197" />+                <face v1="973" v2="194" v3="195" />+                <face v1="372" v2="1003" v3="1068" />+                <face v1="362" v2="1069" v3="1070" />+                <face v1="1070" v2="1071" v3="362" />+                <face v1="183" v2="182" v3="369" />+                <face v1="369" v2="364" v3="183" />+                <face v1="386" v2="181" v3="180" />+                <face v1="386" v2="388" v3="181" />+                <face v1="177" v2="172" v3="171" />+                <face v1="171" v2="179" v3="177" />+                <face v1="195" v2="213" v3="197" />+                <face v1="218" v2="982" v3="361" />+                <face v1="361" v2="219" v3="218" />+                <face v1="147" v2="1072" v3="358" />+                <face v1="1072" v2="355" v3="358" />+                <face v1="1006" v2="152" v3="359" />+                <face v1="150" v2="148" v3="152" />+                <face v1="358" v2="151" v3="148" />+                <face v1="148" v2="147" v3="358" />+                <face v1="163" v2="396" v3="1073" />+                <face v1="1073" v2="989" v3="1074" />+                <face v1="1073" v2="1075" v3="989" />+                <face v1="141" v2="393" v3="392" />+                <face v1="392" v2="142" v3="141" />+                <face v1="399" v2="400" v3="136" />+                <face v1="136" v2="135" v3="399" />+                <face v1="35" v2="134" v3="38" />+                <face v1="35" v2="1076" v3="134" />+                <face v1="1077" v2="127" v3="126" />+                <face v1="1077" v2="1078" v3="127" />+                <face v1="1079" v2="124" v3="123" />+                <face v1="1080" v2="115" v3="118" />+                <face v1="1080" v2="1011" v3="115" />+                <face v1="108" v2="1028" v3="1081" />+                <face v1="108" v2="316" v3="1028" />+                <face v1="316" v2="108" v3="110" />+                <face v1="1018" v2="327" v3="1023" />+                <face v1="1023" v2="1082" v3="1018" />+                <face v1="302" v2="106" v3="105" />+                <face v1="1083" v2="309" v3="100" />+                <face v1="1084" v2="72" v3="74" />+                <face v1="74" v2="343" v3="1084" />+                <face v1="54" v2="53" v3="56" />+                <face v1="56" v2="55" v3="54" />+                <face v1="1085" v2="54" v3="1086" />+                <face v1="1085" v2="52" v3="54" />+                <face v1="263" v2="1050" v3="266" />+                <face v1="136" v2="1061" v3="235" />+                <face v1="127" v2="42" v3="41" />+                <face v1="242" v2="1087" v3="409" />+                <face v1="242" v2="241" v3="1087" />+                <face v1="129" v2="38" v3="133" />+                <face v1="129" v2="36" v3="38" />+                <face v1="341" v2="1088" v3="342" />+                <face v1="341" v2="1089" v3="1088" />+                <face v1="348" v2="347" v3="1090" />+                <face v1="412" v2="1091" v3="31" />+                <face v1="1091" v2="32" v3="31" />+                <face v1="262" v2="294" v3="260" />+                <face v1="8" v2="25" v3="30" />+                <face v1="25" v2="27" v3="30" />+                <face v1="26" v2="1092" v3="28" />+                <face v1="26" v2="244" v3="1092" />+                <face v1="17" v2="1093" v3="15" />+                <face v1="22" v2="1094" v3="23" />+                <face v1="1058" v2="263" v3="1057" />+                <face v1="1058" v2="264" v3="263" />+                <face v1="268" v2="269" v3="1095" />+                <face v1="269" v2="247" v3="1095" />+                <face v1="282" v2="1096" v3="283" />+                <face v1="284" v2="1043" v3="282" />+                <face v1="9" v2="19" v3="10" />+                <face v1="7" v2="6" v3="413" />+                <face v1="1097" v2="136" v3="234" />+                <face v1="1098" v2="2" v3="1055" />+                <face v1="2" v2="4" v3="1055" />+                <face v1="1099" v2="1100" v3="1101" />+                <face v1="1099" v2="1102" v3="1100" />+                <face v1="400" v2="1103" v3="1104" />+                <face v1="400" v2="132" v3="1103" />+                <face v1="1105" v2="134" v3="1076" />+                <face v1="1106" v2="134" v3="1105" />+                <face v1="1107" v2="1108" v3="1109" />+                <face v1="1107" v2="1110" v3="1108" />+                <face v1="1111" v2="1112" v3="1113" />+                <face v1="1114" v2="1112" v3="1111" />+                <face v1="1115" v2="1116" v3="1117" />+                <face v1="1115" v2="1118" v3="1116" />+                <face v1="1119" v2="233" v3="1104" />+                <face v1="1119" v2="1120" v3="233" />+                <face v1="1061" v2="1121" v3="1122" />+                <face v1="232" v2="1121" v3="1061" />+                <face v1="1059" v2="235" v3="1123" />+                <face v1="235" v2="1059" v3="234" />+                <face v1="1097" v2="2" v3="1098" />+                <face v1="1097" v2="3" v3="2" />+                <face v1="4" v2="411" v3="1055" />+                <face v1="4" v2="7" v3="411" />+                <face v1="1098" v2="31" v3="33" />+                <face v1="31" v2="1098" v3="1055" />+                <face v1="351" v2="1124" v3="1125" />+                <face v1="1124" v2="351" v3="1009" />+                <face v1="1009" v2="1126" v3="1124" />+                <face v1="1009" v2="1007" v3="1126" />+                <face v1="10" v2="18" v3="1052" />+                <face v1="10" v2="19" v3="18" />+                <face v1="1127" v2="1053" v3="1128" />+                <face v1="1053" v2="1127" v3="1129" />+                <face v1="1130" v2="1131" v3="1132" />+                <face v1="1131" v2="1130" v3="1133" />+                <face v1="1133" v2="1046" v3="1134" />+                <face v1="1133" v2="1130" v3="1046" />+                <face v1="1135" v2="1136" v3="1137" />+                <face v1="1135" v2="1048" v3="1136" />+                <face v1="1096" v2="1138" v3="1139" />+                <face v1="1138" v2="1096" v3="282" />+                <face v1="278" v2="1093" v3="17" />+                <face v1="1093" v2="278" v3="1140" />+                <face v1="269" v2="245" v3="247" />+                <face v1="269" v2="271" v3="245" />+                <face v1="20" v2="1093" v3="18" />+                <face v1="1093" v2="20" v3="15" />+                <face v1="268" v2="1057" v3="263" />+                <face v1="1057" v2="268" v3="1095" />+                <face v1="23" v2="1141" v3="1142" />+                <face v1="1094" v2="1141" v3="23" />+                <face v1="1143" v2="288" v3="290" />+                <face v1="288" v2="1143" v3="1144" />+                <face v1="1145" v2="1146" v3="1147" />+                <face v1="1148" v2="1146" v3="1145" />+                <face v1="1149" v2="1150" v3="1151" />+                <face v1="1149" v2="1152" v3="1150" />+                <face v1="1049" v2="1153" v3="1047" />+                <face v1="1154" v2="1153" v3="1049" />+                <face v1="1155" v2="1156" v3="1157" />+                <face v1="1155" v2="1158" v3="1156" />+                <face v1="1159" v2="278" v3="280" />+                <face v1="278" v2="1159" v3="1140" />+                <face v1="16" v2="19" v3="959" />+                <face v1="16" v2="20" v3="19" />+                <face v1="1160" v2="1161" v3="1162" />+                <face v1="1160" v2="1163" v3="1161" />+                <face v1="1092" v2="246" v3="1164" />+                <face v1="244" v2="246" v3="1092" />+                <face v1="1165" v2="9" v3="29" />+                <face v1="1166" v2="9" v3="1165" />+                <face v1="115" v2="1007" v3="116" />+                <face v1="1007" v2="115" v3="1167" />+                <face v1="1168" v2="1118" v3="1113" />+                <face v1="1169" v2="1118" v3="1168" />+                <face v1="1090" v2="1170" v3="1171" />+                <face v1="347" v2="1170" v3="1090" />+                <face v1="1109" v2="1172" v3="1173" />+                <face v1="1108" v2="1172" v3="1109" />+                <face v1="1088" v2="1174" v3="1175" />+                <face v1="1089" v2="1174" v3="1088" />+                <face v1="135" v2="34" v3="1176" />+                <face v1="135" v2="33" v3="34" />+                <face v1="1170" v2="1177" v3="1169" />+                <face v1="1170" v2="1178" v3="1177" />+                <face v1="1179" v2="1089" v3="1180" />+                <face v1="1089" v2="1179" v3="1174" />+                <face v1="130" v2="133" v3="399" />+                <face v1="133" v2="130" v3="129" />+                <face v1="1181" v2="127" v3="1078" />+                <face v1="1181" v2="42" v3="127" />+                <face v1="1182" v2="1181" v3="1183" />+                <face v1="1182" v2="1184" v3="1181" />+                <face v1="304" v2="1185" v3="1186" />+                <face v1="1187" v2="1185" v3="304" />+                <face v1="75" v2="69" v3="1188" />+                <face v1="69" v2="75" v3="72" />+                <face v1="1189" v2="253" v3="252" />+                <face v1="1189" v2="970" v3="253" />+                <face v1="266" v2="1051" v3="1190" />+                <face v1="1050" v2="1051" v3="266" />+                <face v1="48" v2="994" v3="46" />+                <face v1="48" v2="991" v3="994" />+                <face v1="1191" v2="1085" v3="1192" />+                <face v1="1191" v2="52" v3="1085" />+                <face v1="1085" v2="1193" v3="1194" />+                <face v1="1085" v2="1086" v3="1193" />+                <face v1="51" v2="53" v3="52" />+                <face v1="51" v2="992" v3="53" />+                <face v1="54" v2="1195" v3="1086" />+                <face v1="54" v2="55" v3="1195" />+                <face v1="1196" v2="1195" v3="1197" />+                <face v1="1198" v2="1195" v3="1196" />+                <face v1="1142" v2="57" v3="23" />+                <face v1="1197" v2="57" v3="1142" />+                <face v1="1199" v2="1200" v3="1201" />+                <face v1="1199" v2="1202" v3="1200" />+                <face v1="301" v2="1203" v3="1204" />+                <face v1="301" v2="300" v3="1203" />+                <face v1="1205" v2="1039" v3="328" />+                <face v1="1205" v2="1025" v3="1039" />+                <face v1="1017" v2="307" v3="1033" />+                <face v1="1017" v2="1038" v3="307" />+                <face v1="1206" v2="1187" v3="1207" />+                <face v1="1185" v2="1187" v3="1206" />+                <face v1="103" v2="1208" v3="104" />+                <face v1="103" v2="1209" v3="1208" />+                <face v1="1210" v2="1211" v3="1212" />+                <face v1="1210" v2="1213" v3="1211" />+                <face v1="1212" v2="1036" v3="106" />+                <face v1="1212" v2="1211" v3="1036" />+                <face v1="1082" v2="1214" v3="1215" />+                <face v1="1082" v2="1023" v3="1214" />+                <face v1="1216" v2="1214" v3="382" />+                <face v1="1215" v2="1214" v3="1216" />+                <face v1="1020" v2="113" v3="112" />+                <face v1="113" v2="1020" v3="1217" />+                <face v1="1217" v2="1022" v3="1218" />+                <face v1="1217" v2="1020" v3="1022" />+                <face v1="1027" v2="1218" v3="1022" />+                <face v1="1218" v2="1027" v3="330" />+                <face v1="1029" v2="1219" v3="1220" />+                <face v1="1035" v2="1219" v3="1029" />+                <face v1="1080" v2="971" v3="1011" />+                <face v1="1080" v2="984" v3="971" />+                <face v1="1014" v2="1031" v3="1221" />+                <face v1="1014" v2="1013" v3="1031" />+                <face v1="1191" v2="123" v3="49" />+                <face v1="123" v2="1191" v3="1079" />+                <face v1="1222" v2="1223" v3="1224" />+                <face v1="1222" v2="1192" v3="1223" />+                <face v1="1222" v2="1225" v3="1079" />+                <face v1="1222" v2="1226" v3="1225" />+                <face v1="1227" v2="1077" v3="1228" />+                <face v1="1227" v2="1078" v3="1077" />+                <face v1="403" v2="1229" v3="401" />+                <face v1="1230" v2="1229" v3="403" />+                <face v1="1167" v2="128" v3="1231" />+                <face v1="1010" v2="128" v3="1167" />+                <face v1="1126" v2="1176" v3="34" />+                <face v1="1126" v2="1231" v3="1176" />+                <face v1="1169" v2="1116" v3="1118" />+                <face v1="1177" v2="1116" v3="1169" />+                <face v1="35" v2="1107" v3="1076" />+                <face v1="1175" v2="1107" v3="35" />+                <face v1="1232" v2="1233" v3="1234" />+                <face v1="47" v2="1233" v3="1232" />+                <face v1="1235" v2="1236" v3="1237" />+                <face v1="1235" v2="1238" v3="1236" />+                <face v1="1239" v2="152" v3="1005" />+                <face v1="152" v2="1239" v3="150" />+                <face v1="1240" v2="377" v3="379" />+                <face v1="1240" v2="990" v3="377" />+                <face v1="396" v2="1075" v3="1073" />+                <face v1="396" v2="394" v3="1075" />+                <face v1="1241" v2="989" v3="990" />+                <face v1="1074" v2="989" v3="1241" />+                <face v1="395" v2="374" v3="1242" />+                <face v1="374" v2="395" v3="166" />+                <face v1="1074" v2="163" v3="1073" />+                <face v1="163" v2="1074" v3="162" />+                <face v1="158" v2="1241" v3="1243" />+                <face v1="157" v2="1241" v3="158" />+                <face v1="153" v2="1006" v3="359" />+                <face v1="155" v2="1006" v3="153" />+                <face v1="1244" v2="147" v3="149" />+                <face v1="1244" v2="1072" v3="147" />+                <face v1="177" v2="355" v3="1072" />+                <face v1="177" v2="178" v3="355" />+                <face v1="371" v2="981" v3="1001" />+                <face v1="1245" v2="981" v3="371" />+                <face v1="219" v2="197" v3="213" />+                <face v1="219" v2="360" v3="197" />+                <face v1="361" v2="360" v3="219" />+                <face v1="193" v2="213" v3="195" />+                <face v1="213" v2="193" v3="214" />+                <face v1="978" v2="365" v3="366" />+                <face v1="995" v2="365" v3="978" />+                <face v1="1246" v2="387" v3="1000" />+                <face v1="1246" v2="389" v3="387" />+                <face v1="369" v2="363" v3="364" />+                <face v1="368" v2="363" v3="369" />+                <face v1="1069" v2="998" v3="1070" />+                <face v1="1069" v2="1002" v3="998" />+                <face v1="362" v2="996" v3="1247" />+                <face v1="362" v2="1071" v3="996" />+                <face v1="1248" v2="1249" v3="974" />+                <face v1="1249" v2="1248" v3="1250" />+                <face v1="997" v2="1251" v3="1252" />+                <face v1="997" v2="1253" v3="1251" />+                <face v1="1254" v2="47" v3="1232" />+                <face v1="47" v2="1254" v3="48" />+                <face v1="1255" v2="1237" v3="1236" />+                <face v1="1237" v2="1255" v3="1256" />+                <face v1="201" v2="1257" v3="381" />+                <face v1="201" v2="200" v3="1257" />+                <face v1="48" v2="205" v3="202" />+                <face v1="48" v2="1254" v3="205" />+                <face v1="1258" v2="1256" v3="1255" />+                <face v1="1256" v2="1258" v3="1259" />+                <face v1="1259" v2="209" v3="208" />+                <face v1="1259" v2="1258" v3="209" />+                <face v1="204" v2="988" v3="391" />+                <face v1="204" v2="203" v3="988" />+                <face v1="206" v2="354" v3="378" />+                <face v1="206" v2="207" v3="354" />+                <face v1="226" v2="228" v3="230" />+                <face v1="226" v2="221" v3="228" />+                <face v1="215" v2="1260" v3="216" />+                <face v1="1260" v2="215" v3="1063" />+                <face v1="121" v2="212" v3="119" />+                <face v1="1261" v2="212" v3="121" />+                <face v1="1008" v2="1262" v3="1012" />+                <face v1="1262" v2="1008" v3="353" />+                <face v1="228" v2="1091" v3="231" />+                <face v1="228" v2="1125" v3="1091" />+                <face v1="961" v2="1117" v3="1263" />+                <face v1="1117" v2="961" v3="1115" />+                <face v1="1173" v2="1105" v3="1109" />+                <face v1="1173" v2="1264" v3="1105" />+                <face v1="1103" v2="1265" v3="1266" />+                <face v1="1106" v2="1265" v3="1103" />+                <face v1="1267" v2="1268" v3="1269" />+                <face v1="1270" v2="1268" v3="1267" />+                <face v1="1165" v2="1271" v3="1272" />+                <face v1="1271" v2="1165" v3="1273" />+                <face v1="1269" v2="1274" v3="1267" />+                <face v1="1269" v2="1275" v3="1274" />+                <face v1="1165" v2="1276" v3="1273" />+                <face v1="1165" v2="29" v3="1276" />+                <face v1="1275" v2="236" v3="1274" />+                <face v1="1275" v2="237" v3="236" />+                <face v1="1277" v2="29" v3="30" />+                <face v1="1276" v2="29" v3="1277" />+                <face v1="30" v2="1278" v3="1277" />+                <face v1="30" v2="27" v3="1278" />+                <face v1="240" v2="238" v3="243" />+                <face v1="239" v2="238" v3="240" />+                <face v1="27" v2="1279" v3="1278" />+                <face v1="27" v2="28" v3="1279" />+                <face v1="28" v2="1280" v3="1279" />+                <face v1="28" v2="1092" v3="1280" />+                <face v1="1280" v2="248" v3="404" />+                <face v1="1280" v2="251" v3="248" />+                <face v1="246" v2="13" v3="1162" />+                <face v1="246" v2="245" v3="13" />+                <face v1="249" v2="968" v3="250" />+                <face v1="249" v2="1281" v3="968" />+                <face v1="12" v2="1162" v3="13" />+                <face v1="1162" v2="12" v3="1160" />+                <face v1="965" v2="1281" v3="1163" />+                <face v1="1281" v2="965" v3="1282" />+                <face v1="964" v2="1282" v3="965" />+                <face v1="1282" v2="964" v3="1056" />+                <face v1="259" v2="407" v3="1056" />+                <face v1="407" v2="259" v3="256" />+                <face v1="262" v2="964" v3="295" />+                <face v1="964" v2="262" v3="261" />+                <face v1="258" v2="1054" v3="412" />+                <face v1="258" v2="257" v3="1054" />+                <face v1="1093" v2="1128" v3="18" />+                <face v1="1093" v2="1140" v3="1128" />+                <face v1="1051" v2="1053" v3="1129" />+                <face v1="277" v2="1053" v3="1051" />+                <face v1="1156" v2="1127" v3="1159" />+                <face v1="1127" v2="1156" v3="1132" />+                <face v1="1283" v2="1284" v3="1285" />+                <face v1="1283" v2="1286" v3="1284" />+                <face v1="1287" v2="1131" v3="1133" />+                <face v1="1190" v2="1131" v3="1287" />+                <face v1="1155" v2="1288" v3="1289" />+                <face v1="1157" v2="1288" v3="1155" />+                <face v1="272" v2="1287" v3="1290" />+                <face v1="267" v2="1287" v3="272" />+                <face v1="1130" v2="1049" v3="1046" />+                <face v1="1130" v2="1158" v3="1049" />+                <face v1="1291" v2="1292" v3="1293" />+                <face v1="1291" v2="1294" v3="1292" />+                <face v1="1135" v2="1290" v3="1134" />+                <face v1="1290" v2="1135" v3="1295" />+                <face v1="1296" v2="1153" v3="1154" />+                <face v1="1296" v2="1297" v3="1153" />+                <face v1="1045" v2="270" v3="1295" />+                <face v1="270" v2="1045" v3="11" />+                <face v1="1150" v2="1048" v3="1047" />+                <face v1="1048" v2="1150" v3="1136" />+                <face v1="1298" v2="1299" v3="1300" />+                <face v1="1298" v2="1301" v3="1299" />+                <face v1="1045" v2="1138" v3="1044" />+                <face v1="1045" v2="1137" v3="1138" />+                <face v1="1151" v2="1302" v3="1149" />+                <face v1="1151" v2="1303" v3="1302" />+                <face v1="1043" v2="12" v3="1044" />+                <face v1="12" v2="1043" v3="297" />+                <face v1="1139" v2="1145" v3="1096" />+                <face v1="1139" v2="1152" v3="1145" />+                <face v1="1304" v2="1305" v3="1306" />+                <face v1="1304" v2="1307" v3="1305" />+                <face v1="1148" v2="1308" v3="1146" />+                <face v1="1148" v2="1309" v3="1308" />+                <face v1="1147" v2="1042" v3="283" />+                <face v1="1147" v2="1144" v3="1042" />+                <face v1="1310" v2="1311" v3="414" />+                <face v1="1310" v2="1312" v3="1311" />+                <face v1="1313" v2="286" v3="1042" />+                <face v1="286" v2="1313" v3="1041" />+                <face v1="294" v2="292" v3="224" />+                <face v1="294" v2="1041" v3="292" />+                <face v1="1313" v2="1314" v3="22" />+                <face v1="1313" v2="1143" v3="1314" />+                <face v1="1315" v2="1316" v3="289" />+                <face v1="1315" v2="1317" v3="1316" />+                <face v1="1317" v2="1141" v3="1316" />+                <face v1="1317" v2="1318" v3="1141" />+                <face v1="1037" v2="1025" v3="107" />+                <face v1="1037" v2="1039" v3="1025" />+                <face v1="1211" v2="325" v3="1036" />+                <face v1="1211" v2="324" v3="325" />+                <face v1="103" v2="94" v3="1209" />+                <face v1="103" v2="385" v3="94" />+                <face v1="1038" v2="101" v3="307" />+                <face v1="101" v2="1038" v3="102" />+                <face v1="1319" v2="1202" v3="1199" />+                <face v1="1320" v2="1202" v3="1319" />+                <face v1="309" v2="1207" v3="1187" />+                <face v1="1083" v2="1207" v3="309" />+                <face v1="1321" v2="343" v3="342" />+                <face v1="1084" v2="343" v3="1321" />+                <face v1="126" v2="1206" v3="1201" />+                <face v1="41" v2="1206" v3="126" />+                <face v1="1228" v2="1200" v3="1322" />+                <face v1="1077" v2="1200" v3="1228" />+                <face v1="1031" v2="319" v3="321" />+                <face v1="1031" v2="1030" v3="319" />+                <face v1="117" v2="1323" v3="118" />+                <face v1="117" v2="1324" v3="1323" />+                <face v1="1080" v2="985" v3="984" />+                <face v1="1080" v2="1325" v3="985" />+                <face v1="1035" v2="1028" v3="316" />+                <face v1="1029" v2="1028" v3="1035" />+                <face v1="61" v2="1033" v3="96" />+                <face v1="61" v2="1034" v3="1033" />+                <face v1="1219" v2="1084" v3="1321" />+                <face v1="1219" v2="70" v3="1084" />+                <face v1="339" v2="1090" v3="340" />+                <face v1="339" v2="348" v3="1090" />+                <face v1="1220" v2="1321" v3="1230" />+                <face v1="1220" v2="1219" v3="1321" />+                <face v1="89" v2="1326" v3="87" />+                <face v1="1327" v2="1326" v3="89" />+                <face v1="1326" v2="1032" v3="1024" />+                <face v1="1326" v2="1204" v3="1032" />+                <face v1="1030" v2="1328" v3="319" />+                <face v1="1030" v2="1203" v3="1328" />+                <face v1="328" v2="322" v3="1205" />+                <face v1="322" v2="328" v3="315" />+                <face v1="382" v2="1081" v3="383" />+                <face v1="382" v2="1214" v3="1081" />+                <face v1="1021" v2="112" v3="1329" />+                <face v1="1021" v2="1020" v3="112" />+                <face v1="317" v2="1022" v3="1019" />+                <face v1="317" v2="1027" v3="1022" />+                <face v1="1217" v2="1330" v3="113" />+                <face v1="1330" v2="1217" v3="1331" />+                <face v1="1216" v2="1332" v3="1215" />+                <face v1="1332" v2="1216" v3="1333" />+                <face v1="1082" v2="1016" v3="1018" />+                <face v1="1016" v2="1082" v3="1334" />+                <face v1="45" v2="82" v3="339" />+                <face v1="44" v2="82" v3="45" />+                <face v1="80" v2="335" v3="78" />+                <face v1="335" v2="80" v3="336" />+                <face v1="76" v2="337" v3="345" />+                <face v1="337" v2="76" v3="338" />+                <face v1="344" v2="74" v3="73" />+                <face v1="74" v2="344" v3="332" />+                <face v1="1335" v2="1188" v3="66" />+                <face v1="1335" v2="75" v3="1188" />+                <face v1="64" v2="67" v3="65" />+                <face v1="67" v2="64" v3="1034" />+                <face v1="1336" v2="81" v3="83" />+                <face v1="1337" v2="81" v3="1336" />+                <face v1="79" v2="84" v3="86" />+                <face v1="79" v2="77" v3="84" />+                <face v1="1015" v2="75" v3="1335" />+                <face v1="1015" v2="73" v3="75" />+                <face v1="1225" v2="1228" v3="312" />+                <face v1="1228" v2="1225" v3="1227" />+                <face v1="1226" v2="1227" v3="1225" />+                <face v1="1227" v2="1226" v3="1183" />+                <face v1="1338" v2="94" v3="93" />+                <face v1="1338" v2="1339" v3="94" />+                <face v1="1208" v2="1213" v3="1210" />+                <face v1="1209" v2="1213" v3="1208" />+                <face v1="176" v2="1234" v3="1233" />+                <face v1="175" v2="1234" v3="176" />+                <face v1="149" v2="1235" v3="1244" />+                <face v1="149" v2="1238" v3="1235" />+                <face v1="1233" v2="1340" v3="176" />+                <face v1="1233" v2="138" v3="1340" />+                <face v1="321" v2="1221" v3="1031" />+                <face v1="321" v2="122" v3="1221" />+                <face v1="1014" v2="50" v3="49" />+                <face v1="1014" v2="137" v3="50" />+                <face v1="121" v2="323" v3="1012" />+                <face v1="121" v2="120" v3="323" />+                <face v1="972" v2="1230" v3="403" />+                <face v1="1220" v2="1230" v3="972" />+                <face v1="115" v2="1010" v3="1167" />+                <face v1="1011" v2="1010" v3="115" />+                <face v1="1240" v2="1006" v3="1243" />+                <face v1="1240" v2="1004" v3="1006" />+                <face v1="380" v2="1005" v3="1004" />+                <face v1="380" v2="381" v3="1005" />+                <face v1="1262" v2="1063" v3="1261" />+                <face v1="1262" v2="1260" v3="1063" />+                <face v1="212" v2="1064" v3="174" />+                <face v1="1064" v2="212" v3="1062" />+                <face v1="1341" v2="1251" v3="1253" />+                <face v1="370" v2="1251" v3="1341" />+                <face v1="1002" v2="982" v3="168" />+                <face v1="1069" v2="982" v3="1002" />+                <face v1="161" v2="183" v3="164" />+                <face v1="183" v2="161" v3="180" />+                <face v1="1001" v2="387" v3="390" />+                <face v1="387" v2="1001" v3="1000" />+                <face v1="980" v2="995" v3="978" />+                <face v1="980" v2="357" v3="995" />+                <face v1="1342" v2="198" v3="1247" />+                <face v1="198" v2="1342" v3="196" />+                <face v1="1250" v2="192" v3="194" />+                <face v1="1250" v2="1343" v3="192" />+                <face v1="1344" v2="185" v3="1345" />+                <face v1="185" v2="1344" v3="187" />+                <face v1="188" v2="389" v3="1246" />+                <face v1="190" v2="389" v3="188" />+                <face v1="1252" v2="182" v3="181" />+                <face v1="1251" v2="182" v3="1252" />+                <face v1="998" v2="1341" v3="1070" />+                <face v1="1341" v2="998" v3="999" />+                <face v1="997" v2="1071" v3="1253" />+                <face v1="997" v2="996" v3="1071" />+                <face v1="191" v2="974" v3="189" />+                <face v1="191" v2="1248" v3="974" />+                <face v1="356" v2="156" v3="154" />+                <face v1="1346" v2="156" v3="356" />+                <face v1="179" v2="995" v3="178" />+                <face v1="373" v2="995" v3="179" />+                <face v1="1065" v2="21" v3="58" />+                <face v1="1065" v2="1066" v3="21" />+                <face v1="1242" v2="222" v3="223" />+                <face v1="1242" v2="374" v3="222" />+                <face v1="56" v2="1065" v3="58" />+                <face v1="1065" v2="56" v3="1067" />+                <face v1="989" v2="141" v3="140" />+                <face v1="1075" v2="141" v3="989" />+                <face v1="1314" v2="1094" v3="22" />+                <face v1="1094" v2="1314" v3="1347" />+                <face v1="143" v2="1066" v3="391" />+                <face v1="146" v2="1066" v3="143" />+                <face v1="988" v2="139" v3="142" />+                <face v1="988" v2="210" v3="139" />+                <face v1="985" v2="383" v3="986" />+                <face v1="384" v2="383" v3="985" />+                <face v1="984" v2="972" v3="971" />+                <face v1="984" v2="987" v3="972" />+                <face v1="227" v2="218" v3="217" />+                <face v1="227" v2="169" v3="218" />+                <face v1="1343" v2="1068" v3="192" />+                <face v1="1068" v2="1343" v3="1348" />+                <face v1="1349" v2="1344" v3="1350" />+                <face v1="1349" v2="187" v3="1344" />+                <face v1="979" v2="366" v3="1351" />+                <face v1="979" v2="978" v3="366" />+                <face v1="980" v2="1245" v3="1346" />+                <face v1="1245" v2="980" v3="981" />+                <face v1="1352" v2="187" v3="1349" />+                <face v1="1352" v2="186" v3="187" />+                <face v1="193" v2="1068" v3="1003" />+                <face v1="193" v2="192" v3="1068" />+                <face v1="974" v2="1342" v3="975" />+                <face v1="1249" v2="1342" v3="974" />+                <face v1="190" v2="976" v3="1353" />+                <face v1="190" v2="189" v3="976" />+                <face v1="340" v2="1171" v3="1180" />+                <face v1="340" v2="1090" v3="1171" />+                <face v1="1088" v2="1229" v3="342" />+                <face v1="1088" v2="37" v3="1229" />+                <face v1="1275" v2="1354" v3="1355" />+                <face v1="1275" v2="1269" v3="1354" />+                <face v1="238" v2="1356" v3="1357" />+                <face v1="238" v2="237" v3="1356" />+                <face v1="969" v2="248" v3="250" />+                <face v1="969" v2="1087" v3="248" />+                <face v1="1358" v2="970" v3="968" />+                <face v1="1358" v2="253" v3="970" />+                <face v1="1359" v2="1270" v3="1267" />+                <face v1="1360" v2="1270" v3="1359" />+                <face v1="966" v2="1274" v3="236" />+                <face v1="1361" v2="1274" v3="966" />+                <face v1="1362" v2="239" v3="240" />+                <face v1="967" v2="239" v3="1362" />+                <face v1="1189" v2="1363" v3="1364" />+                <face v1="1363" v2="1189" v3="1365" />+                <face v1="1179" v2="1113" v3="1112" />+                <face v1="1179" v2="1168" v3="1113" />+                <face v1="347" v2="1178" v3="1170" />+                <face v1="1178" v2="347" v3="349" />+                <face v1="962" v2="1263" v3="1366" />+                <face v1="1263" v2="962" v3="961" />+                <face v1="1367" v2="960" v3="1368" />+                <face v1="963" v2="960" v3="1367" />+                <face v1="1369" v2="1173" v3="1172" />+                <face v1="1370" v2="1173" v3="1369" />+                <face v1="1371" v2="1265" v3="1264" />+                <face v1="1371" v2="1372" v3="1265" />+                <face v1="1373" v2="1119" v3="1266" />+                <face v1="1373" v2="1374" v3="1119" />+                <face v1="1121" v2="1375" v3="1376" />+                <face v1="1120" v2="1375" v3="1121" />+                <face v1="1122" v2="1377" v3="1123" />+                <face v1="1122" v2="1378" v3="1377" />+                <face v1="279" v2="274" v3="1285" />+                <face v1="281" v2="274" v3="279" />+                <face v1="1289" v2="1284" v3="1291" />+                <face v1="1288" v2="1284" v3="1289" />+                <face v1="1296" v2="1298" v3="1297" />+                <face v1="1296" v2="1293" v3="1298" />+                <face v1="1303" v2="1304" v3="1302" />+                <face v1="1303" v2="1300" v3="1304" />+                <face v1="1310" v2="1309" v3="1306" />+                <face v1="1309" v2="1310" v3="1308" />+                <face v1="1379" v2="1380" v3="1381" />+                <face v1="1379" v2="1100" v3="1380" />+                <face v1="1382" v2="831" v3="1383" />+                <face v1="1382" v2="522" v3="831" />+                <face v1="1384" v2="520" v3="1385" />+                <face v1="1384" v2="1386" v3="520" />+                <face v1="1387" v2="1388" v3="1389" />+                <face v1="1387" v2="1390" v3="1388" />+                <face v1="1391" v2="1392" v3="1393" />+                <face v1="1391" v2="1394" v3="1392" />+                <face v1="1395" v2="416" v3="925" />+                <face v1="1395" v2="417" v3="416" />+                <face v1="1396" v2="612" v3="1397" />+                <face v1="612" v2="1396" v3="892" />+                <face v1="476" v2="1398" v3="1399" />+                <face v1="475" v2="1398" v3="476" />+                <face v1="415" v2="613" v3="615" />+                <face v1="417" v2="613" v3="415" />+                <face v1="626" v2="957" v3="1395" />+                <face v1="626" v2="956" v3="957" />+                <face v1="956" v2="958" v3="957" />+                <face v1="955" v2="958" v3="956" />+                <face v1="955" v2="1400" v3="958" />+                <face v1="454" v2="1401" v3="455" />+                <face v1="1402" v2="1401" v3="454" />+                <face v1="726" v2="846" v3="847" />+                <face v1="719" v2="846" v3="726" />+                <face v1="951" v2="1402" v3="454" />+                <face v1="951" v2="1403" v3="1402" />+                <face v1="1404" v2="1405" v3="1406" />+                <face v1="1404" v2="953" v3="1405" />+                <face v1="1407" v2="1408" v3="1409" />+                <face v1="1407" v2="1410" v3="1408" />+                <face v1="1411" v2="1412" v3="1413" />+                <face v1="1414" v2="1412" v3="1411" />+                <face v1="1415" v2="1416" v3="1417" />+                <face v1="1415" v2="1418" v3="1416" />+                <face v1="1419" v2="422" v3="821" />+                <face v1="1419" v2="423" v3="422" />+                <face v1="954" v2="630" v3="1420" />+                <face v1="954" v2="631" v3="630" />+                <face v1="1405" v2="435" v3="434" />+                <face v1="421" v2="435" v3="1405" />+                <face v1="820" v2="1421" v3="821" />+                <face v1="1421" v2="820" v3="273" />+                <face v1="1422" v2="1318" v3="1423" />+                <face v1="1422" v2="1424" v3="1318" />+                <face v1="877" v2="1425" v3="1426" />+                <face v1="1427" v2="1425" v3="877" />+                <face v1="878" v2="1428" v3="1429" />+                <face v1="1428" v2="878" v3="1430" />+                <face v1="1431" v2="637" v3="639" />+                <face v1="1431" v2="1432" v3="637" />+                <face v1="1433" v2="1434" v3="1435" />+                <face v1="1433" v2="1436" v3="1434" />+                <face v1="1437" v2="1438" v3="1439" />+                <face v1="1437" v2="1440" v3="1438" />+                <face v1="1441" v2="879" v3="1442" />+                <face v1="1441" v2="1443" v3="879" />+                <face v1="814" v2="1444" v3="812" />+                <face v1="1444" v2="814" v3="1445" />+                <face v1="1446" v2="1447" v3="1448" />+                <face v1="1446" v2="1449" v3="1447" />+                <face v1="1419" v2="1272" v3="1450" />+                <face v1="1272" v2="1419" v3="1451" />+                <face v1="1393" v2="816" v3="818" />+                <face v1="1392" v2="816" v3="1393" />+                <face v1="1452" v2="1453" v3="1454" />+                <face v1="1453" v2="1452" v3="1455" />+                <face v1="1388" v2="1456" v3="1386" />+                <face v1="1456" v2="1388" v3="1457" />+                <face v1="524" v2="1458" v3="525" />+                <face v1="926" v2="1458" v3="524" />+                <face v1="1454" v2="1459" v3="1460" />+                <face v1="1453" v2="1459" v3="1454" />+                <face v1="1456" v2="950" v3="521" />+                <face v1="1456" v2="461" v3="950" />+                <face v1="473" v2="1184" v3="1461" />+                <face v1="473" v2="39" v3="1184" />+                <face v1="869" v2="516" v3="515" />+                <face v1="516" v2="869" v3="1462" />+                <face v1="940" v2="942" v3="1463" />+                <face v1="940" v2="943" v3="942" />+                <face v1="945" v2="851" v3="933" />+                <face v1="1464" v2="851" v3="945" />+                <face v1="1408" v2="1465" v3="1409" />+                <face v1="1465" v2="1408" v3="632" />+                <face v1="763" v2="923" v3="761" />+                <face v1="921" v2="923" v3="763" />+                <face v1="1223" v2="481" v3="1466" />+                <face v1="1194" v2="481" v3="1223" />+                <face v1="482" v2="718" v3="1467" />+                <face v1="482" v2="949" v3="718" />+                <face v1="1198" v2="479" v3="1193" />+                <face v1="1198" v2="1468" v3="479" />+                <face v1="485" v2="1469" v3="487" />+                <face v1="1469" v2="485" v3="1468" />+                <face v1="1469" v2="1424" v3="1422" />+                <face v1="1424" v2="1469" v3="1196" />+                <face v1="673" v2="946" v3="681" />+                <face v1="673" v2="944" v3="946" />+                <face v1="85" v2="946" v3="933" />+                <face v1="946" v2="85" v3="62" />+                <face v1="1470" v2="868" v3="943" />+                <face v1="868" v2="1470" v3="947" />+                <face v1="939" v2="1463" v3="854" />+                <face v1="939" v2="940" v3="1463" />+                <face v1="716" v2="938" v3="852" />+                <face v1="938" v2="716" v3="715" />+                <face v1="935" v2="853" v3="937" />+                <face v1="935" v2="936" v3="853" />+                <face v1="856" v2="934" v3="857" />+                <face v1="856" v2="460" v3="934" />+                <face v1="1471" v2="1472" v3="1206" />+                <face v1="1471" v2="1473" v3="1472" />+                <face v1="1474" v2="1475" v3="1476" />+                <face v1="1475" v2="1474" v3="1477" />+                <face v1="1478" v2="1479" v3="1480" />+                <face v1="1479" v2="1478" v3="874" />+                <face v1="651" v2="1481" v3="1482" />+                <face v1="651" v2="653" v3="1481" />+                <face v1="693" v2="655" v3="657" />+                <face v1="859" v2="655" v3="693" />+                <face v1="1483" v2="685" v3="1484" />+                <face v1="1483" v2="1485" v3="685" />+                <face v1="773" v2="659" v3="661" />+                <face v1="773" v2="699" v3="659" />+                <face v1="674" v2="870" v3="871" />+                <face v1="680" v2="870" v3="674" />+                <face v1="1186" v2="872" v3="98" />+                <face v1="1186" v2="873" v3="872" />+                <face v1="1486" v2="493" v3="492" />+                <face v1="1486" v2="1487" v3="493" />+                <face v1="1488" v2="875" v3="1489" />+                <face v1="1488" v2="1490" v3="875" />+                <face v1="862" v2="1489" v3="875" />+                <face v1="862" v2="495" v3="1489" />+                <face v1="678" v2="504" v3="836" />+                <face v1="678" v2="505" v3="504" />+                <face v1="506" v2="1491" v3="509" />+                <face v1="695" v2="1491" v3="506" />+                <face v1="695" v2="1492" v3="1491" />+                <face v1="697" v2="1492" v3="695" />+                <face v1="697" v2="867" v3="1492" />+                <face v1="866" v2="867" v3="697" />+                <face v1="1493" v2="679" v3="795" />+                <face v1="679" v2="1493" v3="677" />+                <face v1="720" v2="929" v3="687" />+                <face v1="720" v2="721" v3="929" />+                <face v1="1494" v2="928" v3="1495" />+                <face v1="1494" v2="895" v3="928" />+                <face v1="718" v2="669" v3="514" />+                <face v1="718" v2="667" v3="669" />+                <face v1="516" v2="1466" v3="1467" />+                <face v1="1496" v2="1466" v3="516" />+                <face v1="1497" v2="1224" v3="1496" />+                <face v1="1497" v2="1498" v3="1224" />+                <face v1="518" v2="1499" v3="1500" />+                <face v1="518" v2="1461" v3="1499" />+                <face v1="464" v2="1501" v3="1502" />+                <face v1="1501" v2="464" v3="1503" />+                <face v1="793" v2="724" v3="927" />+                <face v1="793" v2="722" v3="724" />+                <face v1="1504" v2="725" v3="1403" />+                <face v1="725" v2="1504" v3="1505" />+                <face v1="926" v2="1504" v3="1458" />+                <face v1="926" v2="927" v3="1504" />+                <face v1="950" v2="794" v3="466" />+                <face v1="950" v2="1502" v3="794" />+                <face v1="1390" v2="1457" v3="1388" />+                <face v1="1457" v2="1390" v3="1460" />+                <face v1="922" v2="1495" v3="717" />+                <face v1="1495" v2="922" v3="1494" />+                <face v1="924" v2="919" v3="918" />+                <face v1="919" v2="924" v3="921" />+                <face v1="1506" v2="920" v3="917" />+                <face v1="1506" v2="1507" v3="920" />+                <face v1="1508" v2="1509" v3="1510" />+                <face v1="1511" v2="1509" v3="1508" />+                <face v1="728" v2="1512" v3="1513" />+                <face v1="728" v2="839" v3="1512" />+                <face v1="764" v2="916" v3="765" />+                <face v1="916" v2="764" v3="1514" />+                <face v1="1515" v2="790" v3="840" />+                <face v1="789" v2="790" v3="1515" />+                <face v1="1516" v2="764" v3="538" />+                <face v1="1516" v2="1513" v3="764" />+                <face v1="1516" v2="779" v3="546" />+                <face v1="779" v2="1516" v3="915" />+                <face v1="915" v2="780" v3="779" />+                <face v1="915" v2="844" v3="780" />+                <face v1="913" v2="548" v3="558" />+                <face v1="548" v2="913" v3="1517" />+                <face v1="1518" v2="756" v3="754" />+                <face v1="1518" v2="777" v3="756" />+                <face v1="785" v2="843" v3="536" />+                <face v1="785" v2="742" v3="843" />+                <face v1="738" v2="537" v3="535" />+                <face v1="738" v2="739" v3="537" />+                <face v1="736" v2="792" v3="841" />+                <face v1="736" v2="737" v3="792" />+                <face v1="592" v2="573" v3="903" />+                <face v1="591" v2="573" v3="592" />+                <face v1="896" v2="914" v3="557" />+                <face v1="1519" v2="914" v3="896" />+                <face v1="1520" v2="842" v3="757" />+                <face v1="1521" v2="842" v3="1520" />+                <face v1="743" v2="1522" v3="741" />+                <face v1="743" v2="1523" v3="1522" />+                <face v1="735" v2="746" v3="733" />+                <face v1="746" v2="735" v3="747" />+                <face v1="912" v2="751" v3="750" />+                <face v1="1524" v2="751" v3="912" />+                <face v1="1525" v2="1526" v3="1527" />+                <face v1="1525" v2="1528" v3="1526" />+                <face v1="907" v2="1529" v3="1530" />+                <face v1="907" v2="906" v3="1529" />+                <face v1="749" v2="1531" v3="1532" />+                <face v1="749" v2="752" v3="1531" />+                <face v1="1533" v2="917" v3="1534" />+                <face v1="1533" v2="1506" v3="917" />+                <face v1="902" v2="1510" v3="1535" />+                <face v1="902" v2="1508" v3="1510" />+                <face v1="1534" v2="584" v3="1533" />+                <face v1="585" v2="584" v3="1534" />+                <face v1="729" v2="1535" v3="1536" />+                <face v1="729" v2="902" v3="1535" />+                <face v1="901" v2="579" v3="1537" />+                <face v1="901" v2="580" v3="579" />+                <face v1="1536" v2="900" v3="729" />+                <face v1="898" v2="900" v3="1536" />+                <face v1="766" v2="1537" v3="1538" />+                <face v1="766" v2="901" v3="1537" />+                <face v1="1539" v2="898" v3="899" />+                <face v1="1539" v2="900" v3="898" />+                <face v1="896" v2="1494" v3="1519" />+                <face v1="896" v2="895" v3="1494" />+                <face v1="893" v2="554" v3="549" />+                <face v1="893" v2="589" v3="554" />+                <face v1="776" v2="893" v3="774" />+                <face v1="1540" v2="893" v3="776" />+                <face v1="1401" v2="775" v3="604" />+                <face v1="1401" v2="847" v3="775" />+                <face v1="456" v2="611" v3="610" />+                <face v1="456" v2="455" v3="611" />+                <face v1="1541" v2="1389" v3="1542" />+                <face v1="1389" v2="1541" v3="1387" />+                <face v1="1382" v2="1543" v3="1385" />+                <face v1="1382" v2="1544" v3="1543" />+                <face v1="1545" v2="416" v3="892" />+                <face v1="1545" v2="523" v3="416" />+                <face v1="1271" v2="1546" v3="1547" />+                <face v1="1546" v2="1271" v3="1548" />+                <face v1="821" v2="1451" v3="1419" />+                <face v1="821" v2="1421" v3="1451" />+                <face v1="1547" v2="1549" v3="1550" />+                <face v1="1549" v2="1547" v3="1546" />+                <face v1="1550" v2="1551" v3="1552" />+                <face v1="1551" v2="1550" v3="1549" />+                <face v1="1552" v2="1553" v3="1554" />+                <face v1="1553" v2="1552" v3="1551" />+                <face v1="829" v2="1554" v3="1553" />+                <face v1="829" v2="1555" v3="1554" />+                <face v1="429" v2="448" v3="445" />+                <face v1="429" v2="433" v3="448" />+                <face v1="797" v2="1555" v3="829" />+                <face v1="797" v2="1556" v3="1555" />+                <face v1="430" v2="445" v3="446" />+                <face v1="430" v2="429" v3="445" />+                <face v1="444" v2="889" v3="1446" />+                <face v1="889" v2="444" v3="1556" />+                <face v1="622" v2="472" v3="469" />+                <face v1="621" v2="472" v3="622" />+                <face v1="1446" v2="888" v3="1449" />+                <face v1="888" v2="1446" v3="889" />+                <face v1="1557" v2="1449" v3="888" />+                <face v1="1557" v2="1444" v3="1449" />+                <face v1="800" v2="1558" v3="1557" />+                <face v1="1558" v2="800" v3="1559" />+                <face v1="642" v2="1445" v3="814" />+                <face v1="642" v2="634" v3="1445" />+                <face v1="1559" v2="886" v3="1558" />+                <face v1="828" v2="886" v3="1559" />+                <face v1="810" v2="803" v3="827" />+                <face v1="803" v2="810" v3="418" />+                <face v1="886" v2="623" v3="813" />+                <face v1="624" v2="623" v3="886" />+                <face v1="418" v2="627" v3="803" />+                <face v1="420" v2="627" v3="418" />+                <face v1="432" v2="885" v3="431" />+                <face v1="432" v2="884" v3="885" />+                <face v1="442" v2="880" v3="819" />+                <face v1="442" v2="881" v3="880" />+                <face v1="434" v2="1406" v3="1405" />+                <face v1="633" v2="1406" v3="434" />+                <face v1="1442" v2="1404" v3="1410" />+                <face v1="1442" v2="1560" v3="1404" />+                <face v1="276" v2="1561" v3="1283" />+                <face v1="1561" v2="276" v3="883" />+                <face v1="882" v2="1443" v3="1562" />+                <face v1="1443" v2="882" v3="879" />+                <face v1="1465" v2="885" v3="1563" />+                <face v1="885" v2="1465" v3="477" />+                <face v1="1437" v2="1407" v3="1564" />+                <face v1="1437" v2="1441" v3="1407" />+                <face v1="1286" v2="1565" v3="1294" />+                <face v1="1565" v2="1286" v3="1566" />+                <face v1="1411" v2="1563" v3="1567" />+                <face v1="1411" v2="1568" v3="1563" />+                <face v1="1569" v2="1438" v3="1570" />+                <face v1="1438" v2="1569" v3="1439" />+                <face v1="884" v2="1571" v3="1567" />+                <face v1="629" v2="1571" v3="884" />+                <face v1="1433" v2="1413" v3="1412" />+                <face v1="1433" v2="1440" v3="1413" />+                <face v1="1301" v2="1572" v3="1573" />+                <face v1="1301" v2="1292" v3="1572" />+                <face v1="1571" v2="1416" v3="1414" />+                <face v1="636" v2="1416" v3="1571" />+                <face v1="1435" v2="1574" v3="1575" />+                <face v1="1434" v2="1574" v3="1435" />+                <face v1="1431" v2="1418" v3="1415" />+                <face v1="1431" v2="1436" v3="1418" />+                <face v1="1307" v2="1576" v3="1577" />+                <face v1="1307" v2="1578" v3="1576" />+                <face v1="635" v2="424" v3="1417" />+                <face v1="425" v2="424" v3="635" />+                <face v1="1432" v2="427" v3="1428" />+                <face v1="427" v2="1432" v3="428" />+                <face v1="1312" v2="1579" v3="1580" />+                <face v1="1312" v2="1305" v3="1579" />+                <face v1="1430" v2="823" v3="1581" />+                <face v1="878" v2="823" v3="1430" />+                <face v1="1427" v2="643" v3="1582" />+                <face v1="1427" v2="1429" v3="643" />+                <face v1="1315" v2="822" v3="824" />+                <face v1="1315" v2="1311" v3="822" />+                <face v1="1582" v2="649" v3="439" />+                <face v1="649" v2="1582" v3="645" />+                <face v1="824" v2="1426" v3="1583" />+                <face v1="1426" v2="824" v3="877" />+                <face v1="1583" v2="438" v3="1423" />+                <face v1="438" v2="1583" v3="1426" />+                <face v1="949" v2="761" v3="923" />+                <face v1="762" v2="761" v3="949" />+                <face v1="874" v2="861" v3="1479" />+                <face v1="496" v2="861" v3="874" />+                <face v1="1485" v2="1584" v3="1585" />+                <face v1="1485" v2="1483" v3="1584" />+                <face v1="491" v2="1473" v3="492" />+                <face v1="491" v2="1472" v3="1473" />+                <face v1="1476" v2="1486" v3="1474" />+                <face v1="1486" v2="1476" v3="1490" />+                <face v1="1586" v2="664" v3="873" />+                <face v1="664" v2="1586" v3="490" />+                <face v1="665" v2="870" v3="872" />+                <face v1="663" v2="870" v3="665" />+                <face v1="463" v2="711" v3="710" />+                <face v1="463" v2="855" v3="711" />+                <face v1="1471" v2="519" v3="1477" />+                <face v1="519" v2="1471" v3="517" />+                <face v1="1492" v2="687" v3="929" />+                <face v1="1492" v2="867" v3="687" />+                <face v1="509" v2="510" v3="512" />+                <face v1="509" v2="1491" v3="510" />+                <face v1="868" v2="694" v3="501" />+                <face v1="868" v2="948" v3="694" />+                <face v1="670" v2="942" v3="671" />+                <face v1="1587" v2="942" v3="670" />+                <face v1="499" v2="674" v3="699" />+                <face v1="498" v2="674" v3="499" />+                <face v1="498" v2="672" v3="674" />+                <face v1="690" v2="1482" v3="932" />+                <face v1="690" v2="651" v3="1482" />+                <face v1="1479" v2="862" v3="876" />+                <face v1="1479" v2="861" v3="862" />+                <face v1="666" v2="848" v3="691" />+                <face v1="666" v2="1480" v3="848" />+                <face v1="675" v2="1478" v3="668" />+                <face v1="675" v2="1481" v3="1478" />+                <face v1="865" v2="932" v3="1482" />+                <face v1="689" v2="932" v3="865" />+                <face v1="502" v2="860" v3="504" />+                <face v1="502" v2="497" v3="860" />+                <face v1="506" v2="770" v3="1588" />+                <face v1="508" v2="770" v3="506" />+                <face v1="866" v2="683" v3="692" />+                <face v1="683" v2="866" v3="684" />+                <face v1="1589" v2="1590" v3="1591" />+                <face v1="1592" v2="1590" v3="1589" />+                <face v1="1593" v2="1594" v3="769" />+                <face v1="1595" v2="1594" v3="1593" />+                <face v1="1596" v2="930" v3="500" />+                <face v1="1597" v2="930" v3="1596" />+                <face v1="1590" v2="858" v3="682" />+                <face v1="858" v2="1590" v3="1592" />+                <face v1="935" v2="705" v3="857" />+                <face v1="705" v2="935" v3="706" />+                <face v1="709" v2="937" v3="938" />+                <face v1="708" v2="937" v3="709" />+                <face v1="702" v2="854" v3="712" />+                <face v1="702" v2="939" v3="854" />+                <face v1="947" v2="945" v3="944" />+                <face v1="947" v2="1470" v3="945" />+                <face v1="672" v2="948" v3="673" />+                <face v1="672" v2="694" v3="948" />+                <face v1="934" v2="350" v3="1337" />+                <face v1="934" v2="460" v3="350" />+                <face v1="853" v2="1336" v3="86" />+                <face v1="853" v2="936" v3="1336" />+                <face v1="1464" v2="852" v3="851" />+                <face v1="1464" v2="716" v3="852" />+                <face v1="1475" v2="869" v3="850" />+                <face v1="1475" v2="1598" v3="869" />+                <face v1="1490" v2="849" v3="875" />+                <face v1="1476" v2="849" v3="1490" />+                <face v1="1499" v2="1498" v3="1497" />+                <face v1="1499" v2="1182" v3="1498" />+                <face v1="1483" v2="1599" v3="1584" />+                <face v1="1599" v2="1483" v3="835" />+                <face v1="1487" v2="1490" v3="1488" />+                <face v1="1486" v2="1490" v3="1487" />+                <face v1="1476" v2="850" v3="849" />+                <face v1="1475" v2="850" v3="1476" />+                <face v1="920" v2="1517" v3="913" />+                <face v1="920" v2="1507" v3="1517" />+                <face v1="1511" v2="1600" v3="1509" />+                <face v1="1511" v2="544" v3="1600" />+                <face v1="1494" v2="924" v3="1519" />+                <face v1="1494" v2="922" v3="924" />+                <face v1="686" v2="928" v3="863" />+                <face v1="864" v2="928" v3="686" />+                <face v1="837" v2="1511" v3="1508" />+                <face v1="837" v2="727" v3="1511" />+                <face v1="897" v2="573" v3="591" />+                <face v1="897" v2="556" v3="573" />+                <face v1="1540" v2="846" v3="606" />+                <face v1="1540" v2="776" v3="846" />+                <face v1="590" v2="608" v3="894" />+                <face v1="590" v2="605" v3="608" />+                <face v1="1521" v2="1601" v3="842" />+                <face v1="1601" v2="1521" v3="1602" />+                <face v1="845" v2="748" v3="1603" />+                <face v1="748" v2="845" v3="745" />+                <face v1="912" v2="578" v3="577" />+                <face v1="912" v2="570" v3="578" />+                <face v1="576" v2="1527" v3="1604" />+                <face v1="575" v2="1527" v3="576" />+                <face v1="572" v2="842" v3="1601" />+                <face v1="574" v2="842" v3="572" />+                <face v1="910" v2="1521" v3="1520" />+                <face v1="909" v2="1521" v3="910" />+                <face v1="1523" v2="1530" v3="1522" />+                <face v1="1530" v2="1523" v3="907" />+                <face v1="1532" v2="562" v3="561" />+                <face v1="1531" v2="562" v3="1532" />+                <face v1="564" v2="1605" v3="565" />+                <face v1="1605" v2="564" v3="845" />+                <face v1="1606" v2="568" v3="571" />+                <face v1="1603" v2="568" v3="1606" />+                <face v1="1528" v2="906" v3="1526" />+                <face v1="906" v2="1528" v3="1529" />+                <face v1="844" v2="1607" v3="780" />+                <face v1="1607" v2="844" v3="843" />+                <face v1="597" v2="840" v3="648" />+                <face v1="597" v2="1515" v3="840" />+                <face v1="579" v2="484" v3="483" />+                <face v1="581" v2="484" v3="579" />+                <face v1="648" v2="759" v3="647" />+                <face v1="840" v2="759" v3="648" />+                <face v1="527" v2="791" v3="532" />+                <face v1="527" v2="529" v3="791" />+                <face v1="758" v2="1538" v3="488" />+                <face v1="760" v2="1538" v3="758" />+                <face v1="1514" v2="588" v3="916" />+                <face v1="1514" v2="899" v3="588" />+                <face v1="839" v2="1539" v3="1512" />+                <face v1="839" v2="838" v3="1539" />+                <face v1="1608" v2="769" v3="768" />+                <face v1="1608" v2="1593" v3="769" />+                <face v1="1528" v2="1601" v3="1602" />+                <face v1="1528" v2="1525" v3="1601" />+                <face v1="1522" v2="908" v3="1609" />+                <face v1="1530" v2="908" v3="1522" />+                <face v1="1518" v2="780" v3="1607" />+                <face v1="1518" v2="781" v3="780" />+                <face v1="1604" v2="786" v3="576" />+                <face v1="1604" v2="1524" v3="786" />+                <face v1="1531" v2="834" v3="562" />+                <face v1="1531" v2="905" v3="834" />+                <face v1="1545" v2="1610" v3="1383" />+                <face v1="1545" v2="1611" v3="1610" />+                <face v1="1459" v2="463" v3="462" />+                <face v1="463" v2="1459" v3="855" />+                <face v1="1548" v2="1612" v3="1546" />+                <face v1="1548" v2="1268" v3="1612" />+                <face v1="1549" v2="1613" v3="1551" />+                <face v1="1549" v2="1614" v3="1613" />+                <face v1="830" v2="1553" v3="891" />+                <face v1="1553" v2="830" v3="829" />+                <face v1="887" v2="828" v3="1559" />+                <face v1="887" v2="827" v3="828" />+                <face v1="1615" v2="1616" v3="1617" />+                <face v1="1615" v2="1618" v3="1616" />+                <face v1="890" v2="826" v3="471" />+                <face v1="826" v2="890" v3="1619" />+                <face v1="825" v2="832" v3="619" />+                <face v1="833" v2="832" v3="825" />+                <face v1="1392" v2="1541" v3="816" />+                <face v1="1387" v2="1541" v3="1392" />+                <face v1="1542" v2="1620" v3="1541" />+                <face v1="1542" v2="1621" v3="1620" />+                <face v1="1543" v2="1622" v3="1623" />+                <face v1="1543" v2="1624" v3="1622" />+                <face v1="1610" v2="1625" v3="1544" />+                <face v1="1610" v2="1626" v3="1625" />+                <face v1="1396" v2="1627" v3="1611" />+                <face v1="1396" v2="1628" v3="1627" />+                <face v1="1399" v2="1629" v3="1397" />+                <face v1="1399" v2="1630" v3="1629" />+                <face v1="1398" v2="616" v3="1631" />+                <face v1="615" v2="616" v3="1398" />+                <face v1="819" v2="883" v3="820" />+                <face v1="819" v2="880" v3="883" />+                <face v1="1561" v2="1562" v3="1566" />+                <face v1="1562" v2="1561" v3="882" />+                <face v1="1565" v2="1570" v3="1572" />+                <face v1="1570" v2="1565" v3="1569" />+                <face v1="1632" v2="1575" v3="1574" />+                <face v1="1632" v2="1573" v3="1575" />+                <face v1="638" v2="1579" v3="1577" />+                <face v1="640" v2="1579" v3="638" />+                <face v1="822" v2="1581" v3="823" />+                <face v1="822" v2="1580" v3="1581" />+                <face v1="640" v2="1580" v3="1579" />+                <face v1="1581" v2="1580" v3="640" />+                <face v1="1577" v2="1574" v3="638" />+                <face v1="1577" v2="1632" v3="1574" />+                <face v1="1573" v2="1570" v3="1575" />+                <face v1="1573" v2="1572" v3="1570" />+                <face v1="1566" v2="1569" v3="1565" />+                <face v1="1569" v2="1566" v3="1562" />+                <face v1="883" v2="882" v3="1561" />+                <face v1="882" v2="883" v3="880" />+                <face v1="1631" v2="1399" v3="1398" />+                <face v1="1631" v2="1630" v3="1399" />+                <face v1="1628" v2="1397" v3="1629" />+                <face v1="1397" v2="1628" v3="1396" />+                <face v1="1611" v2="1626" v3="1610" />+                <face v1="1611" v2="1627" v3="1626" />+                <face v1="1544" v2="1624" v3="1543" />+                <face v1="1544" v2="1625" v3="1624" />+                <face v1="1623" v2="1621" v3="1542" />+                <face v1="1621" v2="1623" v3="1622" />+                <face v1="817" v2="1541" v3="1620" />+                <face v1="1541" v2="817" v3="816" />+                <face v1="1263" v2="815" v3="1366" />+                <face v1="818" v2="815" v3="1263" />+                <face v1="1178" v2="459" v3="1455" />+                <face v1="349" v2="459" v3="1178" />+                <face v1="1394" v2="1460" v3="1390" />+                <face v1="1394" v2="1454" v3="1460" />+                <face v1="807" v2="1619" v3="890" />+                <face v1="1619" v2="807" v3="804" />+                <face v1="1618" v2="806" v3="805" />+                <face v1="806" v2="1618" v3="1615" />+                <face v1="1270" v2="1617" v3="1616" />+                <face v1="1617" v2="1270" v3="1360" />+                <face v1="620" v2="1559" v3="800" />+                <face v1="620" v2="887" v3="1559" />+                <face v1="798" v2="621" v3="799" />+                <face v1="798" v2="472" v3="621" />+                <face v1="1551" v2="891" v3="1553" />+                <face v1="1551" v2="1613" v3="891" />+                <face v1="1546" v2="1614" v3="1549" />+                <face v1="1546" v2="1612" v3="1614" />+                <face v1="1502" v2="461" v3="464" />+                <face v1="1502" v2="950" v3="461" />+                <face v1="1453" v2="855" v3="1459" />+                <face v1="1453" v2="458" v3="855" />+                <face v1="529" v2="790" v3="791" />+                <face v1="790" v2="529" v3="787" />+                <face v1="752" v2="905" v3="1531" />+                <face v1="752" v2="782" v3="905" />+                <face v1="1524" v2="783" v3="751" />+                <face v1="783" v2="1524" v3="1604" />+                <face v1="572" v2="903" v3="573" />+                <face v1="572" v2="904" v3="903" />+                <face v1="911" v2="1530" v3="1529" />+                <face v1="911" v2="908" v3="1530" />+                <face v1="1607" v2="777" v3="1518" />+                <face v1="744" v2="777" v3="1607" />+                <face v1="1609" v2="741" v3="1522" />+                <face v1="1609" v2="778" v3="741" />+                <face v1="1602" v2="1529" v3="1528" />+                <face v1="1602" v2="911" v3="1529" />+                <face v1="572" v2="1525" v3="904" />+                <face v1="1601" v2="1525" v3="572" />+                <face v1="795" v2="771" v3="723" />+                <face v1="795" v2="679" v3="771" />+                <face v1="836" v2="507" v3="678" />+                <face v1="507" v2="836" v3="508" />+                <face v1="1512" v2="899" v3="1514" />+                <face v1="1512" v2="1539" v3="899" />+                <face v1="916" v2="587" v3="528" />+                <face v1="916" v2="588" v3="587" />+                <face v1="1538" v2="788" v3="766" />+                <face v1="788" v2="1538" v3="760" />+                <face v1="438" v2="1425" v3="439" />+                <face v1="1426" v2="1425" v3="438" />+                <face v1="527" v2="531" v3="765" />+                <face v1="531" v2="527" v3="532" />+                <face v1="1537" v2="483" v3="486" />+                <face v1="579" v2="483" v3="1537" />+                <face v1="599" v2="1515" v3="597" />+                <face v1="599" v2="841" v3="1515" />+                <face v1="488" v2="1537" v3="486" />+                <face v1="488" v2="1538" v3="1537" />+                <face v1="757" v2="559" v3="755" />+                <face v1="559" v2="757" v3="842" />+                <face v1="781" v2="754" v3="753" />+                <face v1="754" v2="781" v3="1518" />+                <face v1="783" v2="906" v3="782" />+                <face v1="783" v2="1526" v3="906" />+                <face v1="571" v2="749" v3="1606" />+                <face v1="571" v2="750" v3="749" />+                <face v1="1603" v2="747" v3="568" />+                <face v1="748" v2="747" v3="1603" />+                <face v1="565" v2="1532" v3="561" />+                <face v1="1532" v2="565" v3="1605" />+                <face v1="834" v2="907" v3="1523" />+                <face v1="907" v2="834" v3="905" />+                <face v1="1609" v2="910" v3="1520" />+                <face v1="910" v2="1609" v3="908" />+                <face v1="909" v2="1602" v3="1521" />+                <face v1="911" v2="1602" v3="909" />+                <face v1="904" v2="1527" v3="575" />+                <face v1="904" v2="1525" v3="1527" />+                <face v1="577" v2="1524" v3="912" />+                <face v1="786" v2="1524" v3="577" />+                <face v1="757" v2="777" v3="778" />+                <face v1="757" v2="756" v3="777" />+                <face v1="784" v2="742" v3="785" />+                <face v1="743" v2="742" v3="784" />+                <face v1="566" v2="739" v3="738" />+                <face v1="560" v2="739" v3="566" />+                <face v1="550" v2="735" v3="734" />+                <face v1="735" v2="550" v3="569" />+                <face v1="1605" v2="1603" v3="1606" />+                <face v1="1603" v2="1605" v3="845" />+                <face v1="591" v2="894" v3="897" />+                <face v1="590" v2="894" v3="591" />+                <face v1="605" v2="606" v3="608" />+                <face v1="605" v2="1540" v3="606" />+                <face v1="727" v2="839" v3="728" />+                <face v1="727" v2="837" v3="839" />+                <face v1="546" v2="1513" v3="1516" />+                <face v1="546" v2="728" v3="1513" />+                <face v1="724" v2="513" v3="1505" />+                <face v1="513" v2="724" v3="511" />+                <face v1="1501" v2="795" v3="796" />+                <face v1="795" v2="1501" v3="1493" />+                <face v1="720" v2="609" v3="607" />+                <face v1="720" v2="863" v3="609" />+                <face v1="923" v2="717" v3="718" />+                <face v1="923" v2="922" v3="717" />+                <face v1="1495" v2="864" v3="676" />+                <face v1="1495" v2="928" v3="864" />+                <face v1="1519" v2="918" v3="914" />+                <face v1="1519" v2="924" v3="918" />+                <face v1="1507" v2="1600" v3="1517" />+                <face v1="1507" v2="1509" v3="1600" />+                <face v1="920" v2="914" v3="918" />+                <face v1="914" v2="920" v3="913" />+                <face v1="1584" v2="1487" v3="1488" />+                <face v1="1487" v2="1584" v3="1599" />+                <face v1="835" v2="1484" v3="931" />+                <face v1="835" v2="1483" v3="1484" />+                <face v1="1500" v2="1497" v3="1462" />+                <face v1="1499" v2="1497" v3="1500" />+                <face v1="1598" v2="1462" v3="869" />+                <face v1="1500" v2="1462" v3="1598" />+                <face v1="941" v2="716" v3="1464" />+                <face v1="941" v2="714" v3="716" />+                <face v1="934" v2="1336" v3="936" />+                <face v1="1336" v2="934" v3="1337" />+                <face v1="944" v2="948" v3="947" />+                <face v1="673" v2="948" v3="944" />+                <face v1="1470" v2="1464" v3="945" />+                <face v1="1470" v2="941" v3="1464" />+                <face v1="939" v2="704" v3="714" />+                <face v1="702" v2="704" v3="939" />+                <face v1="713" v2="938" v3="715" />+                <face v1="709" v2="938" v3="713" />+                <face v1="708" v2="935" v3="937" />+                <face v1="706" v2="935" v3="708" />+                <face v1="700" v2="500" v3="499" />+                <face v1="1596" v2="500" v3="700" />+                <face v1="1597" v2="768" v3="930" />+                <face v1="1608" v2="768" v3="1597" />+                <face v1="1595" v2="1591" v3="1594" />+                <face v1="1589" v2="1591" v3="1595" />+                <face v1="696" v2="866" v3="697" />+                <face v1="696" v2="684" v3="866" />+                <face v1="1588" v2="695" v3="506" />+                <face v1="1588" v2="698" v3="695" />+                <face v1="859" v2="1485" v3="655" />+                <face v1="859" v2="685" v3="1485" />+                <face v1="689" v2="693" v3="932" />+                <face v1="688" v2="693" v3="689" />+                <face v1="1482" v2="675" v3="865" />+                <face v1="1482" v2="1481" v3="675" />+                <face v1="668" v2="1480" v3="666" />+                <face v1="668" v2="1478" v3="1480" />+                <face v1="1480" v2="876" v3="848" />+                <face v1="876" v2="1480" v3="1479" />+                <face v1="1503" v2="1493" v3="1501" />+                <face v1="1503" v2="1587" v3="1493" />+                <face v1="458" v2="856" v3="855" />+                <face v1="458" v2="460" v3="856" />+                <face v1="1463" v2="1587" v3="1503" />+                <face v1="1463" v2="942" v3="1587" />+                <face v1="674" v2="681" v3="680" />+                <face v1="674" v2="673" v3="681" />+                <face v1="505" v2="670" v3="503" />+                <face v1="670" v2="505" v3="677" />+                <face v1="507" v2="512" v3="771" />+                <face v1="507" v2="509" v3="512" />+                <face v1="1491" v2="929" v3="510" />+                <face v1="1491" v2="1492" v3="929" />+                <face v1="865" v2="676" v3="864" />+                <face v1="865" v2="675" v3="676" />+                <face v1="1477" v2="1598" v3="1475" />+                <face v1="1598" v2="1477" v3="519" />+                <face v1="1206" v2="517" v3="1471" />+                <face v1="517" v2="1206" v3="41" />+                <face v1="854" v2="1503" v3="464" />+                <face v1="1503" v2="854" v3="1463" />+                <face v1="1472" v2="490" v3="1586" />+                <face v1="490" v2="1472" v3="491" />+                <face v1="1474" v2="492" v3="1473" />+                <face v1="492" v2="1474" v3="1486" />+                <face v1="835" v2="658" v3="1599" />+                <face v1="835" v2="661" v3="658" />+                <face v1="655" v2="1585" v3="656" />+                <face v1="655" v2="1485" v3="1585" />+                <face v1="690" v2="654" v3="652" />+                <face v1="690" v2="657" v3="654" />+                <face v1="1423" v2="1317" v3="1583" />+                <face v1="1423" v2="1318" v3="1317" />+                <face v1="1583" v2="1315" v3="824" />+                <face v1="1583" v2="1317" v3="1315" />+                <face v1="1425" v2="1582" v3="439" />+                <face v1="1425" v2="1427" v3="1582" />+                <face v1="649" v2="452" v3="602" />+                <face v1="649" v2="645" v3="452" />+                <face v1="644" v2="1582" v3="643" />+                <face v1="645" v2="1582" v3="644" />+                <face v1="1311" v2="1580" v3="822" />+                <face v1="1311" v2="1312" v3="1580" />+                <face v1="643" v2="1428" v3="427" />+                <face v1="643" v2="1429" v3="1428" />+                <face v1="1581" v2="637" v3="1430" />+                <face v1="1581" v2="640" v3="637" />+                <face v1="1305" v2="1577" v3="1579" />+                <face v1="1305" v2="1307" v3="1577" />+                <face v1="1432" v2="1415" v3="428" />+                <face v1="1432" v2="1431" v3="1415" />+                <face v1="634" v2="425" v3="635" />+                <face v1="642" v2="425" v3="634" />+                <face v1="638" v2="1434" v3="639" />+                <face v1="638" v2="1574" v3="1434" />+                <face v1="1417" v2="636" v3="635" />+                <face v1="1417" v2="1416" v3="636" />+                <face v1="1299" v2="1573" v3="1632" />+                <face v1="1299" v2="1301" v3="1573" />+                <face v1="1412" v2="1436" v3="1433" />+                <face v1="1418" v2="1436" v3="1412" />+                <face v1="629" v2="636" v3="1571" />+                <face v1="631" v2="636" v3="629" />+                <face v1="1435" v2="1570" v3="1438" />+                <face v1="1435" v2="1575" v3="1570" />+                <face v1="1567" v2="1414" v3="1411" />+                <face v1="1571" v2="1414" v3="1567" />+                <face v1="1292" v2="1565" v3="1572" />+                <face v1="1292" v2="1294" v3="1565" />+                <face v1="1440" v2="1564" v3="1413" />+                <face v1="1440" v2="1437" v3="1564" />+                <face v1="1563" v2="884" v3="1567" />+                <face v1="884" v2="1563" v3="885" />+                <face v1="1562" v2="1439" v3="1569" />+                <face v1="1439" v2="1562" v3="1443" />+                <face v1="1409" v2="1563" v3="1568" />+                <face v1="1563" v2="1409" v3="1465" />+                <face v1="1566" v2="1283" v3="1561" />+                <face v1="1566" v2="1286" v3="1283" />+                <face v1="1410" v2="1441" v3="1442" />+                <face v1="1407" v2="1441" v3="1410" />+                <face v1="1406" v2="632" v3="1408" />+                <face v1="632" v2="1406" v3="633" />+                <face v1="1404" v2="441" v3="953" />+                <face v1="1404" v2="1560" v3="441" />+                <face v1="610" v2="802" v3="456" />+                <face v1="610" v2="625" v3="802" />+                <face v1="813" v2="453" v3="650" />+                <face v1="623" v2="453" v3="813" />+                <face v1="1558" v2="813" v3="812" />+                <face v1="886" v2="813" v3="1558" />+                <face v1="1557" v2="812" v3="1444" />+                <face v1="1558" v2="812" v3="1557" />+                <face v1="1447" v2="634" v3="954" />+                <face v1="1445" v2="634" v3="1447" />+                <face v1="800" v2="888" v3="799" />+                <face v1="800" v2="1557" v3="888" />+                <face v1="954" v2="1448" v3="1447" />+                <face v1="954" v2="1420" v3="1448" />+                <face v1="1420" v2="446" v3="1448" />+                <face v1="1420" v2="430" v3="446" />+                <face v1="798" v2="1556" v3="797" />+                <face v1="798" v2="889" v3="1556" />+                <face v1="1556" v2="443" v3="1555" />+                <face v1="1556" v2="444" v3="443" />+                <face v1="1555" v2="450" v3="1554" />+                <face v1="1555" v2="443" v3="450" />+                <face v1="1554" v2="447" v3="1552" />+                <face v1="1554" v2="450" v3="447" />+                <face v1="807" v2="1613" v3="805" />+                <face v1="807" v2="891" v3="1613" />+                <face v1="952" v2="1552" v3="447" />+                <face v1="1552" v2="952" v3="1550" />+                <face v1="805" v2="1614" v3="1618" />+                <face v1="805" v2="1613" v3="1614" />+                <face v1="1550" v2="1450" v3="1547" />+                <face v1="1550" v2="952" v3="1450" />+                <face v1="1618" v2="1612" v3="1616" />+                <face v1="1618" v2="1614" v3="1612" />+                <face v1="1271" v2="1450" v3="1272" />+                <face v1="1547" v2="1450" v3="1271" />+                <face v1="1268" v2="1616" v3="1612" />+                <face v1="1616" v2="1268" v3="1270" />+                <face v1="1544" v2="1383" v3="1610" />+                <face v1="1383" v2="1544" v3="1382" />+                <face v1="1385" v2="1623" v3="1384" />+                <face v1="1385" v2="1543" v3="1623" />+                <face v1="1117" v2="818" v3="1263" />+                <face v1="1393" v2="818" v3="1117" />+                <face v1="455" v2="604" v3="611" />+                <face v1="455" v2="1401" v3="604" />+                <face v1="606" v2="719" v3="607" />+                <face v1="846" v2="719" v3="606" />+                <face v1="894" v2="609" v3="895" />+                <face v1="609" v2="894" v3="608" />+                <face v1="1540" v2="589" v3="893" />+                <face v1="605" v2="589" v3="1540" />+                <face v1="838" v2="900" v3="1539" />+                <face v1="838" v2="730" v3="900" />+                <face v1="587" v2="901" v3="766" />+                <face v1="587" v2="583" v3="901" />+                <face v1="898" v2="584" v3="586" />+                <face v1="898" v2="1536" v3="584" />+                <face v1="1533" v2="1536" v3="1535" />+                <face v1="584" v2="1536" v3="1533" />+                <face v1="585" v2="582" v3="580" />+                <face v1="585" v2="1534" v3="582" />+                <face v1="1508" v2="731" v3="837" />+                <face v1="1508" v2="902" v3="731" />+                <face v1="1506" v2="1535" v3="1510" />+                <face v1="1533" v2="1535" v3="1506" />+                <face v1="919" v2="1534" v3="917" />+                <face v1="582" v2="1534" v3="919" />+                <face v1="786" v2="553" v3="555" />+                <face v1="577" v2="553" v3="786" />+                <face v1="1605" v2="749" v3="1532" />+                <face v1="1605" v2="1606" v3="749" />+                <face v1="1604" v2="1526" v3="783" />+                <face v1="1527" v2="1526" v3="1604" />+                <face v1="747" v2="569" v3="568" />+                <face v1="747" v2="735" v3="569" />+                <face v1="733" v2="564" v3="567" />+                <face v1="564" v2="733" v3="746" />+                <face v1="784" v2="1523" v3="743" />+                <face v1="784" v2="834" v3="1523" />+                <face v1="1520" v2="778" v3="1609" />+                <face v1="778" v2="1520" v3="757" />+                <face v1="553" v2="549" v3="554" />+                <face v1="578" v2="549" v3="553" />+                <face v1="549" v2="578" v3="552" />+                <face v1="744" v2="843" v3="742" />+                <face v1="843" v2="744" v3="1607" />+                <face v1="547" v2="558" v3="548" />+                <face v1="547" v2="755" v3="558" />+                <face v1="542" v2="1517" v3="1600" />+                <face v1="542" v2="548" v3="1517" />+                <face v1="1600" v2="539" v3="542" />+                <face v1="1600" v2="544" v3="539" />+                <face v1="546" v2="732" v3="545" />+                <face v1="732" v2="546" v3="779" />+                <face v1="538" v2="915" v3="1516" />+                <face v1="915" v2="538" v3="536" />+                <face v1="841" v2="789" v3="1515" />+                <face v1="792" v2="789" v3="841" />+                <face v1="531" v2="538" v3="764" />+                <face v1="538" v2="531" v3="530" />+                <face v1="532" v2="534" v3="533" />+                <face v1="532" v2="791" v3="534" />+                <face v1="760" v2="787" v3="788" />+                <face v1="760" v2="759" v3="787" />+                <face v1="1514" v2="1513" v3="1512" />+                <face v1="1514" v2="764" v3="1513" />+                <face v1="543" v2="1511" v3="727" />+                <face v1="544" v2="1511" v3="543" />+                <face v1="1510" v2="1507" v3="1506" />+                <face v1="1510" v2="1509" v3="1507" />+                <face v1="522" v2="465" v3="831" />+                <face v1="465" v2="522" v3="468" />+                <face v1="1386" v2="521" v3="520" />+                <face v1="521" v2="1386" v3="1456" />+                <face v1="1116" v2="1452" v3="1391" />+                <face v1="1452" v2="1116" v3="1177" />+                <face v1="1458" v2="1403" v3="951" />+                <face v1="1458" v2="1504" v3="1403" />+                <face v1="927" v2="1505" v3="1504" />+                <face v1="1505" v2="927" v3="724" />+                <face v1="1502" v2="796" v3="794" />+                <face v1="796" v2="1502" v3="1501" />+                <face v1="519" v2="1500" v3="1598" />+                <face v1="519" v2="518" v3="1500" />+                <face v1="1462" v2="1496" v3="516" />+                <face v1="1462" v2="1497" v3="1496" />+                <face v1="1223" v2="1496" v3="1224" />+                <face v1="1223" v2="1466" v3="1496" />+                <face v1="514" v2="1467" v3="718" />+                <face v1="516" v2="1467" v3="514" />+                <face v1="676" v2="717" v3="1495" />+                <face v1="676" v2="667" v3="717" />+                <face v1="723" v2="512" v3="511" />+                <face v1="723" v2="771" v3="512" />+                <face v1="1587" v2="677" v3="1493" />+                <face v1="677" v2="1587" v3="670" />+                <face v1="1590" v2="684" v3="696" />+                <face v1="682" v2="684" v3="1590" />+                <face v1="696" v2="1591" v3="1590" />+                <face v1="696" v2="698" v3="1591" />+                <face v1="1594" v2="698" v3="1588" />+                <face v1="1591" v2="698" v3="1594" />+                <face v1="769" v2="1588" v3="770" />+                <face v1="1594" v2="1588" v3="769" />+                <face v1="860" v2="768" v3="767" />+                <face v1="768" v2="860" v3="930" />+                <face v1="656" v2="1489" v3="495" />+                <face v1="656" v2="1585" v3="1489" />+                <face v1="1585" v2="1488" v3="1489" />+                <face v1="1585" v2="1584" v3="1488" />+                <face v1="1487" v2="658" v3="493" />+                <face v1="1487" v2="1599" v3="658" />+                <face v1="1586" v2="1206" v3="1472" />+                <face v1="1206" v2="1586" v3="1185" />+                <face v1="871" v2="699" v3="674" />+                <face v1="871" v2="659" v3="699" />+                <face v1="1481" v2="874" v3="1478" />+                <face v1="1481" v2="653" v3="874" />+                <face v1="1477" v2="1473" v3="1471" />+                <face v1="1477" v2="1474" v3="1473" />+                <face v1="487" v2="1422" v3="437" />+                <face v1="1422" v2="487" v3="1469" />+                <face v1="1468" v2="1196" v3="1469" />+                <face v1="1196" v2="1468" v3="1198" />+                <face v1="1468" v2="480" v3="479" />+                <face v1="1468" v2="485" v3="480" />+                <face v1="1193" v2="481" v3="1194" />+                <face v1="1193" v2="479" v3="481" />+                <face v1="481" v2="1467" v3="1466" />+                <face v1="481" v2="482" v3="1467" />+                <face v1="632" v2="477" v3="1465" />+                <face v1="477" v2="632" v3="478" />+                <face v1="887" v2="619" v3="832" />+                <face v1="887" v2="620" v3="619" />+                <face v1="943" v2="941" v3="1470" />+                <face v1="940" v2="941" v3="943" />+                <face v1="1185" v2="873" v3="1186" />+                <face v1="873" v2="1185" v3="1586" />+                <face v1="1461" v2="1182" v3="1499" />+                <face v1="1461" v2="1184" v3="1182" />+                <face v1="474" v2="1461" v3="518" />+                <face v1="474" v2="473" v3="1461" />+                <face v1="465" v2="926" v3="524" />+                <face v1="467" v2="926" v3="465" />+                <face v1="462" v2="1460" v3="1459" />+                <face v1="1457" v2="1460" v3="462" />+                <face v1="1177" v2="1455" v3="1452" />+                <face v1="1177" v2="1178" v3="1455" />+                <face v1="951" v2="525" v3="1458" />+                <face v1="951" v2="925" v3="525" />+                <face v1="1457" v2="461" v3="1456" />+                <face v1="461" v2="1457" v3="462" />+                <face v1="1542" v2="1384" v3="1623" />+                <face v1="1384" v2="1542" v3="1389" />+                <face v1="1455" v2="458" v3="1453" />+                <face v1="458" v2="1455" v3="459" />+                <face v1="1391" v2="1454" v3="1394" />+                <face v1="1454" v2="1391" v3="1452" />+                <face v1="725" v2="513" v3="721" />+                <face v1="1505" v2="513" v3="725" />+                <face v1="423" v2="1450" v3="952" />+                <face v1="1450" v2="423" v3="1419" />+                <face v1="1448" v2="444" v3="1446" />+                <face v1="444" v2="1448" v3="446" />+                <face v1="1449" v2="1445" v3="1447" />+                <face v1="1449" v2="1444" v3="1445" />+                <face v1="422" v2="617" v3="821" />+                <face v1="422" v2="618" v3="617" />+                <face v1="881" v2="1442" v3="879" />+                <face v1="1560" v2="1442" v3="881" />+                <face v1="1441" v2="1439" v3="1443" />+                <face v1="1441" v2="1437" v3="1439" />+                <face v1="1435" v2="1440" v3="1433" />+                <face v1="1440" v2="1435" v3="1438" />+                <face v1="1436" v2="639" v3="1434" />+                <face v1="1436" v2="1431" v3="639" />+                <face v1="1430" v2="1432" v3="1428" />+                <face v1="1432" v2="1430" v3="637" />+                <face v1="878" v2="1427" v3="877" />+                <face v1="1429" v2="1427" v3="878" />+                <face v1="1423" v2="437" v3="1422" />+                <face v1="437" v2="1423" v3="438" />+                <face v1="433" v2="431" v3="436" />+                <face v1="429" v2="431" v3="433" />+                <face v1="441" v2="618" v3="953" />+                <face v1="440" v2="618" v3="441" />+                <face v1="1420" v2="432" v3="430" />+                <face v1="1420" v2="630" v3="432" />+                <face v1="441" v2="881" v3="442" />+                <face v1="1560" v2="881" v3="441" />+                <face v1="1417" v2="428" v3="1415" />+                <face v1="424" v2="428" v3="1417" />+                <face v1="1418" v2="1414" v3="1416" />+                <face v1="1418" v2="1412" v3="1414" />+                <face v1="1413" v2="1568" v3="1411" />+                <face v1="1413" v2="1564" v3="1568" />+                <face v1="1409" v2="1564" v3="1407" />+                <face v1="1568" v2="1564" v3="1409" />+                <face v1="1406" v2="1410" v3="1404" />+                <face v1="1408" v2="1410" v3="1406" />+                <face v1="953" v2="421" v3="1405" />+                <face v1="953" v2="422" v3="421" />+                <face v1="1403" v2="726" v3="1402" />+                <face v1="1403" v2="725" v3="726" />+                <face v1="1402" v2="847" v3="1401" />+                <face v1="726" v2="847" v3="1402" />+                <face v1="457" v2="1395" v3="925" />+                <face v1="626" v2="1395" v3="457" />+                <face v1="627" v2="956" v3="626" />+                <face v1="627" v2="420" v3="956" />+                <face v1="957" v2="417" v3="1395" />+                <face v1="957" v2="613" v3="417" />+                <face v1="475" v2="615" v3="1398" />+                <face v1="415" v2="615" v3="475" />+                <face v1="1397" v2="476" v3="1399" />+                <face v1="476" v2="1397" v3="612" />+                <face v1="892" v2="1611" v3="1545" />+                <face v1="892" v2="1396" v3="1611" />+                <face v1="1116" v2="1393" v3="1117" />+                <face v1="1116" v2="1391" v3="1393" />+                <face v1="1390" v2="1392" v3="1394" />+                <face v1="1392" v2="1390" v3="1387" />+                <face v1="1389" v2="1386" v3="1384" />+                <face v1="1389" v2="1388" v3="1386" />+                <face v1="522" v2="1385" v3="520" />+                <face v1="1385" v2="522" v3="1382" />+                <face v1="1383" v2="523" v3="1545" />+                <face v1="1383" v2="831" v3="523" />+                <face v1="1100" v2="1633" v3="1380" />+                <face v1="1100" v2="1102" v3="1633" />+                <face v1="1308" v2="414" v3="291" />+                <face v1="1308" v2="1310" v3="414" />+                <face v1="1306" v2="1302" v3="1304" />+                <face v1="1302" v2="1306" v3="1309" />+                <face v1="1297" v2="1300" v3="1303" />+                <face v1="1297" v2="1298" v3="1300" />+                <face v1="1296" v2="1291" v3="1293" />+                <face v1="1289" v2="1291" v3="1296" />+                <face v1="1288" v2="1285" v3="1284" />+                <face v1="279" v2="1285" v3="1288" />+                <face v1="1060" v2="1123" v3="1377" />+                <face v1="1123" v2="1060" v3="1059" />+                <face v1="1376" v2="1122" v3="1121" />+                <face v1="1376" v2="1378" v3="1122" />+                <face v1="1374" v2="1120" v3="1119" />+                <face v1="1374" v2="1375" v3="1120" />+                <face v1="1372" v2="1266" v3="1265" />+                <face v1="1372" v2="1373" v3="1266" />+                <face v1="1370" v2="1264" v3="1173" />+                <face v1="1370" v2="1371" v3="1264" />+                <face v1="1368" v2="1172" v3="1367" />+                <face v1="1368" v2="1369" v3="1172" />+                <face v1="1367" v2="1111" v3="963" />+                <face v1="1111" v2="1367" v3="1114" />+                <face v1="252" v2="1365" v3="1189" />+                <face v1="1365" v2="252" v3="398" />+                <face v1="409" v2="1363" v3="410" />+                <face v1="409" v2="1364" v3="1363" />+                <face v1="408" v2="240" v3="242" />+                <face v1="1362" v2="240" v3="408" />+                <face v1="1267" v2="1361" v3="1359" />+                <face v1="1267" v2="1274" v3="1361" />+                <face v1="407" v2="253" v3="1358" />+                <face v1="407" v2="254" v3="253" />+                <face v1="404" v2="1087" v3="241" />+                <face v1="248" v2="1087" v3="404" />+                <face v1="1357" v2="243" v3="238" />+                <face v1="405" v2="243" v3="1357" />+                <face v1="237" v2="1355" v3="1356" />+                <face v1="237" v2="1275" v3="1355" />+                <face v1="1269" v2="1548" v3="1354" />+                <face v1="1269" v2="1268" v3="1548" />+                <face v1="341" v2="1180" v3="1089" />+                <face v1="340" v2="1180" v3="341" />+                <face v1="1266" v2="1104" v3="1103" />+                <face v1="1266" v2="1119" v3="1104" />+                <face v1="389" v2="1353" v3="388" />+                <face v1="389" v2="190" v3="1353" />+                <face v1="196" v2="1249" v3="973" />+                <face v1="196" v2="1342" v3="1249" />+                <face v1="977" v2="1346" v3="1245" />+                <face v1="977" v2="156" v3="1346" />+                <face v1="186" v2="1351" v3="366" />+                <face v1="1351" v2="186" v3="1352" />+                <face v1="1348" v2="1350" v3="1344" />+                <face v1="1348" v2="1343" v3="1350" />+                <face v1="382" v2="111" v3="1216" />+                <face v1="111" v2="382" v3="114" />+                <face v1="111" v2="1333" v3="1216" />+                <face v1="111" v2="1634" v3="1333" />+                <face v1="378" v2="380" v3="379" />+                <face v1="378" v2="354" v3="380" />+                <face v1="1066" v2="24" v3="21" />+                <face v1="24" v2="1066" v3="146" />+                <face v1="394" v2="141" v3="1075" />+                <face v1="394" v2="393" v3="141" />+                <face v1="145" v2="225" v3="293" />+                <face v1="225" v2="145" v3="375" />+                <face v1="53" v2="1067" v3="56" />+                <face v1="1067" v2="53" v3="991" />+                <face v1="375" v2="223" v3="225" />+                <face v1="375" v2="1242" v3="223" />+                <face v1="1245" v2="159" v3="977" />+                <face v1="371" v2="159" v3="1245" />+                <face v1="191" v2="1350" v3="1248" />+                <face v1="1349" v2="1350" v3="191" />+                <face v1="1070" v2="1253" v3="1071" />+                <face v1="1253" v2="1070" v3="1341" />+                <face v1="1251" v2="369" v3="182" />+                <face v1="370" v2="369" v3="1251" />+                <face v1="388" v2="1252" v3="181" />+                <face v1="1252" v2="388" v3="1353" />+                <face v1="1352" v2="1246" v3="1351" />+                <face v1="188" v2="1246" v3="1352" />+                <face v1="1345" v2="184" v3="365" />+                <face v1="184" v2="1345" v3="185" />+                <face v1="373" v2="1068" v3="1348" />+                <face v1="1068" v2="373" v3="372" />+                <face v1="1250" v2="973" v3="1249" />+                <face v1="973" v2="1250" v3="194" />+                <face v1="360" v2="1247" v3="198" />+                <face v1="360" v2="362" v3="1247" />+                <face v1="362" v2="982" v3="1069" />+                <face v1="362" v2="361" v3="982" />+                <face v1="999" v2="370" v3="1341" />+                <face v1="367" v2="370" v3="999" />+                <face v1="1348" v2="1345" v3="373" />+                <face v1="1344" v2="1345" v3="1348" />+                <face v1="1261" v2="1062" v3="212" />+                <face v1="1261" v2="1063" v3="1062" />+                <face v1="353" v2="1260" v3="1262" />+                <face v1="353" v2="352" v3="1260" />+                <face v1="1003" v2="174" v3="1064" />+                <face v1="1003" v2="171" v3="174" />+                <face v1="1239" v2="381" v3="1257" />+                <face v1="1239" v2="1005" v3="381" />+                <face v1="122" v2="320" v3="120" />+                <face v1="320" v2="122" v3="321" />+                <face v1="138" v2="1635" v3="1340" />+                <face v1="138" v2="137" v3="1635" />+                <face v1="149" v2="1239" v3="1238" />+                <face v1="149" v2="150" v3="1239" />+                <face v1="1244" v2="1234" v3="175" />+                <face v1="1244" v2="1235" v3="1234" />+                <face v1="310" v2="1636" v3="88" />+                <face v1="1636" v2="310" v3="1322" />+                <face v1="1637" v2="1208" v3="1210" />+                <face v1="1208" v2="1637" v3="1320" />+                <face v1="1209" v2="1339" v3="1213" />+                <face v1="94" v2="1339" v3="1209" />+                <face v1="1498" v2="1183" v3="1226" />+                <face v1="1498" v2="1182" v3="1183" />+                <face v1="88" v2="1637" v3="299" />+                <face v1="1637" v2="88" v3="1636" />+                <face v1="312" v2="1322" v3="310" />+                <face v1="312" v2="1228" v3="1322" />+                <face v1="77" v2="1335" v3="84" />+                <face v1="77" v2="1015" v3="1335" />+                <face v1="1336" v2="79" v3="86" />+                <face v1="1336" v2="83" v3="79" />+                <face v1="350" v2="81" v3="1337" />+                <face v1="350" v2="348" v3="81" />+                <face v1="64" v2="326" v3="1034" />+                <face v1="64" v2="109" v3="326" />+                <face v1="66" v2="65" v3="67" />+                <face v1="66" v2="1188" v3="65" />+                <face v1="343" v2="332" v3="331" />+                <face v1="343" v2="74" v3="332" />+                <face v1="78" v2="338" v3="76" />+                <face v1="338" v2="78" v3="335" />+                <face v1="44" v2="80" v3="82" />+                <face v1="336" v2="80" v3="44" />+                <face v1="329" v2="1218" v3="330" />+                <face v1="1638" v2="1218" v3="329" />+                <face v1="1215" v2="1334" v3="1082" />+                <face v1="1334" v2="1215" v3="1332" />+                <face v1="113" v2="1634" v3="111" />+                <face v1="1634" v2="113" v3="1330" />+                <face v1="1218" v2="1331" v3="1217" />+                <face v1="1331" v2="1218" v3="1638" />+                <face v1="90" v2="317" v3="318" />+                <face v1="1027" v2="317" v3="90" />+                <face v1="114" v2="1329" v3="112" />+                <face v1="1329" v2="114" v3="384" />+                <face v1="1214" v2="108" v3="1081" />+                <face v1="1214" v2="1023" v3="108" />+                <face v1="1205" v2="319" v3="1328" />+                <face v1="319" v2="1205" v3="322" />+                <face v1="1204" v2="1030" v3="1032" />+                <face v1="1204" v2="1203" v3="1030" />+                <face v1="87" v2="1024" v3="311" />+                <face v1="87" v2="1326" v3="1024" />+                <face v1="298" v2="1327" v3="89" />+                <face v1="298" v2="308" v3="1327" />+                <face v1="1328" v2="1025" v3="1205" />+                <face v1="1328" v2="1026" v3="1025" />+                <face v1="1033" v2="1018" v3="1017" />+                <face v1="1033" v2="327" v3="1018" />+                <face v1="1033" v2="326" v3="327" />+                <face v1="70" v2="1035" v3="71" />+                <face v1="1035" v2="70" v3="1219" />+                <face v1="109" v2="63" v3="110" />+                <face v1="109" v2="64" v3="63" />+                <face v1="118" v2="1325" v3="1080" />+                <face v1="118" v2="1323" v3="1325" />+                <face v1="314" v2="1324" v3="117" />+                <face v1="314" v2="313" v3="1324" />+                <face v1="1077" v2="1201" v3="1200" />+                <face v1="126" v2="1201" v3="1077" />+                <face v1="45" v2="341" v3="334" />+                <face v1="45" v2="340" v3="341" />+                <face v1="97" v2="305" v3="99" />+                <face v1="305" v2="97" v3="306" />+                <face v1="303" v2="1187" v3="304" />+                <face v1="309" v2="1187" v3="303" />+                <face v1="1320" v2="1636" v3="1202" />+                <face v1="1637" v2="1636" v3="1320" />+                <face v1="1199" v2="1083" v3="1319" />+                <face v1="1199" v2="1207" v3="1083" />+                <face v1="1213" v2="324" v3="1211" />+                <face v1="1213" v2="1339" v3="324" />+                <face v1="308" v2="301" v3="1327" />+                <face v1="301" v2="308" v3="302" />+                <face v1="993" v2="51" v3="50" />+                <face v1="51" v2="993" v3="992" />+                <face v1="1094" v2="1316" v3="1141" />+                <face v1="1347" v2="1316" v3="1094" />+                <face v1="293" v2="224" v3="292" />+                <face v1="225" v2="224" v3="293" />+                <face v1="1347" v2="289" v3="1316" />+                <face v1="290" v2="289" v3="1347" />+                <face v1="292" v2="1313" v3="22" />+                <face v1="1041" v2="1313" v3="292" />+                <face v1="414" v2="1315" v3="289" />+                <face v1="414" v2="1311" v3="1315" />+                <face v1="1042" v2="1143" v3="1313" />+                <face v1="1042" v2="1144" v3="1143" />+                <face v1="291" v2="1146" v3="1308" />+                <face v1="1146" v2="291" v3="288" />+                <face v1="1306" v2="1312" v3="1310" />+                <face v1="1306" v2="1305" v3="1312" />+                <face v1="283" v2="1145" v3="1147" />+                <face v1="1096" v2="1145" v3="283" />+                <face v1="1149" v2="1309" v3="1148" />+                <face v1="1149" v2="1302" v3="1309" />+                <face v1="282" v2="1044" v3="1138" />+                <face v1="1044" v2="282" v3="1043" />+                <face v1="1639" v2="1307" v3="1304" />+                <face v1="1639" v2="1578" v3="1307" />+                <face v1="1136" v2="1152" v3="1139" />+                <face v1="1136" v2="1150" v3="1152" />+                <face v1="1303" v2="1153" v3="1297" />+                <face v1="1153" v2="1303" v3="1151" />+                <face v1="1137" v2="1295" v3="1135" />+                <face v1="1295" v2="1137" v3="1045" />+                <face v1="1293" v2="1301" v3="1298" />+                <face v1="1293" v2="1292" v3="1301" />+                <face v1="1295" v2="272" v3="1290" />+                <face v1="272" v2="1295" v3="270" />+                <face v1="1154" v2="1289" v3="1296" />+                <face v1="1155" v2="1289" v3="1154" />+                <face v1="1287" v2="1134" v3="1290" />+                <face v1="1287" v2="1133" v3="1134" />+                <face v1="1291" v2="1286" v3="1294" />+                <face v1="1284" v2="1286" v3="1291" />+                <face v1="1132" v2="1158" v3="1130" />+                <face v1="1132" v2="1156" v3="1158" />+                <face v1="267" v2="1190" v3="1287" />+                <face v1="266" v2="1190" v3="267" />+                <face v1="1157" v2="279" v3="1288" />+                <face v1="280" v2="279" v3="1157" />+                <face v1="1285" v2="276" v3="1283" />+                <face v1="274" v2="276" v3="1285" />+                <face v1="1128" v2="1159" v3="1127" />+                <face v1="1128" v2="1140" v3="1159" />+                <face v1="281" v2="17" v3="14" />+                <face v1="281" v2="278" v3="17" />+                <face v1="267" v2="269" v3="268" />+                <face v1="267" v2="272" v3="269" />+                <face v1="411" v2="413" v3="406" />+                <face v1="413" v2="411" v3="7" />+                <face v1="406" v2="255" v3="254" />+                <face v1="413" v2="255" v3="406" />+                <face v1="1056" v2="1358" v3="1282" />+                <face v1="1358" v2="1056" v3="407" />+                <face v1="1160" v2="297" v3="296" />+                <face v1="1160" v2="12" v3="297" />+                <face v1="1282" v2="968" v3="1281" />+                <face v1="1358" v2="968" v3="1282" />+                <face v1="1161" v2="1281" v3="249" />+                <face v1="1161" v2="1163" v3="1281" />+                <face v1="970" v2="1364" v3="969" />+                <face v1="1364" v2="970" v3="1189" />+                <face v1="249" v2="1164" v3="1161" />+                <face v1="251" v2="1164" v3="249" />+                <face v1="1087" v2="1364" v3="409" />+                <face v1="1364" v2="1087" v3="969" />+                <face v1="251" v2="1092" v3="1164" />+                <face v1="1280" v2="1092" v3="251" />+                <face v1="26" v2="247" v3="244" />+                <face v1="26" v2="1095" v3="247" />+                <face v1="1279" v2="404" v3="405" />+                <face v1="1279" v2="1280" v3="404" />+                <face v1="25" v2="1095" v3="26" />+                <face v1="25" v2="1057" v3="1095" />+                <face v1="1278" v2="405" v3="1357" />+                <face v1="1278" v2="1279" v3="405" />+                <face v1="1357" v2="1277" v3="1278" />+                <face v1="1356" v2="1277" v3="1357" />+                <face v1="1356" v2="1276" v3="1277" />+                <face v1="1355" v2="1276" v3="1356" />+                <face v1="1355" v2="1273" v3="1276" />+                <face v1="1354" v2="1273" v3="1355" />+                <face v1="1451" v2="959" v3="1166" />+                <face v1="1451" v2="1421" v3="959" />+                <face v1="1354" v2="1271" v3="1273" />+                <face v1="1548" v2="1271" v3="1354" />+                <face v1="136" v2="1104" v3="233" />+                <face v1="136" v2="400" v3="1104" />+                <face v1="1264" v2="1106" v3="1105" />+                <face v1="1264" v2="1265" v3="1106" />+                <face v1="1108" v2="1367" v3="1172" />+                <face v1="1114" v2="1367" v3="1108" />+                <face v1="231" v2="412" v3="1054" />+                <face v1="231" v2="1091" v3="412" />+                <face v1="229" v2="1125" v3="228" />+                <face v1="229" v2="351" v3="1125" />+                <face v1="1012" v2="1261" v3="121" />+                <face v1="1261" v2="1012" v3="1262" />+                <face v1="216" v2="352" v3="217" />+                <face v1="352" v2="216" v3="1260" />+                <face v1="213" v2="216" v3="219" />+                <face v1="213" v2="215" v3="216" />+                <face v1="1635" v2="173" v3="1340" />+                <face v1="1635" v2="119" v3="173" />+                <face v1="209" v2="378" v3="211" />+                <face v1="209" v2="206" v3="378" />+                <face v1="206" v2="1258" v3="199" />+                <face v1="1258" v2="206" v3="209" />+                <face v1="205" v2="208" v3="203" />+                <face v1="205" v2="1259" v3="208" />+                <face v1="1067" v2="204" v3="1065" />+                <face v1="1067" v2="202" v3="204" />+                <face v1="1255" v2="199" v3="1258" />+                <face v1="1255" v2="200" v3="199" />+                <face v1="1259" v2="1254" v3="1256" />+                <face v1="1254" v2="1259" v3="205" />+                <face v1="1236" v2="200" v3="1255" />+                <face v1="1236" v2="1257" v3="200" />+                <face v1="1232" v2="1256" v3="1254" />+                <face v1="1232" v2="1237" v3="1256" />+                <face v1="1353" v2="997" v3="1252" />+                <face v1="1353" v2="976" v3="997" />+                <face v1="1349" v2="188" v3="1352" />+                <face v1="1349" v2="191" v3="188" />+                <face v1="1248" v2="1343" v3="1250" />+                <face v1="1248" v2="1350" v3="1343" />+                <face v1="975" v2="1247" v3="996" />+                <face v1="1247" v2="975" v3="1342" />+                <face v1="368" v2="1002" v3="363" />+                <face v1="998" v2="1002" v3="368" />+                <face v1="1351" v2="1000" v3="979" />+                <face v1="1351" v2="1246" v3="1000" />+                <face v1="373" v2="365" v3="995" />+                <face v1="365" v2="373" v3="1345" />+                <face v1="176" v2="173" v3="172" />+                <face v1="173" v2="176" v3="1340" />+                <face v1="1003" v2="214" v3="193" />+                <face v1="214" v2="1003" v3="1064" />+                <face v1="166" v2="170" v3="374" />+                <face v1="166" v2="165" v3="170" />+                <face v1="162" v2="164" v3="163" />+                <face v1="162" v2="161" v3="164" />+                <face v1="371" v2="390" v3="157" />+                <face v1="371" v2="1001" v3="390" />+                <face v1="357" v2="1346" v3="356" />+                <face v1="357" v2="980" v3="1346" />+                <face v1="1072" v2="175" v3="177" />+                <face v1="1244" v2="175" v3="1072" />+                <face v1="977" v2="158" v3="155" />+                <face v1="977" v2="159" v3="158" />+                <face v1="155" v2="1243" v3="1006" />+                <face v1="158" v2="1243" v3="155" />+                <face v1="1241" v2="162" v3="1074" />+                <face v1="162" v2="1241" v3="157" />+                <face v1="990" v2="1243" v3="1241" />+                <face v1="990" v2="1240" v3="1243" />+                <face v1="376" v2="1242" v3="375" />+                <face v1="1242" v2="376" v3="395" />+                <face v1="139" v2="990" v3="140" />+                <face v1="377" v2="990" v3="139" />+                <face v1="379" v2="1004" v3="1240" />+                <face v1="379" v2="380" v3="1004" />+                <face v1="1238" v2="1257" v3="1236" />+                <face v1="1257" v2="1238" v3="1239" />+                <face v1="1234" v2="1237" v3="1232" />+                <face v1="1234" v2="1235" v3="1237" />+                <face v1="47" v2="138" v3="1233" />+                <face v1="46" v2="138" v3="47" />+                <face v1="1221" v2="137" v3="1014" />+                <face v1="1635" v2="137" v3="1221" />+                <face v1="1174" v2="1112" v3="1110" />+                <face v1="1179" v2="1112" v3="1174" />+                <face v1="401" v2="37" v3="36" />+                <face v1="401" v2="1229" v3="37" />+                <face v1="1231" v2="130" v3="1176" />+                <face v1="1231" v2="128" v3="130" />+                <face v1="1007" v2="1231" v3="1126" />+                <face v1="1167" v2="1231" v3="1007" />+                <face v1="1010" v2="131" v3="128" />+                <face v1="1010" v2="402" v3="131" />+                <face v1="1230" v2="342" v3="1229" />+                <face v1="1321" v2="342" v3="1230" />+                <face v1="1183" v2="1078" v3="1227" />+                <face v1="1183" v2="1181" v3="1078" />+                <face v1="1224" v2="1226" v3="1222" />+                <face v1="1224" v2="1498" v3="1226" />+                <face v1="1192" v2="1079" v3="1191" />+                <face v1="1079" v2="1192" v3="1222" />+                <face v1="125" v2="49" v3="123" />+                <face v1="125" v2="1013" v3="49" />+                <face v1="122" v2="1635" v3="1221" />+                <face v1="122" v2="119" v3="1635" />+                <face v1="117" v2="323" v3="314" />+                <face v1="117" v2="116" v3="323" />+                <face v1="987" v2="1220" v3="972" />+                <face v1="1029" v2="1220" v3="987" />+                <face v1="313" v2="1019" v3="1324" />+                <face v1="1019" v2="313" v3="317" />+                <face v1="1324" v2="1021" v3="1323" />+                <face v1="1021" v2="1324" v3="1019" />+                <face v1="1323" v2="1329" v3="1325" />+                <face v1="1329" v2="1323" v3="1021" />+                <face v1="384" v2="1325" v3="1329" />+                <face v1="384" v2="985" v3="1325" />+                <face v1="1081" v2="986" v3="383" />+                <face v1="1081" v2="1028" v3="986" />+                <face v1="1212" v2="298" v3="299" />+                <face v1="1212" v2="106" v3="298" />+                <face v1="299" v2="1210" v3="1212" />+                <face v1="299" v2="1637" v3="1210" />+                <face v1="104" v2="1320" v3="1319" />+                <face v1="104" v2="1208" v3="1320" />+                <face v1="100" v2="1319" v3="1083" />+                <face v1="100" v2="104" v3="1319" />+                <face v1="99" v2="1186" v3="98" />+                <face v1="99" v2="304" v3="1186" />+                <face v1="97" v2="1033" v3="307" />+                <face v1="1033" v2="97" v3="96" />+                <face v1="1038" v2="983" v3="385" />+                <face v1="1038" v2="1017" v3="983" />+                <face v1="92" v2="1339" v3="1338" />+                <face v1="92" v2="324" v3="1339" />+                <face v1="325" v2="328" v3="1039" />+                <face v1="328" v2="325" v3="91" />+                <face v1="1203" v2="1026" v3="1328" />+                <face v1="1203" v2="300" v3="1026" />+                <face v1="1327" v2="1204" v3="1326" />+                <face v1="301" v2="1204" v3="1327" />+                <face v1="1322" v2="1202" v3="1636" />+                <face v1="1200" v2="1202" v3="1322" />+                <face v1="1207" v2="1201" v3="1206" />+                <face v1="1207" v2="1199" v3="1201" />+                <face v1="81" v2="339" v3="82" />+                <face v1="81" v2="348" v3="339" />+                <face v1="79" v2="80" v3="78" />+                <face v1="79" v2="83" v3="80" />+                <face v1="76" v2="1015" v3="77" />+                <face v1="345" v2="1015" v3="76" />+                <face v1="63" v2="1188" v3="69" />+                <face v1="65" v2="1188" v3="63" />+                <face v1="60" v2="85" v3="68" />+                <face v1="62" v2="85" v3="60" />+                <face v1="60" v2="1034" v3="61" />+                <face v1="60" v2="67" v3="1034" />+                <face v1="58" v2="23" v3="57" />+                <face v1="58" v2="21" v3="23" />+                <face v1="1424" v2="1197" v3="1142" />+                <face v1="1196" v2="1197" v3="1424" />+                <face v1="1197" v2="55" v3="57" />+                <face v1="1195" v2="55" v3="1197" />+                <face v1="1086" v2="1198" v3="1193" />+                <face v1="1086" v2="1195" v3="1198" />+                <face v1="49" v2="52" v3="1191" />+                <face v1="49" v2="51" v3="52" />+                <face v1="1085" v2="1223" v3="1192" />+                <face v1="1223" v2="1085" v3="1194" />+                <face v1="50" v2="994" v3="993" />+                <face v1="994" v2="50" v3="46" />+                <face v1="1190" v2="1129" v3="1131" />+                <face v1="1051" v2="1129" v3="1190" />+                <face v1="84" v2="66" v3="68" />+                <face v1="66" v2="84" v3="1335" />+                <face v1="70" v2="72" v3="1084" />+                <face v1="70" v2="69" v3="72" />+                <face v1="1079" v2="312" v3="124" />+                <face v1="1225" v2="312" v3="1079" />+                <face v1="1184" v2="42" v3="1181" />+                <face v1="1184" v2="39" v3="42" />+                <face v1="37" v2="1175" v3="35" />+                <face v1="37" v2="1088" v3="1175" />+                <face v1="1180" v2="1168" v3="1179" />+                <face v1="1168" v2="1180" v3="1171" />+                <face v1="1176" v2="399" v3="135" />+                <face v1="399" v2="1176" v3="130" />+                <face v1="1175" v2="1110" v3="1107" />+                <face v1="1174" v2="1110" v3="1175" />+                <face v1="1171" v2="1169" v3="1168" />+                <face v1="1170" v2="1169" v3="1171" />+                <face v1="963" v2="1115" v3="961" />+                <face v1="1115" v2="963" v3="1111" />+                <face v1="1272" v2="1166" v3="1165" />+                <face v1="1451" v2="1166" v3="1272" />+                <face v1="1162" v2="1164" v3="246" />+                <face v1="1162" v2="1161" v3="1164" />+                <face v1="1163" v2="296" v3="965" />+                <face v1="1160" v2="296" v3="1163" />+                <face v1="280" v2="1156" v3="1159" />+                <face v1="280" v2="1157" v3="1156" />+                <face v1="1154" v2="1158" v3="1155" />+                <face v1="1154" v2="1049" v3="1158" />+                <face v1="1151" v2="1047" v3="1153" />+                <face v1="1151" v2="1150" v3="1047" />+                <face v1="1148" v2="1152" v3="1149" />+                <face v1="1148" v2="1145" v3="1152" />+                <face v1="1147" v2="288" v3="1144" />+                <face v1="1146" v2="288" v3="1147" />+                <face v1="1314" v2="290" v3="1347" />+                <face v1="290" v2="1314" v3="1143" />+                <face v1="1318" v2="1142" v3="1141" />+                <face v1="1318" v2="1424" v3="1142" />+                <face v1="1421" v2="275" v3="959" />+                <face v1="273" v2="275" v3="1421" />+                <face v1="1058" v2="1052" v3="264" />+                <face v1="1052" v2="1058" v3="10" />+                <face v1="271" v2="13" v3="245" />+                <face v1="271" v2="11" v3="13" />+                <face v1="19" v2="1166" v3="959" />+                <face v1="19" v2="9" v3="1166" />+                <face v1="1137" v2="1139" v3="1138" />+                <face v1="1137" v2="1136" v3="1139" />+                <face v1="1048" v2="1134" v3="1046" />+                <face v1="1134" v2="1048" v3="1135" />+                <face v1="1129" v2="1132" v3="1131" />+                <face v1="1129" v2="1127" v3="1132" />+                <face v1="1052" v2="1128" v3="1053" />+                <face v1="1052" v2="18" v3="1128" />+                <face v1="1124" v2="34" v3="32" />+                <face v1="1124" v2="1126" v3="34" />+                <face v1="353" v2="1009" v3="351" />+                <face v1="1009" v2="353" v3="1008" />+                <face v1="1125" v2="32" v3="1091" />+                <face v1="32" v2="1125" v3="1124" />+                <face v1="1" v2="4" v3="2" />+                <face v1="1" v2="5" v3="4" />+                <face v1="1" v2="1640" v3="5" />+                <face v1="3" v2="234" v3="1059" />+                <face v1="234" v2="3" v3="1097" />+                <face v1="1123" v2="1061" v3="1122" />+                <face v1="1061" v2="1123" v3="235" />+                <face v1="232" v2="1120" v3="1121" />+                <face v1="233" v2="1120" v3="232" />+                <face v1="136" v2="1098" v3="33" />+                <face v1="136" v2="1097" v3="1098" />+                <face v1="1111" v2="1118" v3="1115" />+                <face v1="1111" v2="1113" v3="1118" />+                <face v1="1110" v2="1114" v3="1108" />+                <face v1="1110" v2="1112" v3="1114" />+                <face v1="1076" v2="1109" v3="1105" />+                <face v1="1076" v2="1107" v3="1109" />+                <face v1="132" v2="1106" v3="1103" />+                <face v1="132" v2="134" v3="1106" />+                <face v1="1101" v2="1379" v3="1641" />+                <face v1="1101" v2="1100" v3="1379" />+            </faces>+            <geometry vertexcount="1642">+                <vertexbuffer positions="true" normals="true" texture_coord_dimensions_0="2" texture_coords="1">+                    <vertex>+                        <position x="21.1612" y="-4.77135" z="-9.04285" />+                        <normal x="0.980344" y="0.0888812" z="0.176141" />+                        <texcoord u="1.94488" v="-2.79905" />+                    </vertex>+                    <vertex>+                        <position x="21.1881" y="-4.67515" z="-9.09515" />+                        <normal x="0.673715" y="0.0389951" z="0.737962" />+                        <texcoord u="1.94414" v="-2.79493" />+                    </vertex>+                    <vertex>+                        <position x="21.1362" y="-4.58585" z="-9.05075" />+                        <normal x="0.835541" y="0.0979136" z="0.540633" />+                        <texcoord u="1.94628" v="-2.79309" />+                    </vertex>+                    <vertex>+                        <position x="21.1261" y="-4.74385" z="-8.95265" />+                        <normal x="0.934808" y="0.0931836" z="0.342711" />+                        <texcoord u="1.94897" v="-2.8003" />+                    </vertex>+                    <vertex>+                        <position x="21.2851" y="-4.58635" z="-9.18225" />+                        <normal x="0.441356" y="0.0136278" z="0.897229" />+                        <texcoord u="1.9433" v="-2.79048" />+                    </vertex>+                    <vertex>+                        <position x="21.2588" y="-4.71615" z="-9.15185" />+                        <normal x="0.627315" y="0.0229275" z="0.778428" />+                        <texcoord u="1.94248" v="-2.79505" />+                    </vertex>+                    <vertex>+                        <position x="21.3132" y="-4.77405" z="-9.19145" />+                        <normal x="0.240314" y="0.0355346" z="0.970045" />+                        <texcoord u="1.94107" v="-2.79604" />+                    </vertex>+                    <vertex>+                        <position x="21.4198" y="-4.73125" z="-9.20345" />+                        <normal x="0.106649" y="0.0126293" z="0.994217" />+                        <texcoord u="1.94364" v="-2.79487" />+                    </vertex>+                    <vertex>+                        <position x="12.0336" y="-13.1908" z="19.8467" />+                        <normal x="0.375262" y="-0.635199" z="0.675056" />+                        <texcoord u="3.92054" v="-2.36131" />+                    </vertex>+                    <vertex>+                        <position x="6.78453" y="-12.4025" z="22.8441" />+                        <normal x="0.204336" y="-0.657326" z="0.725375" />+                        <texcoord u="4.06434" v="-1.9646" />+                    </vertex>+                    <vertex>+                        <position x="9.14807" y="-13.6918" z="20.0161" />+                        <normal x="0.179387" y="-0.672328" z="0.718189" />+                        <texcoord u="4.0397" v="-2.2037" />+                    </vertex>+                    <vertex>+                        <position x="19.4606" y="-22.2183" z="1.10285" />+                        <normal x="0.422936" y="-0.886299" z="0.188678" />+                        <texcoord u="2.60903" v="-3.42386" />+                    </vertex>+                    <vertex>+                        <position x="20.7068" y="-23.0303" z="-4.35655" />+                        <normal x="0.178605" y="-0.983865" z="0.010483" />+                        <texcoord u="2.10704" v="-3.36777" />+                    </vertex>+                    <vertex>+                        <position x="19.8935" y="-22.151" z="0.643452" />+                        <normal x="0.345651" y="-0.884006" z="0.314736" />+                        <texcoord u="2.56199" v="-3.41648" />+                    </vertex>+                    <vertex>+                        <position x="3.46031" y="-14.4347" z="20.1211" />+                        <normal x="0.721853" y="-0.0582175" z="0.689593" />+                        <texcoord u="4.21456" v="-1.79486" />+                    </vertex>+                    <vertex>+                        <position x="4.6679" y="-14.9938" z="18.5288" />+                        <normal x="0.292521" y="-0.364202" z="0.884188" />+                        <texcoord u="4.22555" v="-1.93471" />+                    </vertex>+                    <vertex>+                        <position x="3.61349" y="-14.046" z="20.1533" />+                        <normal x="0.316669" y="-0.688781" z="0.652152" />+                        <texcoord u="4.20135" v="-1.80505" />+                    </vertex>+                    <vertex>+                        <position x="4.52049" y="-15.3072" z="18.6116" />+                        <normal x="0.60571" y="0.135538" z="0.784057" />+                        <texcoord u="4.23609" v="-1.92167" />+                    </vertex>+                    <vertex>+                        <position x="6.93504" y="-14.0773" z="20.1238" />+                        <normal x="-0.193084" y="-0.31394" z="0.929602" />+                        <texcoord u="4.12141" v="-2.05877" />+                    </vertex>+                    <vertex>+                        <position x="6.91476" y="-13.6323" z="20.3934" />+                        <normal x="0.00221567" y="-0.808027" z="0.589142" />+                        <texcoord u="4.10914" v="-2.04561" />+                    </vertex>+                    <vertex>+                        <position x="6.48758" y="-13.8871" z="19.9957" />+                        <normal x="-0.245808" y="-0.628153" z="0.738243" />+                        <texcoord u="4.13088" v="-2.02914" />+                    </vertex>+                    <vertex>+                        <position x="12.8411" y="3.57145" z="-19.0295" />+                        <normal x="0.26542" y="0.0557368" z="-0.96252" />+                        <texcoord u="1.56565" v="-2.1305" />+                    </vertex>+                    <vertex>+                        <position x="13.9309" y="-0.86665" z="-19.7324" />+                        <normal x="0.403572" y="0.211855" z="-0.890082" />+                        <texcoord u="1.45553" v="-2.23739" />+                    </vertex>+                    <vertex>+                        <position x="9.59633" y="3.01255" z="-20.2691" />+                        <normal x="0.187775" y="0.165996" z="-0.968084" />+                        <texcoord u="1.46627" v="-1.98942" />+                    </vertex>+                    <vertex>+                        <position x="15.3106" y="0.646351" z="-18.3099" />+                        <normal x="0.471312" y="-0.0187809" z="-0.881767" />+                        <texcoord u="1.5576" v="-2.28803" />+                    </vertex>+                    <vertex>+                        <position x="16.0699" y="-14.365" z="15.5817" />+                        <normal x="0.493087" y="-0.593687" z="0.635926" />+                        <texcoord u="3.68621" v="-2.72338" />+                    </vertex>+                    <vertex>+                        <position x="18.7036" y="-15.9985" z="11.9876" />+                        <normal x="0.445043" y="-0.562299" z="0.696963" />+                        <texcoord u="3.44251" v="-2.97055" />+                    </vertex>+                    <vertex>+                        <position x="16.2791" y="-12.6306" z="15.2403" />+                        <normal x="0.761384" y="0.0307222" z="0.647573" />+                        <texcoord u="3.63456" v="-2.7119" />+                    </vertex>+                    <vertex>+                        <position x="19.4988" y="-14.1469" z="11.6458" />+                        <normal x="0.673535" y="-0.0417807" z="0.737973" />+                        <texcoord u="3.36827" v="-2.95376" />+                    </vertex>+                    <vertex>+                        <position x="7.22425" y="-10.481" z="23.4258" />+                        <normal x="0.438997" y="-0.0978679" z="0.893143" />+                        <texcoord u="4.00173" v="-1.96312" />+                    </vertex>+                    <vertex>+                        <position x="12.4134" y="-11.3438" z="20.0239" />+                        <normal x="0.70373" y="-0.014193" z="0.710326" />+                        <texcoord u="3.86591" v="-2.34677" />+                    </vertex>+                    <vertex>+                        <position x="20.7067" y="-1.16255" z="-8.86135" />+                        <normal x="0.79542" y="0.19969" z="0.572215" />+                        <texcoord u="1.99206" v="-2.68692" />+                    </vertex>+                    <vertex>+                        <position x="19.5692" y="1.72595" z="-8.46265" />+                        <normal x="0.910984" y="0.389003" z="0.137056" />+                        <texcoord u="2.02936" v="-2.58832" />+                    </vertex>+                    <vertex>+                        <position x="20.3305" y="-0.952747" z="-8.39695" />+                        <normal x="0.903631" y="0.191877" z="0.382927" />+                        <texcoord u="2.00967" v="-2.68717" />+                    </vertex>+                    <vertex>+                        <position x="19.3145" y="2.15935" z="-7.73715" />+                        <normal x="0.921421" y="0.349079" z="0.170666" />+                        <texcoord u="2.06578" v="-2.58397" />+                    </vertex>+                    <vertex>+                        <position x="8.64813" y="5.86675" z="9.39085" />+                        <normal x="0.553895" y="0.571476" z="0.605488" />+                        <texcoord u="3.16734" v="-2.11456" />+                    </vertex>+                    <vertex>+                        <position x="12.4689" y="6.39005" z="5.14315" />+                        <normal x="0.635046" y="0.599043" z="0.487713" />+                        <texcoord u="2.84239" v="-2.33008" />+                    </vertex>+                    <vertex>+                        <position x="7.72986" y="7.62625" z="8.18445" />+                        <normal x="0.516878" y="0.641617" z="0.566714" />+                        <texcoord u="3.06429" v="-2.03295" />+                    </vertex>+                    <vertex>+                        <position x="13.0602" y="4.44055" z="6.27665" />+                        <normal x="0.76285" y="0.447578" z="0.466619" />+                        <texcoord u="2.93896" v="-2.41336" />+                    </vertex>+                    <vertex>+                        <position x="0" y="21.6367" z="7.32815" />+                        <normal x="0" y="0.600504" z="0.799622" />+                        <texcoord u="2.75987" v="-1.5" />+                    </vertex>+                    <vertex>+                        <position x="0" y="19.8607" z="8.22535" />+                        <normal x="0" y="0" z="0" />+                        <texcoord u="2.81246" v="-1.5" />+                    </vertex>+                    <vertex>+                        <position x="0" y="19.8822" z="8.18545" />+                        <normal x="0" y="0.471339" z="0.881952" />+                        <texcoord u="2.81079" v="-1.5" />+                    </vertex>+                    <vertex>+                        <position x="1.14976" y="21.4765" z="7.19465" />+                        <normal x="0.166178" y="0.5997" z="0.78278" />+                        <texcoord u="2.75701" v="-1.54107" />+                    </vertex>+                    <vertex>+                        <position x="1.40415" y="12.5942" z="9.93405" />+                        <normal x="0.384376" y="-0.766994" z="0.513784" />+                        <texcoord u="3.03003" v="-1.57492" />+                    </vertex>+                    <vertex>+                        <position x="0.99872" y="11.592" z="11.4633" />+                        <normal x="0.849328" y="-0.518743" z="0.0977118" />+                        <texcoord u="3.11971" v="-1.55399" />+                    </vertex>+                    <vertex>+                        <position x="0.71118" y="10.5809" z="10.789" />+                        <normal x="0.793342" y="-0.123147" z="0.59619" />+                        <texcoord u="3.13224" v="-1.54168" />+                    </vertex>+                    <vertex>+                        <position x="12.8457" y="20.2706" z="-11.6289" />+                        <normal x="0.0511668" y="0.978225" z="0.201141" />+                        <texcoord u="2.12227" v="-1.91726" />+                    </vertex>+                    <vertex>+                        <position x="13.9364" y="20.8209" z="-12.8357" />+                        <normal x="-0.12755" y="0.941783" z="0.311089" />+                        <texcoord u="2.10197" v="-1.93216" />+                    </vertex>+                    <vertex>+                        <position x="11.9206" y="19.7847" z="-16.9291" />+                        <normal x="-0.5119" y="0.79954" z="-0.314157" />+                        <texcoord u="1.97419" v="-1.87025" />+                    </vertex>+                    <vertex>+                        <position x="11.5561" y="21.291" z="-8.41545" />+                        <normal x="0.677208" y="0.727886" z="-0.107569" />+                        <texcoord u="2.223" v="-1.88037" />+                    </vertex>+                    <vertex>+                        <position x="12.4516" y="20.2323" z="-10.5964" />+                        <normal x="0.436771" y="0.896947" z="-0.0686884" />+                        <texcoord u="2.14947" v="-1.9119" />+                    </vertex>+                    <vertex>+                        <position x="11.0286" y="20.7785" z="-11.9663" />+                        <normal x="0.534629" y="0.799017" z="-0.275217" />+                        <texcoord u="2.11122" v="-1.85831" />+                    </vertex>+                    <vertex>+                        <position x="8.04452" y="22.903" z="-12.0348" />+                        <normal x="0.479841" y="0.812027" z="-0.332212" />+                        <texcoord u="2.12709" v="-1.74926" />+                    </vertex>+                    <vertex>+                        <position x="10.3474" y="19.6572" z="-15.8336" />+                        <normal x="0.230301" y="0.829799" z="-0.508326" />+                        <texcoord u="1.98963" v="-1.83353" />+                    </vertex>+                    <vertex>+                        <position x="7.6796" y="20.8863" z="-15.7727" />+                        <normal x="0.218386" y="0.700018" z="-0.679914" />+                        <texcoord u="2.00016" v="-1.74337" />+                    </vertex>+                    <vertex>+                        <position x="7.16089" y="16.6426" z="-19.0587" />+                        <normal x="0.0361765" y="0.335631" z="-0.941299" />+                        <texcoord u="1.84035" v="-1.74785" />+                    </vertex>+                    <vertex>+                        <position x="9.76321" y="15.9692" z="-19.2511" />+                        <normal x="0.0860199" y="0.332351" z="-0.939225" />+                        <texcoord u="1.83723" v="-1.83612" />+                    </vertex>+                    <vertex>+                        <position x="7.56577" y="11.2464" z="-19.8356" />+                        <normal x="0.0495858" y="0.0959434" z="-0.994151" />+                        <texcoord u="1.69429" v="-1.80731" />+                    </vertex>+                    <vertex>+                        <position x="10.6321" y="9.21625" z="-19.5098" />+                        <normal x="0.176528" y="0.0443132" z="-0.983298" />+                        <texcoord u="1.67715" v="-1.94842" />+                    </vertex>+                    <vertex>+                        <position x="0" y="15.6691" z="9.15935" />+                        <normal x="0" y="0.897651" z="0.440706" />+                        <texcoord u="2.92095" v="-1.5" />+                    </vertex>+                    <vertex>+                        <position x="1.59559" y="14.7113" z="10.0227" />+                        <normal x="0.527177" y="0.81754" z="0.231761" />+                        <texcoord u="2.97459" v="-1.57555" />+                    </vertex>+                    <vertex>+                        <position x="1.05031" y="15.056" z="8.87005" />+                        <normal x="0.647959" y="0.534452" z="0.542688" />+                        <texcoord u="2.92314" v="-1.5501" />+                    </vertex>+                    <vertex>+                        <position x="0" y="15.0567" z="10.7341" />+                        <normal x="0" y="0.868796" z="0.495171" />+                        <texcoord u="2.99285" v="-1.5" />+                    </vertex>+                    <vertex>+                        <position x="3.28767" y="12.7197" z="7.37505" />+                        <normal x="0.924903" y="0.237849" z="0.296617" />+                        <texcoord u="2.91111" v="-1.68327" />+                    </vertex>+                    <vertex>+                        <position x="2.7112" y="13.6427" z="7.67205" />+                        <normal x="0.777577" y="0.540901" z="0.320626" />+                        <texcoord u="2.90351" v="-1.6426" />+                    </vertex>+                    <vertex>+                        <position x="3.03714" y="13.3571" z="8.20525" />+                        <normal x="0.822836" y="0.565158" z="-0.0594772" />+                        <texcoord u="2.93278" v="-1.66019" />+                    </vertex>+                    <vertex>+                        <position x="2.808" y="13.6077" z="9.86025" />+                        <normal x="0.761694" y="0.616702" z="0.19875" />+                        <texcoord u="2.99417" v="-1.64073" />+                    </vertex>+                    <vertex>+                        <position x="2.54503" y="14.0116" z="9.03555" />+                        <normal x="0.705776" y="0.708259" z="-0.0157709" />+                        <texcoord u="2.95213" v="-1.62735" />+                    </vertex>+                    <vertex>+                        <position x="1.81328" y="14.1795" z="10.7433" />+                        <normal x="0.525091" y="0.711364" z="0.467163" />+                        <texcoord u="3.01409" v="-1.58677" />+                    </vertex>+                    <vertex>+                        <position x="3.63455" y="12.1114" z="7.86875" />+                        <normal x="0.989422" y="0.139231" z="-0.0407357" />+                        <texcoord u="2.94875" v="-1.70727" />+                    </vertex>+                    <vertex>+                        <position x="3.47203" y="11.5032" z="7.12475" />+                        <normal x="0.992412" y="0.0342952" z="0.118077" />+                        <texcoord u="2.93158" v="-1.71032" />+                    </vertex>+                    <vertex>+                        <position x="3.46092" y="11.9207" z="6.79375" />+                        <normal x="0.97771" y="0.0688147" z="0.198361" />+                        <texcoord u="2.90348" v="-1.70554" />+                    </vertex>+                    <vertex>+                        <position x="3.56234" y="11.6281" z="8.62945" />+                        <normal x="0.967473" y="-0.223699" z="0.118133" />+                        <texcoord u="2.9976" v="-1.70541" />+                    </vertex>+                    <vertex>+                        <position x="3.34127" y="12.1185" z="9.83235" />+                        <normal x="0.936686" y="-0.119426" z="0.329177" />+                        <texcoord u="3.03382" v="-1.68141" />+                    </vertex>+                    <vertex>+                        <position x="3.29581" y="11.4204" z="9.26765" />+                        <normal x="0.80002" y="-0.523061" z="0.293897" />+                        <texcoord u="3.0331" v="-1.68958" />+                    </vertex>+                    <vertex>+                        <position x="3.40317" y="12.3431" z="9.52175" />+                        <normal x="0.968658" y="0.156665" z="0.192763" />+                        <texcoord u="3.01432" v="-1.68382" />+                    </vertex>+                    <vertex>+                        <position x="2.52212" y="12.8702" z="11.3497" />+                        <normal x="0.605395" y="-0.321329" z="0.728179" />+                        <texcoord u="3.07071" v="-1.62682" />+                    </vertex>+                    <vertex>+                        <position x="2.3221" y="13.2262" z="11.2615" />+                        <normal x="0.59141" y="0.500549" z="0.632206" />+                        <texcoord u="3.05774" v="-1.61501" />+                    </vertex>+                    <vertex>+                        <position x="1.95372" y="12.8142" z="11.7785" />+                        <normal x="0.587669" y="-0.315079" z="0.745232" />+                        <texcoord u="3.08884" v="-1.59767" />+                    </vertex>+                    <vertex>+                        <position x="0.99529" y="13.1088" z="12.0112" />+                        <normal x="0.287784" y="0.2749" z="0.917393" />+                        <texcoord u="3.08959" v="-1.54886" />+                    </vertex>+                    <vertex>+                        <position x="1.59831" y="12.4377" z="11.9009" />+                        <normal x="0.623558" y="-0.497589" z="0.602977" />+                        <texcoord u="3.10557" v="-1.58133" />+                    </vertex>+                    <vertex>+                        <position x="0.45492" y="11.4373" z="11.7935" />+                        <normal x="0.23521" y="-0.522398" z="0.81962" />+                        <texcoord u="3.13702" v="-1.52457" />+                    </vertex>+                    <vertex>+                        <position x="0.91174" y="11.5134" z="11.5956" />+                        <normal x="0.713439" y="-0.543692" z="0.442045" />+                        <texcoord u="3.12712" v="-1.54931" />+                    </vertex>+                    <vertex>+                        <position x="0.79798" y="12.3389" z="12.115" />+                        <normal x="0.202251" y="-0.161002" z="0.966009" />+                        <texcoord u="3.11724" v="-1.54066" />+                    </vertex>+                    <vertex>+                        <position x="2.12209" y="13.5824" z="11.1732" />+                        <normal x="0.527689" y="0.578373" z="0.622117" />+                        <texcoord u="3.04499" v="-1.60351" />+                    </vertex>+                    <vertex>+                        <position x="0" y="14.3588" z="11.616" />+                        <normal x="0" y="0.73585" z="0.677144" />+                        <texcoord u="3.04128" v="-1.5" />+                    </vertex>+                    <vertex>+                        <position x="0" y="13.5725" z="12.1443" />+                        <normal x="-0.0604715" y="0.418969" z="0.905985" />+                        <texcoord u="3.08085" v="-1.5" />+                    </vertex>+                    <vertex>+                        <position x="11.5538" y="22.5659" z="-1.94855" />+                        <normal x="0.183832" y="0.967432" z="-0.174013" />+                        <texcoord u="2.43662" v="-1.8758" />+                    </vertex>+                    <vertex>+                        <position x="10.6328" y="22.4037" z="1.35715" />+                        <normal x="0.365361" y="0.863622" z="0.347374" />+                        <texcoord u="2.54496" v="-1.85226" />+                    </vertex>+                    <vertex>+                        <position x="12.4513" y="22.3944" z="-1.27635" />+                        <normal x="0.449042" y="0.893459" z="0.0096533" />+                        <texcoord u="2.45864" v="-1.90346" />+                    </vertex>+                    <vertex>+                        <position x="11.9871" y="16.4194" z="-1.71385" />+                        <normal x="0.703883" y="-0.576988" z="0.414286" />+                        <texcoord u="2.42843" v="-2.00058" />+                    </vertex>+                    <vertex>+                        <position x="12.1021" y="16.6207" z="-1.73205" />+                        <normal x="0.658052" y="-0.619358" z="0.42821" />+                        <texcoord u="2.4285" v="-1.99958" />+                    </vertex>+                    <vertex>+                        <position x="11.0235" y="16.7644" z="-0.382347" />+                        <normal x="0.55567" y="-0.658381" z="0.507706" />+                        <texcoord u="2.48395" v="-1.96282" />+                    </vertex>+                    <vertex>+                        <position x="8.04471" y="16.7872" z="2.40995" />+                        <normal x="0.389534" y="-0.888349" z="0.243102" />+                        <texcoord u="2.60593" v="-1.8536" />+                    </vertex>+                    <vertex>+                        <position x="8.67963" y="17.4768" z="3.91255" />+                        <normal x="0.496038" y="-0.792274" z="0.355315" />+                        <texcoord u="2.66313" v="-1.86188" />+                    </vertex>+                    <vertex>+                        <position x="7.09661" y="16.4636" z="3.49725" />+                        <normal x="0.506593" y="-0.835132" z="0.214286" />+                        <texcoord u="2.65758" v="-1.81976" />+                    </vertex>+                    <vertex>+                        <position x="1.07129" y="15.1499" z="8.82175" />+                        <normal x="0.374203" y="-0.163195" z="0.912874" />+                        <texcoord u="2.91907" v="-1.55089" />+                    </vertex>+                    <vertex>+                        <position x="1.50806" y="15.6259" z="9.09525" />+                        <normal x="0.115591" y="-0.405298" z="0.906847" />+                        <texcoord u="2.91847" v="-1.56939" />+                    </vertex>+                    <vertex>+                        <position x="0" y="15.7817" z="9.08525" />+                        <normal x="0" y="0.0208639" z="0.999782" />+                        <texcoord u="2.91567" v="-1.5" />+                    </vertex>+                    <vertex>+                        <position x="0.80145" y="16.691" z="9.31315" />+                        <normal x="-0.084443" y="-0.079712" z="0.993235" />+                        <texcoord u="2.90476" v="-1.53483" />+                    </vertex>+                    <vertex>+                        <position x="3.89601" y="17.8012" z="8.98785" />+                        <normal x="0.364794" y="-0.0395625" z="0.930247" />+                        <texcoord u="2.86731" v="-1.65922" />+                    </vertex>+                    <vertex>+                        <position x="3.06358" y="16.0984" z="8.88395" />+                        <normal x="0.337565" y="-0.401365" z="0.851444" />+                        <texcoord u="2.8975" v="-1.63708" />+                    </vertex>+                    <vertex>+                        <position x="4.37759" y="16.4879" z="8.48595" />+                        <normal x="0.564467" y="-0.41765" z="0.712001" />+                        <texcoord u="2.87124" v="-1.69151" />+                    </vertex>+                    <vertex>+                        <position x="6.98943" y="17.713" z="6.51605" />+                        <normal x="0.661209" y="-0.380908" z="0.646306" />+                        <texcoord u="2.76846" v="-1.78796" />+                    </vertex>+                    <vertex>+                        <position x="6.47914" y="18.7659" z="7.25675" />+                        <normal x="0.604669" y="0.0729128" z="0.793133" />+                        <texcoord u="2.7839" v="-1.75347" />+                    </vertex>+                    <vertex>+                        <position x="14.0272" y="20.1321" z="-1.95225" />+                        <normal x="0.97669" y="0.106226" z="0.18653" />+                        <texcoord u="2.43275" v="-1.98319" />+                    </vertex>+                    <vertex>+                        <position x="13.3316" y="20.1879" z="-0.282749" />+                        <normal x="0.900695" y="0.00894676" z="0.434361" />+                        <texcoord u="2.49015" v="-1.96442" />+                    </vertex>+                    <vertex>+                        <position x="13.8423" y="19.4422" z="-1.94765" />+                        <normal x="0.917359" y="-0.249735" z="0.309977" />+                        <texcoord u="2.43089" v="-1.99121" />+                    </vertex>+                    <vertex>+                        <position x="3.68476" y="13.069" z="7.31065" />+                        <normal x="0.28385" y="-0.312135" z="0.906643" />+                        <texcoord u="2.89768" v="-1.70044" />+                    </vertex>+                    <vertex>+                        <position x="2.80026" y="13.6843" z="7.57645" />+                        <normal x="0.444848" y="0.10701" z="0.88919" />+                        <texcoord u="2.89802" v="-1.64711" />+                    </vertex>+                    <vertex>+                        <position x="3.3919" y="12.7468" z="7.28205" />+                        <normal x="0.508218" y="-0.244232" z="0.825872" />+                        <texcoord u="2.90565" v="-1.68895" />+                    </vertex>+                    <vertex>+                        <position x="9.27316" y="13.1361" z="3.59295" />+                        <normal x="0.693846" y="0.320218" z="0.64501" />+                        <texcoord u="2.6863" v="-1.98084" />+                    </vertex>+                    <vertex>+                        <position x="10.7317" y="12.6844" z="1.88725" />+                        <normal x="0.841107" y="0.0723755" z="0.536004" />+                        <texcoord u="2.59782" v="-2.05624" />+                    </vertex>+                    <vertex>+                        <position x="10.2332" y="13.6222" z="2.19665" />+                        <normal x="0.700963" y="0.412565" z="0.581757" />+                        <texcoord u="2.60942" v="-2.00972" />+                    </vertex>+                    <vertex>+                        <position x="9.40246" y="12.2264" z="3.41735" />+                        <normal x="0.776286" y="-0.0205399" z="0.630047" />+                        <texcoord u="2.68641" v="-2.01289" />+                    </vertex>+                    <vertex>+                        <position x="12.9851" y="11.0849" z="-2.94175" />+                        <normal x="0.801836" y="0.461276" z="0.379847" />+                        <texcoord u="2.34589" v="-2.18027" />+                    </vertex>+                    <vertex>+                        <position x="13.2768" y="12.5806" z="-5.82495" />+                        <normal x="0.907378" y="0.338671" z="0.248931" />+                        <texcoord u="2.22629" v="-2.12386" />+                    </vertex>+                    <vertex>+                        <position x="12.0091" y="14.0542" z="-3.37905" />+                        <normal x="0.934247" y="0.151885" z="0.322666" />+                        <texcoord u="2.34353" v="-2.0561" />+                    </vertex>+                    <vertex>+                        <position x="11.7234" y="12.3825" z="-1.75025" />+                        <normal x="0.901874" y="0.161312" z="0.400752" />+                        <texcoord u="2.41028" v="-2.10097" />+                    </vertex>+                    <vertex>+                        <position x="14.3962" y="16.8471" z="-9.14535" />+                        <normal x="0.916292" y="-0.246756" z="0.315469" />+                        <texcoord u="2.16225" v="-2.03168" />+                    </vertex>+                    <vertex>+                        <position x="13.4595" y="16.0058" z="-7.09185" />+                        <normal x="0.938946" y="-0.170251" z="0.298991" />+                        <texcoord u="2.21807" v="-2.03508" />+                    </vertex>+                    <vertex>+                        <position x="13.5693" y="15.6888" z="-7.85905" />+                        <normal x="0.936691" y="-0.324716" z="0.131033" />+                        <texcoord u="2.18686" v="-2.04066" />+                    </vertex>+                    <vertex>+                        <position x="13.6974" y="17.3194" z="-7.15685" />+                        <normal x="0.948192" y="0.00184814" z="0.317692" />+                        <texcoord u="2.23151" v="-2.01385" />+                    </vertex>+                    <vertex>+                        <position x="10.9812" y="22.297" z="-3.90985" />+                        <normal x="0.721958" y="0.691898" z="0.00739497" />+                        <texcoord u="2.37142" v="-1.86112" />+                    </vertex>+                    <vertex>+                        <position x="10.5118" y="22.5658" z="-2.69175" />+                        <normal x="0.610147" y="0.787425" z="0.087643" />+                        <texcoord u="2.41152" v="-1.84553" />+                    </vertex>+                    <vertex>+                        <position x="11.3815" y="21.7989" z="-3.93245" />+                        <normal x="0.756412" y="0.652611" z="-0.0440465" />+                        <texcoord u="2.36885" v="-1.8796" />+                    </vertex>+                    <vertex>+                        <position x="3.61487" y="20.5929" z="6.90565" />+                        <normal x="0.258925" y="0.62009" z="0.740572" />+                        <texcoord u="2.75511" v="-1.63354" />+                    </vertex>+                    <vertex>+                        <position x="2.37618" y="21.1968" z="7.08075" />+                        <normal x="0.331148" y="0.504232" z="0.797553" />+                        <texcoord u="2.75558" v="-1.58577" />+                    </vertex>+                    <vertex>+                        <position x="15.1142" y="6.81155" z="-0.898647" />+                        <normal x="0.774885" y="0.525032" z="0.351986" />+                        <texcoord u="2.44578" v="-2.41197" />+                    </vertex>+                    <vertex>+                        <position x="14.7607" y="5.23735" z="2.06405" />+                        <normal x="0.798069" y="0.468753" z="0.378625" />+                        <texcoord u="2.63587" v="-2.47164" />+                    </vertex>+                    <vertex>+                        <position x="16.3912" y="4.35655" z="-0.852047" />+                        <normal x="0.882424" y="0.322015" z="0.342978" />+                        <texcoord u="2.44583" v="-2.54213" />+                    </vertex>+                    <vertex>+                        <position x="13.4651" y="7.10775" z="1.85185" />+                        <normal x="0.725767" y="0.564901" z="0.392618" />+                        <texcoord u="2.61807" v="-2.35849" />+                    </vertex>+                    <vertex>+                        <position x="16.8938" y="-0.230846" z="3.37865" />+                        <normal x="0.86433" y="0.378733" z="0.3309" />+                        <texcoord u="2.74723" v="-2.73618" />+                    </vertex>+                    <vertex>+                        <position x="15.4487" y="2.49295" z="2.40995" />+                        <normal x="0.869407" y="0.363346" z="0.33483" />+                        <texcoord u="2.67327" v="-2.61075" />+                    </vertex>+                    <vertex>+                        <position x="13.7059" y="1.90145" z="7.39025" />+                        <normal x="0.713521" y="0.401478" z="0.574198" />+                        <texcoord u="3.04737" v="-2.51514" />+                    </vertex>+                    <vertex>+                        <position x="19.0844" y="-0.41415" z="-5.06625" />+                        <normal x="0.920871" y="0.20926" z="0.328949" />+                        <texcoord u="2.175" v="-2.72428" />+                    </vertex>+                    <vertex>+                        <position x="19.6403" y="-3.57845" z="-5.14225" />+                        <normal x="0.947873" y="0.219661" z="0.230839" />+                        <texcoord u="2.14823" v="-2.84355" />+                    </vertex>+                    <vertex>+                        <position x="13.4396" y="19.0889" z="-9.46425" />+                        <normal x="0.718822" y="0.665459" z="0.201146" />+                        <texcoord u="2.17427" v="-1.96254" />+                    </vertex>+                    <vertex>+                        <position x="14.2695" y="19.3051" z="-10.8262" />+                        <normal x="0.437775" y="0.718539" z="0.54042" />+                        <texcoord u="2.14024" v="-1.97419" />+                    </vertex>+                    <vertex>+                        <position x="17.9646" y="8.54855" z="-18.9348" />+                        <normal x="0.385874" y="-0.217797" z="-0.896474" />+                        <texcoord u="1.77591" v="-2.18699" />+                    </vertex>+                    <vertex>+                        <position x="18.857" y="8.02185" z="-18.201" />+                        <normal x="0.642889" y="-0.190715" z="-0.741837" />+                        <texcoord u="1.79605" v="-2.22932" />+                    </vertex>+                    <vertex>+                        <position x="19.0238" y="4.18565" z="-18.0565" />+                        <normal x="0.666633" y="-0.0721255" z="-0.741889" />+                        <texcoord u="1.72616" v="-2.3153" />+                    </vertex>+                    <vertex>+                        <position x="17.1487" y="5.87025" z="-18.9981" />+                        <normal x="0.398331" y="-0.0535356" z="-0.915678" />+                        <texcoord u="1.7053" v="-2.21734" />+                    </vertex>+                    <vertex>+                        <position x="16.6725" y="2.73575" z="-19.0273" />+                        <normal x="0.243624" y="-0.34149" z="-0.907762" />+                        <texcoord u="1.62433" v="-2.2673" />+                    </vertex>+                    <vertex>+                        <position x="18.7021" y="1.21575" z="-17.1471" />+                        <normal x="0.576432" y="-0.583745" z="-0.571811" />+                        <texcoord u="1.681" v="-2.39327" />+                    </vertex>+                    <vertex>+                        <position x="17.6832" y="-0.199551" z="-16.4254" />+                        <normal x="0.60074" y="-0.513088" z="-0.613068" />+                        <texcoord u="1.64481" v="-2.42068" />+                    </vertex>+                    <vertex>+                        <position x="15.8065" y="0.822151" z="-18.2498" />+                        <normal x="0.21338" y="-0.421305" z="-0.88146" />+                        <texcoord u="1.57561" v="-2.30063" />+                    </vertex>+                    <vertex>+                        <position x="22.3744" y="22.5943" z="-19.022" />+                        <normal x="0.854086" y="-0.396596" z="0.336524" />+                        <texcoord u="2.02836" v="-2.05476" />+                    </vertex>+                    <vertex>+                        <position x="24.2388" y="24.6323" z="-21.5214" />+                        <normal x="0.877003" y="-0.202051" z="0.435937" />+                        <texcoord u="2.0134" v="-2.04804" />+                    </vertex>+                    <vertex>+                        <position x="22.3096" y="23.5379" z="-18.7383" />+                        <normal x="0.649446" y="0.32018" z="0.689713" />+                        <texcoord u="2.04385" v="-2.04309" />+                    </vertex>+                    <vertex>+                        <position x="24.1968" y="25.2485" z="-21.5873" />+                        <normal x="0.695946" y="0.400032" z="0.59635" />+                        <texcoord u="2.01833" v="-2.0399" />+                    </vertex>+                    <vertex>+                        <position x="24.0769" y="23.8463" z="-21.6568" />+                        <normal x="0.842781" y="-0.234898" z="0.484296" />+                        <texcoord u="2.00184" v="-2.05383" />+                    </vertex>+                    <vertex>+                        <position x="25.4641" y="26.4963" z="-24.339" />+                        <normal x="0.957081" y="0.0314502" z="0.288111" />+                        <texcoord u="1.9909" v="-2.03263" />+                    </vertex>+                    <vertex>+                        <position x="21.4379" y="21.5177" z="-19.9281" />+                        <normal x="0.66685" y="-0.356031" z="0.654639" />+                        <texcoord u="1.99241" v="-2.04605" />+                    </vertex>+                    <vertex>+                        <position x="18.4235" y="19.3267" z="-18.257" />+                        <normal x="0.703391" y="-0.239453" z="0.669256" />+                        <texcoord u="1.97884" v="-2.02592" />+                    </vertex>+                    <vertex>+                        <position x="20.6664" y="19.0829" z="-19.8766" />+                        <normal x="0.560846" y="0.053059" z="0.826218" />+                        <texcoord u="1.95742" v="-2.06414" />+                    </vertex>+                    <vertex>+                        <position x="18.6939" y="18.3284" z="-18.3853" />+                        <normal x="0.639646" y="0.0958465" z="0.762671" />+                        <texcoord u="1.96392" v="-2.04508" />+                    </vertex>+                    <vertex>+                        <position x="18.9849" y="11.9869" z="-17.3027" />+                        <normal x="0.751011" y="0.133452" z="0.646663" />+                        <texcoord u="1.89204" v="-2.16707" />+                    </vertex>+                    <vertex>+                        <position x="19.8451" y="15.7192" z="-18.7235" />+                        <normal x="0.484119" y="0.189" z="0.854346" />+                        <texcoord u="1.92762" v="-2.10666" />+                    </vertex>+                    <vertex>+                        <position x="19.0358" y="15.2369" z="-18.1477" />+                        <normal x="0.645273" y="0.158492" z="0.747331" />+                        <texcoord u="1.9258" v="-2.1023" />+                    </vertex>+                    <vertex>+                        <position x="18.5332" y="10.6628" z="-16.1841" />+                        <normal x="0.768345" y="0.00464257" z="0.640019" />+                        <texcoord u="1.89185" v="-2.19642" />+                    </vertex>+                    <vertex>+                        <position x="18.0252" y="8.89495" z="-15.8596" />+                        <normal x="0.610508" y="0.368336" z="0.701148" />+                        <texcoord u="1.8608" v="-2.22648" />+                    </vertex>+                    <vertex>+                        <position x="18.3088" y="8.56165" z="-16.1205" />+                        <normal x="0.801253" y="0.25532" z="0.541115" />+                        <texcoord u="1.85146" v="-2.23657" />+                    </vertex>+                    <vertex>+                        <position x="18.6214" y="7.50295" z="-14.9576" />+                        <normal x="0.845204" y="0.36112" z="0.393984" />+                        <texcoord u="1.86888" v="-2.28571" />+                    </vertex>+                    <vertex>+                        <position x="18.1978" y="7.94465" z="-14.5897" />+                        <normal x="0.699933" y="0.613804" z="0.365155" />+                        <texcoord u="1.88152" v="-2.27144" />+                    </vertex>+                    <vertex>+                        <position x="17.9705" y="7.48815" z="-13.5361" />+                        <normal x="0.693305" y="0.400168" z="0.599328" />+                        <texcoord u="1.90176" v="-2.29422" />+                    </vertex>+                    <vertex>+                        <position x="18.3147" y="6.19985" z="-13.6559" />+                        <normal x="0.731406" y="0.100943" z="0.67443" />+                        <texcoord u="1.87886" v="-2.33304" />+                    </vertex>+                    <vertex>+                        <position x="16.1423" y="7.81295" z="-12.2038" />+                        <normal x="0.916345" y="0.201828" z="0.3458" />+                        <texcoord u="1.92299" v="-2.26323" />+                    </vertex>+                    <vertex>+                        <position x="16.1154" y="8.45485" z="-12.4027" />+                        <normal x="0.916312" y="0.239127" z="0.321233" />+                        <texcoord u="1.92886" v="-2.24211" />+                    </vertex>+                    <vertex>+                        <position x="15.9808" y="8.55745" z="-11.9489" />+                        <normal x="0.959773" y="0.11371" z="0.25672" />+                        <texcoord u="1.94453" v="-2.2429" />+                    </vertex>+                    <vertex>+                        <position x="16.8326" y="7.55365" z="-12.9158" />+                        <normal x="0.671784" y="0.312062" z="0.671806" />+                        <texcoord u="1.90475" v="-2.27577" />+                    </vertex>+                    <vertex>+                        <position x="16.9023" y="16.6716" z="-13.4629" />+                        <normal x="0.85258" y="-0.490183" z="0.181187" />+                        <texcoord u="2.04702" v="-2.06871" />+                    </vertex>+                    <vertex>+                        <position x="17.0792" y="17.3999" z="-12.7628" />+                        <normal x="0.779695" y="-0.290137" z="0.554885" />+                        <texcoord u="2.0778" v="-2.06499" />+                    </vertex>+                    <vertex>+                        <position x="15.3877" y="17.0814" z="-10.8003" />+                        <normal x="0.789325" y="-0.256308" z="0.557917" />+                        <texcoord u="2.11907" v="-2.04274" />+                    </vertex>+                    <vertex>+                        <position x="15.3239" y="16.3689" z="-11.3384" />+                        <normal x="0.74943" y="-0.386405" z="0.53763" />+                        <texcoord u="2.09234" v="-2.05096" />+                    </vertex>+                    <vertex>+                        <position x="18.3389" y="19.8537" z="-13.8218" />+                        <normal x="0.704523" y="0.0917173" z="0.70373" />+                        <texcoord u="2.08909" v="-2.0452" />+                    </vertex>+                    <vertex>+                        <position x="16.6179" y="18.8598" z="-12.2457" />+                        <normal x="0.660607" y="0.182283" z="0.728266" />+                        <texcoord u="2.10794" v="-2.03204" />+                    </vertex>+                    <vertex>+                        <position x="18.8691" y="18.8544" z="-14.8269" />+                        <normal x="0.801012" y="-0.573896" z="0.170364" />+                        <texcoord u="2.05511" v="-2.06618" />+                    </vertex>+                    <vertex>+                        <position x="17.804" y="18.501" z="-16.477" />+                        <normal x="0.722552" y="-0.681462" z="-0.116305" />+                        <texcoord u="2.00314" v="-2.03687" />+                    </vertex>+                    <vertex>+                        <position x="16.8326" y="17.3184" z="-15.2568" />+                        <normal x="0.731889" y="-0.64229" z="-0.227602" />+                        <texcoord u="2.00862" v="-2.04213" />+                    </vertex>+                    <vertex>+                        <position x="17.6342" y="9.09025" z="-15.776" />+                        <normal x="0.379104" y="0.41545" z="0.826851" />+                        <texcoord u="1.86118" v="-2.21406" />+                    </vertex>+                    <vertex>+                        <position x="17.4639" y="9.42495" z="-15.7389" />+                        <normal x="0.272254" y="0.276325" z="0.921695" />+                        <texcoord u="1.86629" v="-2.20316" />+                    </vertex>+                    <vertex>+                        <position x="16.5107" y="8.66745" z="-14.8605" />+                        <normal x="0.310631" y="0.545282" z="0.778573" />+                        <texcoord u="1.86182" v="-2.20905" />+                    </vertex>+                    <vertex>+                        <position x="17.7427" y="8.22535" z="-14.5128" />+                        <normal x="0.30216" y="0.805596" z="0.509622" />+                        <texcoord u="1.88217" v="-2.25534" />+                    </vertex>+                    <vertex>+                        <position x="16.2661" y="16.8558" z="-16.8735" />+                        <normal x="0.86497" y="-0.283735" z="0.413911" />+                        <texcoord u="1.95727" v="-2.02319" />+                    </vertex>+                    <vertex>+                        <position x="15.9076" y="16.3279" z="-16.288" />+                        <normal x="0.975701" y="-0.101505" z="0.194174" />+                        <texcoord u="1.95993" v="-2.02746" />+                    </vertex>+                    <vertex>+                        <position x="16.4205" y="16.5241" z="-17.1293" />+                        <normal x="0.643833" y="-0.0424894" z="0.763985" />+                        <texcoord u="1.94708" v="-2.03004" />+                    </vertex>+                    <vertex>+                        <position x="15.8821" y="15.6853" z="-16.0213" />+                        <normal x="0.957837" y="0.10278" z="0.2683" />+                        <texcoord u="1.95563" v="-2.03964" />+                    </vertex>+                    <vertex>+                        <position x="16.8627" y="14.1637" z="-17.1034" />+                        <normal x="0.508254" y="0.205703" z="0.83628" />+                        <texcoord u="1.91181" v="-2.07991" />+                    </vertex>+                    <vertex>+                        <position x="16.5381" y="12.5876" z="-16.2563" />+                        <normal x="0.898122" y="0.178615" z="0.401837" />+                        <texcoord u="1.90116" v="-2.10922" />+                    </vertex>+                    <vertex>+                        <position x="17.0449" y="12.7211" z="-16.6983" />+                        <normal x="0.401019" y="0.272813" z="0.874504" />+                        <texcoord u="1.89801" v="-2.11449" />+                    </vertex>+                    <vertex>+                        <position x="16.293" y="13.9003" z="-16.3343" />+                        <normal x="0.968244" y="0.207674" z="0.139196" />+                        <texcoord u="1.92051" v="-2.07802" />+                    </vertex>+                    <vertex>+                        <position x="16.6404" y="15.0457" z="-14.5041" />+                        <normal x="0.826617" y="0.399201" z="-0.396665" />+                        <texcoord u="1.99149" v="-2.08341" />+                    </vertex>+                    <vertex>+                        <position x="16.9853" y="14.8708" z="-13.9128" />+                        <normal x="0.948083" y="0.283775" z="0.143564" />+                        <texcoord u="2.00811" v="-2.10052" />+                    </vertex>+                    <vertex>+                        <position x="17.3655" y="14.0369" z="-14.5572" />+                        <normal x="0.886725" y="0.391508" z="-0.245848" />+                        <texcoord u="1.9805" v="-2.11972" />+                    </vertex>+                    <vertex>+                        <position x="17.6985" y="13.0633" z="-13.7351" />+                        <normal x="0.963556" y="0.152253" z="0.21995" />+                        <texcoord u="1.99119" v="-2.15563" />+                    </vertex>+                    <vertex>+                        <position x="17.5803" y="12.1557" z="-14.2803" />+                        <normal x="0.957515" y="-0.139972" z="-0.252136" />+                        <texcoord u="1.95902" v="-2.166" />+                    </vertex>+                    <vertex>+                        <position x="17.5055" y="11.5955" z="-13.5049" />+                        <normal x="0.887732" y="-0.178599" z="0.424305" />+                        <texcoord u="1.97126" v="-2.18537" />+                    </vertex>+                    <vertex>+                        <position x="17.4174" y="11.4654" z="-14.0894" />+                        <normal x="0.894847" y="-0.416681" z="-0.160083" />+                        <texcoord u="1.95059" v="-2.17918" />+                    </vertex>+                    <vertex>+                        <position x="20.6273" y="22.9655" z="-23.3753" />+                        <normal x="-0.537715" y="0.189761" z="-0.821494" />+                        <texcoord u="1.94158" v="-1.99277" />+                    </vertex>+                    <vertex>+                        <position x="21.5084" y="25.2323" z="-22.9235" />+                        <normal x="-0.56871" y="0.757509" z="-0.320544" />+                        <texcoord u="1.98095" v="-1.98701" />+                    </vertex>+                    <vertex>+                        <position x="24.6796" y="26.7217" z="-24.8259" />+                        <normal x="-0.283251" y="0.278048" z="-0.917855" />+                        <texcoord u="1.98146" v="-2.01548" />+                    </vertex>+                    <vertex>+                        <position x="11.8741" y="16.3829" z="-19.3728" />+                        <normal x="-0.391841" y="0.284022" z="-0.875096" />+                        <texcoord u="1.85809" v="-1.89344" />+                    </vertex>+                    <vertex>+                        <position x="14.6714" y="12.0821" z="-20.1344" />+                        <normal x="-0.143061" y="-0.0868479" z="-0.985896" />+                        <texcoord u="1.78017" v="-2.02452" />+                    </vertex>+                    <vertex>+                        <position x="13.2041" y="10.4639" z="-19.7867" />+                        <normal x="-0.135531" y="-0.0206089" z="-0.990559" />+                        <texcoord u="1.73456" v="-2.0108" />+                    </vertex>+                    <vertex>+                        <position x="13.3411" y="17.3876" z="-20.046" />+                        <normal x="-0.50477" y="0.193799" z="-0.841219" />+                        <texcoord u="1.8737" v="-1.91682" />+                    </vertex>+                    <vertex>+                        <position x="20.123" y="20.1021" z="-23.1136" />+                        <normal x="-0.267572" y="-0.1824" z="-0.946116" />+                        <texcoord u="1.90567" v="-2.01743" />+                    </vertex>+                    <vertex>+                        <position x="21.233" y="21.6275" z="-23.6363" />+                        <normal x="-0.226846" y="-0.117883" z="-0.96677" />+                        <texcoord u="1.92391" v="-2.01752" />+                    </vertex>+                    <vertex>+                        <position x="15.9414" y="13.9416" z="-20.5497" />+                        <normal x="-0.218548" y="-0.161778" z="-0.962323" />+                        <texcoord u="1.82174" v="-2.02616" />+                    </vertex>+                    <vertex>+                        <position x="18.0081" y="17.173" z="-21.7855" />+                        <normal x="-0.197952" y="-0.227423" z="-0.953464" />+                        <texcoord u="1.87142" v="-2.01959" />+                    </vertex>+                    <vertex>+                        <position x="16.7573" y="10.9769" z="-19.833" />+                        <normal x="0.0836689" y="-0.229453" z="-0.969717" />+                        <texcoord u="1.78831" v="-2.10132" />+                    </vertex>+                    <vertex>+                        <position x="18.7701" y="15.0706" z="-21.0135" />+                        <normal x="0.0933632" y="-0.353297" z="-0.930841" />+                        <texcoord u="1.85925" v="-2.07234" />+                    </vertex>+                    <vertex>+                        <position x="13.9263" y="16.1488" z="-9.68855" />+                        <normal x="0.824882" y="-0.451451" z="0.340238" />+                        <texcoord u="2.13187" v="-2.02915" />+                    </vertex>+                    <vertex>+                        <position x="15.5426" y="13.6967" z="-11.915" />+                        <normal x="0.756422" y="0.108487" z="0.645024" />+                        <texcoord u="2.03498" v="-2.1066" />+                    </vertex>+                    <vertex>+                        <position x="15.1735" y="14.8694" z="-11.7113" />+                        <normal x="0.808721" y="0.0459974" z="0.586391" />+                        <texcoord u="2.05705" v="-2.0739" />+                    </vertex>+                    <vertex>+                        <position x="13.9397" y="15.0169" z="-9.67925" />+                        <normal x="0.862315" y="0.141842" z="0.486101" />+                        <texcoord u="2.11584" v="-2.05325" />+                    </vertex>+                    <vertex>+                        <position x="14.2457" y="12.7796" z="-9.89725" />+                        <normal x="0.869909" y="0.130524" z="0.475629" />+                        <texcoord u="2.07509" v="-2.1116" />+                    </vertex>+                    <vertex>+                        <position x="14.8485" y="11.0382" z="-10.1285" />+                        <normal x="0.889385" y="0.238426" z="0.39006" />+                        <texcoord u="2.04258" v="-2.17058" />+                    </vertex>+                    <vertex>+                        <position x="15.9212" y="9.53825" z="-12.1333" />+                        <normal x="0.897693" y="0.094827" z="0.430296" />+                        <texcoord u="1.95682" v="-2.21276" />+                    </vertex>+                    <vertex>+                        <position x="15.7127" y="11.0823" z="-12.069" />+                        <normal x="0.714022" y="0.0303812" z="0.699464" />+                        <texcoord u="1.98578" v="-2.16947" />+                    </vertex>+                    <vertex>+                        <position x="16.3736" y="6.55825" z="-11.2021" />+                        <normal x="0.922357" y="0.359795" z="-0.140729" />+                        <texcoord u="1.93764" v="-2.32197" />+                    </vertex>+                    <vertex>+                        <position x="16.8776" y="5.22625" z="-11.512" />+                        <normal x="0.837535" y="0.385207" z="-0.387492" />+                        <texcoord u="1.90794" v="-2.36801" />+                    </vertex>+                    <vertex>+                        <position x="16.6995" y="5.31735" z="-12.1409" />+                        <normal x="0.963829" y="0.213715" z="0.159249" />+                        <texcoord u="1.8829" v="-2.3488" />+                    </vertex>+                    <vertex>+                        <position x="17.7574" y="0.861351" z="-13.2082" />+                        <normal x="0.884357" y="0.418881" z="-0.20604" />+                        <texcoord u="1.77245" v="-2.47813" />+                    </vertex>+                    <vertex>+                        <position x="20.074" y="-1.72525" z="-14.3882" />+                        <normal x="0.670319" y="0.559429" z="-0.487557" />+                        <texcoord u="1.73946" v="-2.56108" />+                    </vertex>+                    <vertex>+                        <position x="18.3244" y="-0.39315" z="-14.8347" />+                        <normal x="0.928869" y="0.189967" z="-0.317985" />+                        <texcoord u="1.70513" v="-2.48185" />+                    </vertex>+                    <vertex>+                        <position x="18.5525" y="0.898251" z="-12.5662" />+                        <normal x="0.616831" y="0.542354" z="-0.570414" />+                        <texcoord u="1.81688" v="-2.50854" />+                    </vertex>+                    <vertex>+                        <position x="15.5601" y="8.68005" z="-10.4168" />+                        <normal x="0.932539" y="0.312912" z="0.18016" />+                        <texcoord u="1.99678" v="-2.25169" />+                    </vertex>+                    <vertex>+                        <position x="17.5658" y="5.20765" z="-9.97155" />+                        <normal x="0.840247" y="0.494275" z="-0.222882" />+                        <texcoord u="1.98204" v="-2.41244" />+                    </vertex>+                    <vertex>+                        <position x="15.3228" y="8.67285" z="-8.72515" />+                        <normal x="0.835402" y="0.546706" z="-0.0567063" />+                        <texcoord u="2.06147" v="-2.27014" />+                    </vertex>+                    <vertex>+                        <position x="19.9935" y="0.628651" z="-11.3287" />+                        <normal x="0.742788" y="0.551441" z="-0.379708" />+                        <texcoord u="1.8945" v="-2.56861" />+                    </vertex>+                    <vertex>+                        <position x="20.0785" y="0.882153" z="-10.2701" />+                        <normal x="0.886038" y="0.461181" z="-0.0474249" />+                        <texcoord u="1.94494" v="-2.58517" />+                    </vertex>+                    <vertex>+                        <position x="20.7931" y="-8.22435" z="-4.12545" />+                        <normal x="0.938303" y="0.277873" z="0.205852" />+                        <texcoord u="2.19942" v="-3.01498" />+                    </vertex>+                    <vertex>+                        <position x="19.8194" y="-6.87735" z="-2.32145" />+                        <normal x="0.93964" y="0.251971" z="0.23149" />+                        <texcoord u="2.32386" v="-3.00383" />+                    </vertex>+                    <vertex>+                        <position x="20.9521" y="-7.51735" z="-8.02045" />+                        <normal x="0.960258" y="0.155896" z="0.231517" />+                        <texcoord u="1.96114" v="-2.90768" />+                    </vertex>+                    <vertex>+                        <position x="21.1632" y="-8.35505" z="-7.02195" />+                        <normal x="0.958273" y="0.275441" z="0.0764511" />+                        <texcoord u="2.01651" v="-2.95718" />+                    </vertex>+                    <vertex>+                        <position x="10.7246" y="-0.594349" z="14.6202" />+                        <normal x="0.279833" y="0.960043" z="0.00337896" />+                        <texcoord u="3.52893" v="-2.25477" />+                    </vertex>+                    <vertex>+                        <position x="10.978" y="-1.02245" z="16.8235" />+                        <normal x="0.543943" y="0.753778" z="0.368707" />+                        <texcoord u="3.58073" v="-2.20522" />+                    </vertex>+                    <vertex>+                        <position x="14.4907" y="-2.58945" z="11.1876" />+                        <normal x="0.687429" y="0.670345" z="0.279427" />+                        <texcoord u="3.33222" v="-2.57794" />+                    </vertex>+                    <vertex>+                        <position x="14.5323" y="-2.09805" z="10.0177" />+                        <normal x="0.204729" y="0.954521" z="-0.216737" />+                        <texcoord u="3.26288" v="-2.60668" />+                    </vertex>+                    <vertex>+                        <position x="18.4092" y="-4.21925" z="5.39265" />+                        <normal x="0.402007" y="0.909162" z="-0.1087" />+                        <texcoord u="2.89983" v="-2.86493" />+                    </vertex>+                    <vertex>+                        <position x="23.2624" y="-7.08295" z="3.96065" />+                        <normal x="0.576048" y="0.806214" z="0.134858" />+                        <texcoord u="2.74875" v="-2.96103" />+                    </vertex>+                    <vertex>+                        <position x="21.539" y="-6.11905" z="2.76165" />+                        <normal x="0.364601" y="0.888799" z="-0.277675" />+                        <texcoord u="2.68677" v="-2.95665" />+                    </vertex>+                    <vertex>+                        <position x="18.553" y="-4.70715" z="6.71335" />+                        <normal x="0.626172" y="0.702739" z="0.337738" />+                        <texcoord u="2.98873" v="-2.85066" />+                    </vertex>+                    <vertex>+                        <position x="20.5089" y="-18.2043" z="8.52765" />+                        <normal x="0.311733" y="-0.764832" z="0.563786" />+                        <texcoord u="3.18969" v="-3.15869" />+                    </vertex>+                    <vertex>+                        <position x="19.4948" y="-20.3601" z="5.33325" />+                        <normal x="0.410441" y="-0.77579" z="0.479258" />+                        <texcoord u="2.99554" v="-3.31136" />+                    </vertex>+                    <vertex>+                        <position x="22.0111" y="-19.9794" z="4.62725" />+                        <normal x="0.371492" y="-0.795927" z="0.47801" />+                        <texcoord u="2.87606" v="-3.28887" />+                    </vertex>+                    <vertex>+                        <position x="18.5826" y="-18.4321" z="8.45985" />+                        <normal x="0.307718" y="-0.755314" z="0.578628" />+                        <texcoord u="3.26005" v="-3.1695" />+                    </vertex>+                    <vertex>+                        <position x="26.5618" y="-10.1347" z="1.58435" />+                        <normal x="0.899901" y="0.37899" z="0.215743" />+                        <texcoord u="2.59167" v="-3.03686" />+                    </vertex>+                    <vertex>+                        <position x="28.3956" y="-15.1668" z="-0.0233459" />+                        <normal x="0.972269" y="0.0319763" z="0.231668" />+                        <texcoord u="2.49865" v="-3.14039" />+                    </vertex>+                    <vertex>+                        <position x="27.3837" y="-11.6885" z="-2.11065" />+                        <normal x="0.93161" y="0.362932" z="0.0195887" />+                        <texcoord u="2.37933" v="-3.06555" />+                    </vertex>+                    <vertex>+                        <position x="26.9146" y="-13.6178" z="3.51295" />+                        <normal x="0.884946" y="-0.0245376" z="0.465047" />+                        <texcoord u="2.70967" v="-3.10642" />+                    </vertex>+                    <vertex>+                        <position x="24.6767" y="-10.1763" z="-7.21595" />+                        <normal x="-0.261713" y="0.786436" z="0.559486" />+                        <texcoord u="2.06499" v="-2.98762" />+                    </vertex>+                    <vertex>+                        <position x="26.4804" y="-10.4161" z="-6.92975" />+                        <normal x="0.511005" y="0.847612" z="0.142923" />+                        <texcoord u="2.11028" v="-2.98921" />+                    </vertex>+                    <vertex>+                        <position x="25.2919" y="-9.02595" z="-8.87625" />+                        <normal x="0.466575" y="0.788664" z="0.400396" />+                        <texcoord u="2.00047" v="-2.92336" />+                    </vertex>+                    <vertex>+                        <position x="23.4417" y="-8.73085" z="-8.62225" />+                        <normal x="-0.0145789" y="0.577527" z="0.816241" />+                        <texcoord u="1.97612" v="-2.92431" />+                    </vertex>+                    <vertex>+                        <position x="24.4471" y="-7.68715" z="-10.2906" />+                        <normal x="0.858488" y="0.500217" z="0.113052" />+                        <texcoord u="1.92796" v="-2.85899" />+                    </vertex>+                    <vertex>+                        <position x="22.9796" y="-4.98075" z="-12.0728" />+                        <normal x="0.882278" y="0.46512" z="-0.072449" />+                        <texcoord u="1.84847" v="-2.74013" />+                    </vertex>+                    <vertex>+                        <position x="22.5332" y="-4.51865" z="-9.91955" />+                        <normal x="0.8478" y="0.434575" z="0.303941" />+                        <texcoord u="1.93817" v="-2.77625" />+                    </vertex>+                    <vertex>+                        <position x="24.7707" y="-8.63085" z="-12.5126" />+                        <normal x="0.869817" y="0.360608" z="-0.336719" />+                        <texcoord u="1.82822" v="-2.8299" />+                    </vertex>+                    <vertex>+                        <position x="22.735" y="-5.33885" z="-13.4305" />+                        <normal x="0.775446" y="0.348346" z="-0.52663" />+                        <texcoord u="1.78348" v="-2.71292" />+                    </vertex>+                    <vertex>+                        <position x="23.7223" y="-9.69595" z="-13.8122" />+                        <normal x="0.698309" y="0.0405184" z="-0.714649" />+                        <texcoord u="1.73508" v="-2.81373" />+                    </vertex>+                    <vertex>+                        <position x="23.1886" y="-10.0709" z="-14.3714" />+                        <normal x="0.776369" y="0.0526806" z="-0.628073" />+                        <texcoord u="1.69326" v="-2.80169" />+                    </vertex>+                    <vertex>+                        <position x="15.451" y="-14.9926" z="15.4232" />+                        <normal x="0.735388" y="0.0759662" z="0.673375" />+                        <texcoord u="3.7214" v="-2.7236" />+                    </vertex>+                    <vertex>+                        <position x="11.4242" y="-14.5658" z="18.6084" />+                        <normal x="0.523294" y="0.104218" z="0.845755" />+                        <texcoord u="3.96422" v="-2.39893" />+                    </vertex>+                    <vertex>+                        <position x="13.1647" y="-16.0681" z="18.2447" />+                        <normal x="0.530713" y="0.342295" z="0.775356" />+                        <texcoord u="3.91388" v="-2.52021" />+                    </vertex>+                    <vertex>+                        <position x="14.9214" y="-18.4746" z="17.106" />+                        <normal x="0.713828" y="-0.240517" z="0.657724" />+                        <texcoord u="3.85166" v="-2.67904" />+                    </vertex>+                    <vertex>+                        <position x="15.8391" y="-19.9457" z="14.1786" />+                        <normal x="0.772396" y="-0.452259" z="0.445944" />+                        <texcoord u="3.73367" v="-2.87815" />+                    </vertex>+                    <vertex>+                        <position x="17.3412" y="-16.386" z="12.1828" />+                        <normal x="0.841309" y="-0.240534" z="0.484089" />+                        <texcoord u="3.51965" v="-2.95139" />+                    </vertex>+                    <vertex>+                        <position x="18.1861" y="-18.7684" z="8.60105" />+                        <normal x="0.782742" y="-0.430437" z="0.449487" />+                        <texcoord u="3.28984" v="-3.17004" />+                    </vertex>+                    <vertex>+                        <position x="18.0442" y="-22.3077" z="5.37375" />+                        <normal x="0.657779" y="-0.711211" z="0.248004" />+                        <texcoord u="3.05434" v="-3.36138" />+                    </vertex>+                    <vertex>+                        <position x="19.051" y="-20.6856" z="5.40475" />+                        <normal x="0.651213" y="-0.646971" z="0.396673" />+                        <texcoord u="3.01648" v="-3.3205" />+                    </vertex>+                    <vertex>+                        <position x="16.8688" y="-21.4468" z="10.3218" />+                        <normal x="0.691383" y="-0.648101" z="0.319304" />+                        <texcoord u="3.49544" v="-3.12685" />+                    </vertex>+                    <vertex>+                        <position x="0" y="-13.7198" z="22.0266" />+                        <normal x="0" y="-0.0617905" z="0.998089" />+                        <texcoord u="4.1933" v="-1.5" />+                    </vertex>+                    <vertex>+                        <position x="1.54294" y="-16.2051" z="22.1269" />+                        <normal x="0.37197" y="-0.0453777" z="0.927135" />+                        <texcoord u="4.24786" v="-1.62188" />+                    </vertex>+                    <vertex>+                        <position x="1.49684" y="-13.7537" z="21.5732" />+                        <normal x="0.44177" y="-0.182571" z="0.878355" />+                        <texcoord u="4.19671" v="-1.61772" />+                    </vertex>+                    <vertex>+                        <position x="0" y="-16.2703" z="22.2557" />+                        <normal x="0" y="-0.162517" z="0.986706" />+                        <texcoord u="4.25235" v="-1.5" />+                    </vertex>+                    <vertex>+                        <position x="11.5706" y="-16.2434" z="19.0969" />+                        <normal x="0.426258" y="0.114334" z="0.897347" />+                        <texcoord u="3.99712" v="-2.40709" />+                    </vertex>+                    <vertex>+                        <position x="4.64885" y="-16.0982" z="18.7384" />+                        <normal x="0.471416" y="0.00631742" z="0.881889" />+                        <texcoord u="4.25003" v="-1.93417" />+                    </vertex>+                    <vertex>+                        <position x="3.57569" y="-18.847" z="19.9333" />+                        <normal x="0.721248" y="-0.285058" z="0.631303" />+                        <texcoord u="4.31742" v="-1.82601" />+                    </vertex>+                    <vertex>+                        <position x="4.88243" y="-18.0563" z="18.3177" />+                        <normal x="0.413656" y="-0.41154" z="0.812111" />+                        <texcoord u="4.29304" v="-1.97792" />+                    </vertex>+                    <vertex>+                        <position x="3.52375" y="-16.1306" z="20.7573" />+                        <normal x="0.750501" y="0.0959572" z="0.653866" />+                        <texcoord u="4.24527" v="-1.79628" />+                    </vertex>+                    <vertex>+                        <position x="15.4125" y="-22.4696" z="-9.25145" />+                        <normal x="0.0904224" y="-0.914496" z="-0.394361" />+                        <texcoord u="1.4897" v="-3.18312" />+                    </vertex>+                    <vertex>+                        <position x="14.5293" y="-18.2747" z="-15.9829" />+                        <normal x="-0.00855065" y="-0.800066" z="-0.599851" />+                        <texcoord u="1.16158" v="-2.7167" />+                    </vertex>+                    <vertex>+                        <position x="18.3359" y="-18.0868" z="-15.3021" />+                        <normal x="0.314223" y="-0.691126" z="-0.650853" />+                        <texcoord u="1.36859" v="-2.85572" />+                    </vertex>+                    <vertex>+                        <position x="21.9198" y="-17.3967" z="-13.8993" />+                        <normal x="0.455452" y="-0.560831" z="-0.691398" />+                        <texcoord u="1.57897" v="-2.9525" />+                    </vertex>+                    <vertex>+                        <position x="19.6319" y="-11.7445" z="-18.0631" />+                        <normal x="0.551696" y="-0.173591" z="-0.81578" />+                        <texcoord u="1.43019" v="-2.66273" />+                    </vertex>+                    <vertex>+                        <position x="22.2382" y="-10.586" z="-15.9011" />+                        <normal x="0.741857" y="-0.0142687" z="-0.670406" />+                        <texcoord u="1.60195" v="-2.75596" />+                    </vertex>+                    <vertex>+                        <position x="10.7863" y="-13.6335" z="-21.1816" />+                        <normal x="0.149017" y="-0.390059" z="-0.908652" />+                        <texcoord u="1.01683" v="-2.25528" />+                    </vertex>+                    <vertex>+                        <position x="6.00191" y="-7.76365" z="-22.8596" />+                        <normal x="0.0859267" y="-0.068761" z="-0.993926" />+                        <texcoord u="1.04669" v="-1.88157" />+                    </vertex>+                    <vertex>+                        <position x="9.98187" y="-7.61415" z="-22.1036" />+                        <normal x="0.228678" y="0.0510174" z="-0.972164" />+                        <texcoord u="1.14016" v="-2.1141" />+                    </vertex>+                    <vertex>+                        <position x="7.76277" y="-14.2887" z="-21.0536" />+                        <normal x="0.0661794" y="-0.525292" z="-0.848345" />+                        <texcoord u="0.903821" v="-2.08854" />+                    </vertex>+                    <vertex>+                        <position x="18.7434" y="-3.03275" z="-17.1108" />+                        <normal x="0.644214" y="0.35337" z="-0.67832" />+                        <texcoord u="1.59343" v="-2.49307" />+                    </vertex>+                    <vertex>+                        <position x="17.4846" y="-0.642349" z="-16.4293" />+                        <normal x="0.763409" y="0.24107" z="-0.599242" />+                        <texcoord u="1.62945" v="-2.42647" />+                    </vertex>+                    <vertex>+                        <position x="21.4903" y="-5.78385" z="-15.1824" />+                        <normal x="0.756936" y="0.275339" z="-0.592652" />+                        <texcoord u="1.67939" v="-2.66155" />+                    </vertex>+                    <vertex>+                        <position x="23.505" y="-16.5679" z="-12.8696" />+                        <normal x="0.716895" y="-0.297597" z="-0.630475" />+                        <texcoord u="1.68806" v="-2.98292" />+                    </vertex>+                    <vertex>+                        <position x="23.9535" y="-21.1027" z="-8.33535" />+                        <normal x="0.496534" y="-0.752485" z="-0.432691" />+                        <texcoord u="1.90769" v="-3.20214" />+                    </vertex>+                    <vertex>+                        <position x="20.5415" y="-22.0053" z="-9.03215" />+                        <normal x="0.186909" y="-0.894557" z="-0.405997" />+                        <texcoord u="1.74842" v="-3.20929" />+                    </vertex>+                    <vertex>+                        <position x="12.7485" y="21.66" z="-0.0672474" />+                        <normal x="0.749812" y="0.533185" z="0.391785" />+                        <texcoord u="2.49777" v="-1.92333" />+                    </vertex>+                    <vertex>+                        <position x="11.1533" y="21.6494" z="1.85955" />+                        <normal x="0.639449" y="0.481884" z="0.599077" />+                        <texcoord u="2.56299" v="-1.87781" />+                    </vertex>+                    <vertex>+                        <position x="14.0323" y="20.0907" z="-3.71335" />+                        <normal x="0.906913" y="0.253526" z="-0.336502" />+                        <texcoord u="2.37263" v="-1.98132" />+                    </vertex>+                    <vertex>+                        <position x="13.6794" y="21.0302" z="-3.27455" />+                        <normal x="0.779415" y="0.57828" z="-0.241047" />+                        <texcoord u="2.39079" v="-1.95623" />+                    </vertex>+                    <vertex>+                        <position x="13.6747" y="20.7223" z="-1.46195" />+                        <normal x="0.885655" y="0.397899" z="0.239356" />+                        <texcoord u="2.45044" v="-1.96362" />+                    </vertex>+                    <vertex>+                        <position x="1.5185" y="17.9352" z="9.45665" />+                        <normal x="-0.0565804" y="0.067842" z="0.99609" />+                        <texcoord u="2.88539" v="-1.56188" />+                    </vertex>+                    <vertex>+                        <position x="0.40759" y="17.8644" z="9.23695" />+                        <normal x="-0.165844" y="0.122576" z="0.978504" />+                        <texcoord u="2.87969" v="-1.51675" />+                    </vertex>+                    <vertex>+                        <position x="1.86734" y="17.091" z="9.36595" />+                        <normal x="0.0475652" y="-0.111266" z="0.992652" />+                        <texcoord u="2.89767" v="-1.57929" />+                    </vertex>+                    <vertex>+                        <position x="2.37972" y="16.4339" z="9.17865" />+                        <normal x="0.21181" y="-0.21469" z="0.953438" />+                        <texcoord u="2.90312" v="-1.60452" />+                    </vertex>+                    <vertex>+                        <position x="2.84279" y="15.1517" z="8.38885" />+                        <normal x="0.390206" y="-0.64662" z="0.655455" />+                        <texcoord u="2.8987" v="-1.63511" />+                    </vertex>+                    <vertex>+                        <position x="13.2397" y="21.3125" z="-1.00705" />+                        <normal x="0.850248" y="0.476825" z="0.222971" />+                        <texcoord u="2.46637" v="-1.9421" />+                    </vertex>+                    <vertex>+                        <position x="1.79769" y="18.523" z="9.39485" />+                        <normal x="-0.0347729" y="0.284778" z="0.957963" />+                        <texcoord u="2.87257" v="-1.57129" />+                    </vertex>+                    <vertex>+                        <position x="9.22077" y="22.7771" z="0.316051" />+                        <normal x="0.241317" y="0.957044" z="0.160729" />+                        <texcoord u="2.51049" v="-1.80608" />+                    </vertex>+                    <vertex>+                        <position x="10.5992" y="22.5382" z="-2.54405" />+                        <normal x="0.269905" y="0.949004" z="-0.162917" />+                        <texcoord u="2.41634" v="-1.84857" />+                    </vertex>+                    <vertex>+                        <position x="8.9355" y="23.0065" z="0.132452" />+                        <normal x="0.558739" y="0.761812" z="0.327802" />+                        <texcoord u="2.50437" v="-1.7948" />+                    </vertex>+                    <vertex>+                        <position x="12.1322" y="16.0644" z="-3.88795" />+                        <normal x="0.986401" y="-0.123984" z="0.10789" />+                        <texcoord u="2.33717" v="-2.00811" />+                    </vertex>+                    <vertex>+                        <position x="12.1811" y="16.0821" z="-4.10675" />+                        <normal x="0.9421" y="-0.113081" z="0.31569" />+                        <texcoord u="2.32857" v="-2.00849" />+                    </vertex>+                    <vertex>+                        <position x="12.1711" y="16.1939" z="-3.95375" />+                        <normal x="0.812372" y="-0.577327" z="0.0821293" />+                        <texcoord u="2.33558" v="-2.00615" />+                    </vertex>+                    <vertex>+                        <position x="3.52708" y="11.9819" z="6.69095" />+                        <normal x="0.624756" y="-0.285304" z="0.72683" />+                        <texcoord u="2.89639" v="-1.70895" />+                    </vertex>+                    <vertex>+                        <position x="12.102" y="16.1232" z="-2.90065" />+                        <normal x="0.921382" y="-0.363057" z="0.13873" />+                        <texcoord u="2.37808" v="-2.00869" />+                    </vertex>+                    <vertex>+                        <position x="12.2283" y="16.2427" z="-2.92075" />+                        <normal x="0.627768" y="-0.768987" z="0.120692" />+                        <texcoord u="2.37823" v="-2.00984" />+                    </vertex>+                    <vertex>+                        <position x="13.0225" y="17.835" z="-5.03605" />+                        <normal x="0.915562" y="-0.129731" z="-0.380679" />+                        <texcoord u="2.30936" v="-1.99298" />+                    </vertex>+                    <vertex>+                        <position x="12.7781" y="16.7813" z="-4.90245" />+                        <normal x="0.944691" y="-0.26474" z="0.193578" />+                        <texcoord u="2.30498" v="-2.00831" />+                    </vertex>+                    <vertex>+                        <position x="12.9986" y="17.7919" z="-5.16845" />+                        <normal x="0.990554" y="-0.0331348" z="0.133057" />+                        <texcoord u="2.3041" v="-1.9927" />+                    </vertex>+                    <vertex>+                        <position x="12.8572" y="16.8849" z="-4.77115" />+                        <normal x="0.811294" y="-0.552339" z="-0.191634" />+                        <texcoord u="2.31115" v="-2.00891" />+                    </vertex>+                    <vertex>+                        <position x="13.0217" y="14.4475" z="-6.07635" />+                        <normal x="0.961595" y="0.00323046" z="0.274452" />+                        <texcoord u="2.23662" v="-2.06442" />+                    </vertex>+                    <vertex>+                        <position x="11.3246" y="17.5281" z="1.01705" />+                        <normal x="0.586929" y="-0.666922" z="0.459052" />+                        <texcoord u="2.54096" v="-1.95609" />+                    </vertex>+                    <vertex>+                        <position x="12.5043" y="17.335" z="-1.09845" />+                        <normal x="0.707312" y="-0.586265" z="0.394972" />+                        <texcoord u="2.45636" v="-1.99682" />+                    </vertex>+                    <vertex>+                        <position x="2.28126" y="14.1889" z="7.75615" />+                        <normal x="0.583123" y="0.233191" z="0.778197" />+                        <texcoord u="2.89539" v="-1.61629" />+                    </vertex>+                    <vertex>+                        <position x="2.64026" y="14.2966" z="7.54305" />+                        <normal x="0.411086" y="0.213684" z="0.886198" />+                        <texcoord u="2.88285" v="-1.63401" />+                    </vertex>+                    <vertex>+                        <position x="12.6754" y="16.509" z="-3.17585" />+                        <normal x="0.707755" y="-0.690118" z="0.151062" />+                        <texcoord u="2.37051" v="-2.01683" />+                    </vertex>+                    <vertex>+                        <position x="10.9023" y="16.506" z="-0.424549" />+                        <normal x="0.628656" y="0.172363" z="0.758342" />+                        <texcoord u="2.48191" v="-1.96444" />+                    </vertex>+                    <vertex>+                        <position x="11.1119" y="16.5764" z="-0.614248" />+                        <normal x="0.730943" y="-0.163497" z="0.662565" />+                        <texcoord u="2.47403" v="-1.96979" />+                    </vertex>+                    <vertex>+                        <position x="2.2108" y="10.5694" z="9.54125" />+                        <normal x="0.507761" y="-0.112909" z="0.854067" />+                        <texcoord u="3.07937" v="-1.63424" />+                    </vertex>+                    <vertex>+                        <position x="2.96387" y="11.2838" z="9.74625" />+                        <normal x="0.28866" y="-0.58646" z="0.756796" />+                        <texcoord u="3.0591" v="-1.67002" />+                    </vertex>+                    <vertex>+                        <position x="2.8016" y="11.3913" z="9.63505" />+                        <normal x="-0.307935" y="-0.267563" z="0.913009" />+                        <texcoord u="3.05181" v="-1.66045" />+                    </vertex>+                    <vertex>+                        <position x="2.17781" y="10.7687" z="9.56935" />+                        <normal x="0.440183" y="-0.0187689" z="0.897712" />+                        <texcoord u="3.07346" v="-1.63051" />+                    </vertex>+                    <vertex>+                        <position x="1.93131" y="12.7563" z="11.6269" />+                        <normal x="0.555649" y="-0.825148" z="0.101906" />+                        <texcoord u="3.08554" v="-1.59726" />+                    </vertex>+                    <vertex>+                        <position x="1.61321" y="12.4193" z="11.7365" />+                        <normal x="0.7664" y="-0.642348" z="-0.00450533" />+                        <texcoord u="3.10058" v="-1.58255" />+                    </vertex>+                    <vertex>+                        <position x="2.84184" y="12.5671" z="10.7736" />+                        <normal x="-0.164202" y="-0.824697" z="0.541214" />+                        <texcoord u="3.05814" v="-1.64722" />+                    </vertex>+                    <vertex>+                        <position x="2.44005" y="12.8064" z="11.243" />+                        <normal x="0.126662" y="-0.946565" z="0.296599" />+                        <texcoord u="3.06919" v="-1.62353" />+                    </vertex>+                    <vertex>+                        <position x="0.62184" y="10.3815" z="10.8343" />+                        <normal x="0.538583" y="-0.280642" z="0.794461" />+                        <texcoord u="3.14158" v="-1.53682" />+                    </vertex>+                    <vertex>+                        <position x="0.82358" y="10.2302" z="10.7474" />+                        <normal x="0.42085" y="0.308912" z="0.852912" />+                        <texcoord u="3.14389" v="-1.54934" />+                    </vertex>+                    <vertex>+                        <position x="2.024" y="10.3815" z="9.73735" />+                        <normal x="0.587612" y="0.346563" z="0.731167" />+                        <texcoord u="3.09521" v="-1.62372" />+                    </vertex>+                    <vertex>+                        <position x="2.73884" y="10.5792" z="8.90455" />+                        <normal x="0.650177" y="0.484363" z="0.585374" />+                        <texcoord u="3.04916" v="-1.66891" />+                    </vertex>+                    <vertex>+                        <position x="2.70859" y="10.7407" z="8.89365" />+                        <normal x="0.832948" y="-0.313064" z="0.456276" />+                        <texcoord u="3.04313" v="-1.66541" />+                    </vertex>+                    <vertex>+                        <position x="3.08735" y="11.9065" z="10.1403" />+                        <normal x="0.171858" y="-0.63396" z="0.754029" />+                        <texcoord u="3.05376" v="-1.6686" />+                    </vertex>+                    <vertex>+                        <position x="2.97104" y="12.6029" z="10.8251" />+                        <normal x="0.67505" y="-0.361253" z="0.643276" />+                        <texcoord u="3.0584" v="-1.65326" />+                    </vertex>+                    <vertex>+                        <position x="2.94212" y="11.9706" z="10.1155" />+                        <normal x="-0.366812" y="-0.635347" z="0.679547" />+                        <texcoord u="3.05144" v="-1.66039" />+                    </vertex>+                    <vertex>+                        <position x="0.27477" y="10.2211" z="10.7535" />+                        <normal x="-0.148767" y="0.0870268" z="0.985035" />+                        <texcoord u="3.14511" v="-1.51648" />+                    </vertex>+                    <vertex>+                        <position x="0.45052" y="10.3424" z="10.9093" />+                        <normal x="0.063886" y="-0.592627" z="0.802939" />+                        <texcoord u="3.14601" v="-1.52668" />+                    </vertex>+                    <vertex>+                        <position x="0" y="10.2582" z="10.7434" />+                        <normal x="0" y="-0.438215" z="0.89887" />+                        <texcoord u="3.14338" v="-1.5" />+                    </vertex>+                    <vertex>+                        <position x="0" y="10.4243" z="11.0002" />+                        <normal x="0" y="-0.706511" z="0.707702" />+                        <texcoord u="3.14639" v="-1.5" />+                    </vertex>+                    <vertex>+                        <position x="15.3161" y="8.85245" z="-8.22945" />+                        <normal x="0.811572" y="0.563022" z="-0.156066" />+                        <texcoord u="2.08574" v="-2.271" />+                    </vertex>+                    <vertex>+                        <position x="13.2495" y="12.0326" z="-7.73285" />+                        <normal x="0.911492" y="0.349735" z="0.216489" />+                        <texcoord u="2.13671" v="-2.12246" />+                    </vertex>+                    <vertex>+                        <position x="13.1564" y="12.1997" z="-7.19225" />+                        <normal x="0.925243" y="0.363796" z="-0.107601" />+                        <texcoord u="2.16112" v="-2.1199" />+                    </vertex>+                    <vertex>+                        <position x="21.9602" y="20.9325" z="-23.5111" />+                        <normal x="0.100737" y="-0.343286" z="-0.933813" />+                        <texcoord u="1.92196" v="-2.03991" />+                    </vertex>+                    <vertex>+                        <position x="18.3803" y="19.4992" z="-17.9269" />+                        <normal x="0.722836" y="-0.685129" z="0.090031" />+                        <texcoord u="1.98812" v="-2.02483" />+                    </vertex>+                    <vertex>+                        <position x="18.0979" y="19.0201" z="-17.9371" />+                        <normal x="0.871863" y="-0.232181" z="0.431215" />+                        <texcoord u="1.97927" v="-2.0254" />+                    </vertex>+                    <vertex>+                        <position x="17.6103" y="18.3224" z="-16.9081" />+                        <normal x="0.878855" y="-0.235369" z="0.414988" />+                        <texcoord u="1.98911" v="-2.03211" />+                    </vertex>+                    <vertex>+                        <position x="21.4958" y="21.8917" z="-19.6627" />+                        <normal x="0.738627" y="-0.59515" z="0.316586" />+                        <texcoord u="2.00245" v="-2.04394" />+                    </vertex>+                    <vertex>+                        <position x="23.9762" y="23.3251" z="-21.7117" />+                        <normal x="0.810008" y="-0.255651" z="0.52776" />+                        <texcoord u="1.99467" v="-2.05804" />+                    </vertex>+                    <vertex>+                        <position x="16.8959" y="10.7341" z="-13.0263" />+                        <normal x="0.815212" y="-0.444928" z="0.370767" />+                        <texcoord u="1.96327" v="-2.19617" />+                    </vertex>+                    <vertex>+                        <position x="16.4133" y="10.4612" z="-12.6235" />+                        <normal x="0.797616" y="-0.196239" z="0.57035" />+                        <texcoord u="1.9649" v="-2.19575" />+                    </vertex>+                    <vertex>+                        <position x="16.408" y="10.1742" z="-12.9671" />+                        <normal x="0.801817" y="-0.596333" z="-0.0384115" />+                        <texcoord u="1.94836" v="-2.19802" />+                    </vertex>+                    <vertex>+                        <position x="16.7804" y="7.86615" z="-13.2322" />+                        <normal x="0.512187" y="0.823043" z="0.24549" />+                        <texcoord u="1.8998" v="-2.26115" />+                    </vertex>+                    <vertex>+                        <position x="17.6413" y="7.87295" z="-13.6195" />+                        <normal x="0.359328" y="0.793768" z="0.490729" />+                        <texcoord u="1.90126" v="-2.27555" />+                    </vertex>+                    <vertex>+                        <position x="16.5077" y="17.3982" z="-16.8967" />+                        <normal x="0.629547" y="-0.569217" z="0.528832" />+                        <texcoord u="1.96723" v="-2.0205" />+                    </vertex>+                    <vertex>+                        <position x="16.7887" y="16.8111" z="-17.2532" />+                        <normal x="0.173306" y="-0.227524" z="0.958226" />+                        <texcoord u="1.95181" v="-2.03343" />+                    </vertex>+                    <vertex>+                        <position x="15.5998" y="8.50825" z="-14.408" />+                        <normal x="0.678734" y="0.557974" z="0.477478" />+                        <texcoord u="1.85764" v="-2.19549" />+                    </vertex>+                    <vertex>+                        <position x="15.7818" y="8.28115" z="-14.181" />+                        <normal x="0.559607" y="0.828514" z="0.020135" />+                        <texcoord u="1.86245" v="-2.20952" />+                    </vertex>+                    <vertex>+                        <position x="16.1167" y="8.28885" z="-14.484" />+                        <normal x="0.229326" y="0.76697" z="0.599306" />+                        <texcoord u="1.8588" v="-2.21348" />+                    </vertex>+                    <vertex>+                        <position x="15.7794" y="8.67835" z="-14.594" />+                        <normal x="0.509894" y="0.295384" z="0.807933" />+                        <texcoord u="1.85861" v="-2.19349" />+                    </vertex>+                    <vertex>+                        <position x="18.7549" y="15.0242" z="-17.7838" />+                        <normal x="0.876883" y="0.143258" z="0.458862" />+                        <texcoord u="1.92822" v="-2.103" />+                    </vertex>+                    <vertex>+                        <position x="16.5961" y="16.8119" z="-15.1265" />+                        <normal x="0.899298" y="-0.316143" z="-0.302186" />+                        <texcoord u="2.00247" v="-2.04587" />+                    </vertex>+                    <vertex>+                        <position x="16.3685" y="16.8743" z="-15.6143" />+                        <normal x="0.788071" y="-0.512087" z="-0.34163" />+                        <texcoord u="1.98923" v="-2.03544" />+                    </vertex>+                    <vertex>+                        <position x="16.8297" y="5.46465" z="-12.6107" />+                        <normal x="0.76458" y="0.0425452" z="0.643123" />+                        <texcoord u="1.87175" v="-2.33843" />+                    </vertex>+                    <vertex>+                        <position x="18.3284" y="-0.0528488" z="-15.1645" />+                        <normal x="0.939043" y="-0.343193" z="-0.0204011" />+                        <texcoord u="1.70203" v="-2.46446" />+                    </vertex>+                    <vertex>+                        <position x="19.5363" y="1.32915" z="-15.9978" />+                        <normal x="0.927347" y="-0.374038" z="0.0110916" />+                        <texcoord u="1.73456" v="-2.43474" />+                    </vertex>+                    <vertex>+                        <position x="19.6801" y="13.1145" z="-20.0001" />+                        <normal x="0.323728" y="-0.428753" z="-0.843428" />+                        <texcoord u="1.85702" v="-2.1327" />+                    </vertex>+                    <vertex>+                        <position x="20.7536" y="18.4836" z="-22.5178" />+                        <normal x="0.0971229" y="-0.421485" z="-0.901619" />+                        <texcoord u="1.89861" v="-2.05427" />+                    </vertex>+                    <vertex>+                        <position x="21.3814" y="16.9845" z="-21.5312" />+                        <normal x="0.329879" y="-0.474783" z="-0.815942" />+                        <texcoord u="1.90117" v="-2.09466" />+                    </vertex>+                    <vertex>+                        <position x="22.649" y="20.347" z="-22.953" />+                        <normal x="0.285053" y="-0.406621" z="-0.867988" />+                        <texcoord u="1.92909" v="-2.06335" />+                    </vertex>+                    <vertex>+                        <position x="25.0381" y="26.864" z="-24.8511" />+                        <normal x="0.0738743" y="0.892902" z="-0.444149" />+                        <texcoord u="1.98428" v="-2.0196" />+                    </vertex>+                    <vertex>+                        <position x="8.20875" y="12.2509" z="4.96125" />+                        <normal x="0.666966" y="-0.0470938" z="0.743599" />+                        <texcoord u="2.77341" v="-1.95238" />+                    </vertex>+                    <vertex>+                        <position x="8.22392" y="11.5629" z="4.59535" />+                        <normal x="0.536351" y="-0.5481" z="0.641806" />+                        <texcoord u="2.76538" v="-1.97493" />+                    </vertex>+                    <vertex>+                        <position x="9.67743" y="11.5401" z="3.07895" />+                        <normal x="0.752932" y="-0.354351" z="0.554553" />+                        <texcoord u="2.67411" v="-2.04725" />+                    </vertex>+                    <vertex>+                        <position x="6.79632" y="16.901" z="5.72625" />+                        <normal x="0.607241" y="-0.705631" z="0.365161" />+                        <texcoord u="2.74822" v="-1.7946" />+                    </vertex>+                    <vertex>+                        <position x="18.3693" y="10.7405" z="-16.072" />+                        <normal x="0.248621" y="0.1481" z="0.957212" />+                        <texcoord u="1.89412" v="-2.19248" />+                    </vertex>+                    <vertex>+                        <position x="18.2179" y="13.0735" z="-16.5981" />+                        <normal x="-0.0483327" y="0.227418" z="0.972597" />+                        <texcoord u="1.91954" v="-2.13711" />+                    </vertex>+                    <vertex>+                        <position x="17.6428" y="10.8185" z="-16.189" />+                        <normal x="-0.0248133" y="0.28314" z="0.958758" />+                        <texcoord u="1.88319" v="-2.1722" />+                    </vertex>+                    <vertex>+                        <position x="17.5031" y="12.8352" z="-16.7719" />+                        <normal x="-0.0444515" y="0.268092" z="0.962367" />+                        <texcoord u="1.90327" v="-2.12275" />+                    </vertex>+                    <vertex>+                        <position x="18.6577" y="12.9418" z="-16.6672" />+                        <normal x="0.705131" y="0.164201" z="0.689803" />+                        <texcoord u="1.92033" v="-2.1489" />+                    </vertex>+                    <vertex>+                        <position x="14.5697" y="6.06955" z="-19.729" />+                        <normal x="-0.0178347" y="-0.116577" z="-0.993022" />+                        <texcoord u="1.64977" v="-2.12789" />+                    </vertex>+                    <vertex>+                        <position x="16.9106" y="4.30295" z="-19.0804" />+                        <normal x="0.363811" y="-0.0824115" z="-0.92782" />+                        <texcoord u="1.6641" v="-2.24084" />+                    </vertex>+                    <vertex>+                        <position x="18.9919" y="2.65075" z="-17.7743" />+                        <normal x="0.666697" y="-0.249784" z="-0.702227" />+                        <texcoord u="1.70108" v="-2.35365" />+                    </vertex>+                    <vertex>+                        <position x="19.6463" y="3.09975" z="-16.7131" />+                        <normal x="0.94855" y="-0.134904" z="-0.286451" />+                        <texcoord u="1.75172" v="-2.3796" />+                    </vertex>+                    <vertex>+                        <position x="19.1294" y="2.36385" z="-14.4799" />+                        <normal x="0.772791" y="-0.121755" z="0.622873" />+                        <texcoord u="1.79275" v="-2.43435" />+                    </vertex>+                    <vertex>+                        <position x="19.647" y="3.96615" z="-15.4471" />+                        <normal x="0.953766" y="0.00554674" z="0.300499" />+                        <texcoord u="1.80482" v="-2.3842" />+                    </vertex>+                    <vertex>+                        <position x="22.2436" y="-8.79765" z="-9.04815" />+                        <normal x="-0.270811" y="0.288166" z="0.918489" />+                        <texcoord u="1.92371" v="-2.91673" />+                    </vertex>+                    <vertex>+                        <position x="23.3079" y="-11.1189" z="-7.72015" />+                        <normal x="-0.596309" y="0.556545" z="0.578509" />+                        <texcoord u="2.00057" v="-3.00782" />+                    </vertex>+                    <vertex>+                        <position x="17.0188" y="1.21135" z="-0.546347" />+                        <normal x="0.912703" y="0.301454" z="0.275862" />+                        <texcoord u="2.46171" v="-2.69287" />+                    </vertex>+                    <vertex>+                        <position x="18.0624" y="-1.55735" z="-0.140747" />+                        <normal x="0.937075" y="0.292007" z="0.19137" />+                        <texcoord u="2.48973" v="-2.8184" />+                    </vertex>+                    <vertex>+                        <position x="11.1529" y="7.83465" z="4.83515" />+                        <normal x="0.603301" y="0.657422" z="0.451469" />+                        <texcoord u="2.81599" v="-2.22886" />+                    </vertex>+                    <vertex>+                        <position x="12.3793" y="8.64705" z="1.61025" />+                        <normal x="0.656483" y="0.641816" z="0.396363" />+                        <texcoord u="2.59905" v="-2.26151" />+                    </vertex>+                    <vertex>+                        <position x="10.1341" y="8.81225" z="4.39985" />+                        <normal x="0.50906" y="0.724212" z="0.465161" />+                        <texcoord u="2.78443" v="-2.15513" />+                    </vertex>+                    <vertex>+                        <position x="23.7053" y="-7.94645" z="5.29395" />+                        <normal x="0.680019" y="0.596824" z="0.425881" />+                        <texcoord u="2.82728" v="-2.96551" />+                    </vertex>+                    <vertex>+                        <position x="19.1915" y="-6.36495" z="8.19465" />+                        <normal x="0.662246" y="0.557112" z="0.501056" />+                        <texcoord u="3.08338" v="-2.86625" />+                    </vertex>+                    <vertex>+                        <position x="24.2709" y="-7.96205" z="-9.39805" />+                        <normal x="0.583985" y="0.548616" z="0.598315" />+                        <texcoord u="1.96333" v="-2.88597" />+                    </vertex>+                    <vertex>+                        <position x="25.5541" y="-9.55765" z="-9.75965" />+                        <normal x="0.843695" y="0.531863" z="-0.0728083" />+                        <texcoord u="1.95858" v="-2.91762" />+                    </vertex>+                    <vertex>+                        <position x="19.0609" y="-6.17935" z="1.93375" />+                        <normal x="0.0835948" y="0.819381" z="-0.567122" />+                        <texcoord u="2.65123" v="-2.99063" />+                    </vertex>+                    <vertex>+                        <position x="24.5818" y="-8.56835" z="-0.227247" />+                        <normal x="0.121122" y="0.838712" z="-0.530935" />+                        <texcoord u="2.48598" v="-3.01682" />+                    </vertex>+                    <vertex>+                        <position x="22.8509" y="-8.96805" z="-0.538147" />+                        <normal x="-0.0443703" y="0.725966" z="-0.686298" />+                        <texcoord u="2.46357" v="-3.04711" />+                    </vertex>+                    <vertex>+                        <position x="21.9191" y="-4.53085" z="-9.25945" />+                        <normal x="0.383146" y="0.125803" z="0.915081" />+                        <texcoord u="1.95531" v="-2.78941" />+                    </vertex>+                    <vertex>+                        <position x="20.9977" y="-1.15055" z="-9.49045" />+                        <normal x="0.893189" y="0.366538" z="0.260505" />+                        <texcoord u="1.96882" v="-2.67524" />+                    </vertex>+                    <vertex>+                        <position x="22.7673" y="-7.85205" z="-9.15065" />+                        <normal x="0.0478058" y="0.195559" z="0.979526" />+                        <texcoord u="1.94193" v="-2.8885" />+                    </vertex>+                    <vertex>+                        <position x="5.18479" y="-14.6336" z="-21.0042" />+                        <normal x="0.051049" y="-0.478269" z="-0.876728" />+                        <texcoord u="0.826963" v="-1.91298" />+                    </vertex>+                    <vertex>+                        <position x="-20.9521" y="-7.51735" z="-8.02045" />+                        <normal x="-0.960258" y="0.155896" z="0.231517" />+                        <texcoord u="1.96114" v="-0.0923241" />+                    </vertex>+                    <vertex>+                        <position x="-19.6403" y="-3.57845" z="-5.14225" />+                        <normal x="-0.951815" y="0.206536" z="0.226698" />+                        <texcoord u="2.14823" v="-0.156451" />+                    </vertex>+                    <vertex>+                        <position x="-20.8362" y="-4.37965" z="-8.28745" />+                        <normal x="-0.934277" y="0.127231" z="0.333075" />+                        <texcoord u="1.98129" v="-0.195878" />+                    </vertex>+                    <vertex>+                        <position x="-22.7673" y="-7.85205" z="-9.15065" />+                        <normal x="-0.0478058" y="0.195559" z="0.979526" />+                        <texcoord u="1.94193" v="-0.111497" />+                    </vertex>+                    <vertex>+                        <position x="-21.3132" y="-4.77405" z="-9.19145" />+                        <normal x="-0.240314" y="0.0355346" z="0.970045" />+                        <texcoord u="1.94107" v="-0.203958" />+                    </vertex>+                    <vertex>+                        <position x="-21.4198" y="-4.73125" z="-9.20345" />+                        <normal x="-0.106649" y="0.0126293" z="0.994217" />+                        <texcoord u="1.94364" v="-0.205135" />+                    </vertex>+                    <vertex>+                        <position x="-9.14807" y="-13.6918" z="20.0161" />+                        <normal x="-0.179387" y="-0.672328" z="0.718189" />+                        <texcoord u="4.0397" v="-0.796302" />+                    </vertex>+                    <vertex>+                        <position x="-6.91476" y="-13.6323" z="20.3934" />+                        <normal x="-0.00221567" y="-0.808027" z="0.589142" />+                        <texcoord u="4.10914" v="-0.954391" />+                    </vertex>+                    <vertex>+                        <position x="-6.78453" y="-12.4025" z="22.8441" />+                        <normal x="-0.256762" y="-0.598387" z="0.758951" />+                        <texcoord u="4.06434" v="-1.0354" />+                    </vertex>+                    <vertex>+                        <position x="-15.4125" y="-22.4696" z="-9.25145" />+                        <normal x="-0.0904224" y="-0.914496" z="-0.394361" />+                        <texcoord u="1.4897" v="0.183114" />+                    </vertex>+                    <vertex>+                        <position x="-17.2647" y="-21.9959" z="-9.14365" />+                        <normal x="-0.159681" y="-0.902358" z="-0.400314" />+                        <texcoord u="1.60042" v="0.198558" />+                    </vertex>+                    <vertex>+                        <position x="-18.3359" y="-18.0868" z="-15.3021" />+                        <normal x="-0.314223" y="-0.691126" z="-0.650853" />+                        <texcoord u="1.36859" v="-0.14428" />+                    </vertex>+                    <vertex>+                        <position x="-14.5293" y="-18.2747" z="-15.9829" />+                        <normal x="0.00855065" y="-0.800066" z="-0.599851" />+                        <texcoord u="1.16158" v="-0.283299" />+                    </vertex>+                    <vertex>+                        <position x="-13.515" y="-22.1635" z="-9.13905" />+                        <normal x="0.179355" y="-0.894775" z="-0.408913" />+                        <texcoord u="1.38245" v="0.152651" />+                    </vertex>+                    <vertex>+                        <position x="-17.6877" y="-15.9575" z="12.0416" />+                        <normal x="-0.3254" y="-0.769067" z="0.550137" />+                        <texcoord u="3.4904" v="-0.0452089" />+                    </vertex>+                    <vertex>+                        <position x="-18.5826" y="-18.4321" z="8.45985" />+                        <normal x="-0.393928" y="-0.718243" z="0.573539" />+                        <texcoord u="3.26005" v="0.169497" />+                    </vertex>+                    <vertex>+                        <position x="-17.3412" y="-16.386" z="12.1828" />+                        <normal x="-0.8198" y="-0.286867" z="0.495615" />+                        <texcoord u="3.51965" v="-0.0486095" />+                    </vertex>+                    <vertex>+                        <position x="-18.1861" y="-18.7684" z="8.60105" />+                        <normal x="-0.792003" y="-0.408823" z="0.453425" />+                        <texcoord u="3.28984" v="0.170044" />+                    </vertex>+                    <vertex>+                        <position x="-15.8342" y="-14.5781" z="15.1362" />+                        <normal x="-0.544436" y="-0.525516" z="0.653776" />+                        <texcoord u="3.68663" v="-0.258642" />+                    </vertex>+                    <vertex>+                        <position x="-11.4242" y="-14.5658" z="18.6084" />+                        <normal x="-0.518614" y="0.0937555" z="0.849853" />+                        <texcoord u="3.96422" v="-0.601072" />+                    </vertex>+                    <vertex>+                        <position x="-11.3752" y="-14.0984" z="18.8044" />+                        <normal x="-0.361972" y="-0.622671" z="0.693727" />+                        <texcoord u="3.9579" v="-0.618083" />+                    </vertex>+                    <vertex>+                        <position x="-15.451" y="-14.9926" z="15.4232" />+                        <normal x="-0.748888" y="0.137419" z="0.648292" />+                        <texcoord u="3.7214" v="-0.276396" />+                    </vertex>+                    <vertex>+                        <position x="-9.59633" y="3.01255" z="-20.2691" />+                        <normal x="-0.187775" y="0.165996" z="-0.968084" />+                        <texcoord u="1.46627" v="-1.01058" />+                    </vertex>+                    <vertex>+                        <position x="-8.70044" y="0.70105" z="-20.9885" />+                        <normal x="-0.194826" y="0.203336" z="-0.95953" />+                        <texcoord u="1.36796" v="-1.03073" />+                    </vertex>+                    <vertex>+                        <position x="-13.9309" y="-0.86665" z="-19.7324" />+                        <normal x="-0.403572" y="0.211855" z="-0.890082" />+                        <texcoord u="1.45553" v="-0.762611" />+                    </vertex>+                    <vertex>+                        <position x="-4.6679" y="-14.9938" z="18.5288" />+                        <normal x="-0.292521" y="-0.364202" z="0.884188" />+                        <texcoord u="4.22555" v="-1.06529" />+                    </vertex>+                    <vertex>+                        <position x="-4.91942" y="-15.292" z="18.5521" />+                        <normal x="0.278603" y="-0.0125656" z="0.960324" />+                        <texcoord u="4.22572" v="-1.04239" />+                    </vertex>+                    <vertex>+                        <position x="-4.52049" y="-15.3072" z="18.6116" />+                        <normal x="-0.60571" y="0.135538" z="0.784057" />+                        <texcoord u="4.23609" v="-1.07833" />+                    </vertex>+                    <vertex>+                        <position x="-19.4988" y="-14.1469" z="11.6458" />+                        <normal x="-0.696647" y="-0.0336095" z="0.716626" />+                        <texcoord u="3.36826" v="-0.0462408" />+                    </vertex>+                    <vertex>+                        <position x="-22.8767" y="-15.9486" z="8.65575" />+                        <normal x="-0.665487" y="-0.363293" z="0.652032" />+                        <texcoord u="3.10507" v="0.0991639" />+                    </vertex>+                    <vertex>+                        <position x="-18.7036" y="-15.9985" z="11.9876" />+                        <normal x="-0.362394" y="-0.647418" z="0.670463" />+                        <texcoord u="3.44251" v="-0.0294521" />+                    </vertex>+                    <vertex>+                        <position x="-20.5089" y="-18.2043" z="8.52765" />+                        <normal x="-0.311733" y="-0.764832" z="0.563786" />+                        <texcoord u="3.18969" v="0.158688" />+                    </vertex>+                    <vertex>+                        <position x="-12.4134" y="-11.3438" z="20.0239" />+                        <normal x="-0.671349" y="-0.0631809" z="0.738443" />+                        <texcoord u="3.86591" v="-0.653232" />+                    </vertex>+                    <vertex>+                        <position x="-16.0699" y="-14.365" z="15.5817" />+                        <normal x="-0.512241" y="-0.576366" z="0.636719" />+                        <texcoord u="3.68621" v="-0.276622" />+                    </vertex>+                    <vertex>+                        <position x="-12.0336" y="-13.1908" z="19.8467" />+                        <normal x="-0.389744" y="-0.610218" z="0.689735" />+                        <texcoord u="3.92054" v="-0.638686" />+                    </vertex>+                    <vertex>+                        <position x="-16.2791" y="-12.6306" z="15.2403" />+                        <normal x="-0.757854" y="0.0751577" z="0.648081" />+                        <texcoord u="3.63456" v="-0.2881" />+                    </vertex>+                    <vertex>+                        <position x="-22.735" y="-5.33885" z="-13.4305" />+                        <normal x="-0.800028" y="0.3692" z="-0.472912" />+                        <texcoord u="1.78348" v="-0.287078" />+                    </vertex>+                    <vertex>+                        <position x="-21.4903" y="-5.78385" z="-15.1824" />+                        <normal x="-0.762774" y="0.311332" z="-0.566787" />+                        <texcoord u="1.67939" v="-0.338446" />+                    </vertex>+                    <vertex>+                        <position x="-23.1886" y="-10.0709" z="-14.3714" />+                        <normal x="-0.776369" y="0.0526806" z="-0.628073" />+                        <texcoord u="1.69326" v="-0.198306" />+                    </vertex>+                    <vertex>+                        <position x="-19.5692" y="1.72595" z="-8.46265" />+                        <normal x="-0.906219" y="0.387357" z="0.169473" />+                        <texcoord u="2.02936" v="-0.411684" />+                    </vertex>+                    <vertex>+                        <position x="-19.8238" y="1.29255" z="-9.18825" />+                        <normal x="-0.885318" y="0.464863" z="0.0107059" />+                        <texcoord u="1.99412" v="-0.408558" />+                    </vertex>+                    <vertex>+                        <position x="-20.9977" y="-1.15055" z="-9.49045" />+                        <normal x="-0.907694" y="0.390725" z="0.153056" />+                        <texcoord u="1.96882" v="-0.324764" />+                    </vertex>+                    <vertex>+                        <position x="-20.7067" y="-1.16255" z="-8.86135" />+                        <normal x="-0.745723" y="0.169181" z="0.644419" />+                        <texcoord u="1.99206" v="-0.31308" />+                    </vertex>+                    <vertex>+                        <position x="-0.55141" y="10.1838" z="10.8592" />+                        <normal x="-0.0479855" y="0.188721" z="0.980858" />+                        <texcoord u="3.15021" v="-1.46698" />+                    </vertex>+                    <vertex>+                        <position x="-0.27477" y="10.2211" z="10.7535" />+                        <normal x="0.148767" y="0.0870268" z="0.985035" />+                        <texcoord u="3.14511" v="-1.48352" />+                    </vertex>+                    <vertex>+                        <position x="-0.45052" y="10.3424" z="10.9093" />+                        <normal x="-0.063886" y="-0.592627" z="0.802939" />+                        <texcoord u="3.14601" v="-1.47332" />+                    </vertex>+                    <vertex>+                        <position x="-4.86401" y="8.10905" z="10.3277" />+                        <normal x="-0.433956" y="0.636627" z="0.637486" />+                        <texcoord u="3.18621" v="-1.17682" />+                    </vertex>+                    <vertex>+                        <position x="-2.75515" y="8.34835" z="11.1593" />+                        <normal x="-0.364696" y="0.567538" z="0.738171" />+                        <texcoord u="3.22826" v="-1.3202" />+                    </vertex>+                    <vertex>+                        <position x="-2.024" y="10.3815" z="9.73735" />+                        <normal x="-0.614387" y="0.317299" z="0.722392" />+                        <texcoord u="3.09521" v="-1.37628" />+                    </vertex>+                    <vertex>+                        <position x="-2.73884" y="10.5792" z="8.90455" />+                        <normal x="-0.600992" y="0.568384" z="0.561915" />+                        <texcoord u="3.04916" v="-1.33109" />+                    </vertex>+                    <vertex>+                        <position x="-15.4487" y="2.49295" z="2.40995" />+                        <normal x="-0.862532" y="0.374722" z="0.340033" />+                        <texcoord u="2.67327" v="-0.389254" />+                    </vertex>+                    <vertex>+                        <position x="-12.4689" y="6.39005" z="5.14315" />+                        <normal x="-0.691248" y="0.545082" z="0.474407" />+                        <texcoord u="2.84239" v="-0.669921" />+                    </vertex>+                    <vertex>+                        <position x="-14.7607" y="5.23735" z="2.06405" />+                        <normal x="-0.812309" y="0.423755" z="0.400732" />+                        <texcoord u="2.63587" v="-0.528362" />+                    </vertex>+                    <vertex>+                        <position x="-13.0602" y="4.44055" z="6.27665" />+                        <normal x="-0.725626" y="0.47774" z="0.495209" />+                        <texcoord u="2.93895" v="-0.586641" />+                    </vertex>+                    <vertex>+                        <position x="-24.5818" y="-8.56835" z="-0.227247" />+                        <normal x="-0.182246" y="0.8789" z="-0.440819" />+                        <texcoord u="2.48598" v="0.0168239" />+                    </vertex>+                    <vertex>+                        <position x="-23.2624" y="-7.08295" z="3.96065" />+                        <normal x="-0.559586" y="0.818432" z="0.130507" />+                        <texcoord u="2.74875" v="-0.0389736" />+                    </vertex>+                    <vertex>+                        <position x="-21.539" y="-6.11905" z="2.76165" />+                        <normal x="-0.349526" y="0.889382" z="-0.294673" />+                        <texcoord u="2.68677" v="-0.0433545" />+                    </vertex>+                    <vertex>+                        <position x="-26.1783" y="-9.10355" z="0.756651" />+                        <normal x="-0.663485" y="0.746516" z="-0.0500187" />+                        <texcoord u="2.54381" v="0.0155863" />+                    </vertex>+                    <vertex>+                        <position x="-1.14976" y="21.4765" z="7.19465" />+                        <normal x="-0.166178" y="0.5997" z="0.78278" />+                        <texcoord u="2.75701" v="-1.45893" />+                    </vertex>+                    <vertex>+                        <position x="-2.37618" y="21.1968" z="7.08075" />+                        <normal x="-0.270661" y="0.517546" z="0.81172" />+                        <texcoord u="2.75558" v="-1.41423" />+                    </vertex>+                    <vertex>+                        <position x="-21.1632" y="-8.35505" z="-7.02195" />+                        <normal x="-0.958273" y="0.275441" z="0.0764511" />+                        <texcoord u="2.01651" v="-0.0428231" />+                    </vertex>+                    <vertex>+                        <position x="-21.044" y="-8.59075" z="-5.68685" />+                        <normal x="-0.959984" y="0.25665" z="0.112082" />+                        <texcoord u="2.09597" v="-0.00489402" />+                    </vertex>+                    <vertex>+                        <position x="-14.9214" y="-18.4746" z="17.106" />+                        <normal x="-0.713828" y="-0.240517" z="0.657724" />+                        <texcoord u="3.85166" v="-0.320958" />+                    </vertex>+                    <vertex>+                        <position x="-14.0662" y="-17.2172" z="18.0221" />+                        <normal x="-0.581164" y="0.0626149" z="0.811374" />+                        <texcoord u="3.89032" v="-0.414864" />+                    </vertex>+                    <vertex>+                        <position x="-4.04607" y="21.725" z="-15.7682" />+                        <normal x="-0.100488" y="0.66247" z="-0.742317" />+                        <texcoord u="2.00432" v="-1.37281" />+                    </vertex>+                    <vertex>+                        <position x="-7.6796" y="20.8863" z="-15.7727" />+                        <normal x="-0.218386" y="0.700018" z="-0.679914" />+                        <texcoord u="2.00016" v="-1.25663" />+                    </vertex>+                    <vertex>+                        <position x="-4.30744" y="24.6048" z="-11.9677" />+                        <normal x="-0.23459" y="0.87166" z="-0.430321" />+                        <texcoord u="2.14276" v="-1.37142" />+                    </vertex>+                    <vertex>+                        <position x="-8.04452" y="22.903" z="-12.0348" />+                        <normal x="-0.477109" y="0.810263" z="-0.340354" />+                        <texcoord u="2.12709" v="-1.25074" />+                    </vertex>+                    <vertex>+                        <position x="-9.76321" y="15.9692" z="-19.2511" />+                        <normal x="-0.0860199" y="0.332351" z="-0.939225" />+                        <texcoord u="1.83723" v="-1.16388" />+                    </vertex>+                    <vertex>+                        <position x="-10.3474" y="19.6572" z="-15.8336" />+                        <normal x="-0.180739" y="0.816109" z="-0.548908" />+                        <texcoord u="1.98963" v="-1.16647" />+                    </vertex>+                    <vertex>+                        <position x="-7.16089" y="16.6426" z="-19.0587" />+                        <normal x="-0.0361765" y="0.335631" z="-0.941299" />+                        <texcoord u="1.84035" v="-1.25215" />+                    </vertex>+                    <vertex>+                        <position x="-10.6321" y="9.21625" z="-19.5098" />+                        <normal x="-0.176528" y="0.0443132" z="-0.983298" />+                        <texcoord u="1.67715" v="-1.05158" />+                    </vertex>+                    <vertex>+                        <position x="-7.56577" y="11.2464" z="-19.8356" />+                        <normal x="-0.0495858" y="0.0959434" z="-0.994151" />+                        <texcoord u="1.69429" v="-1.19269" />+                    </vertex>+                    <vertex>+                        <position x="-12.8411" y="3.57145" z="-19.0295" />+                        <normal x="-0.26542" y="0.0557368" z="-0.96252" />+                        <texcoord u="1.56565" v="-0.869499" />+                    </vertex>+                    <vertex>+                        <position x="-3.89601" y="17.8012" z="8.98785" />+                        <normal x="-0.32952" y="-0.0189505" z="0.943958" />+                        <texcoord u="2.86731" v="-1.34078" />+                    </vertex>+                    <vertex>+                        <position x="-1.79769" y="18.523" z="9.39485" />+                        <normal x="0.0347729" y="0.284778" z="0.957963" />+                        <texcoord u="2.87257" v="-1.42871" />+                    </vertex>+                    <vertex>+                        <position x="-2.34158" y="18.8433" z="9.29675" />+                        <normal x="-0.14908" y="0.496169" z="0.855331" />+                        <texcoord u="2.86319" v="-1.40852" />+                    </vertex>+                    <vertex>+                        <position x="-5.65998" y="19.7171" z="7.53315" />+                        <normal x="-0.373044" y="0.525565" z="0.764604" />+                        <texcoord u="2.78362" v="-1.2869" />+                    </vertex>+                    <vertex>+                        <position x="-6.47914" y="18.7659" z="7.25675" />+                        <normal x="-0.608678" y="0.0510259" z="0.791775" />+                        <texcoord u="2.7839" v="-1.24653" />+                    </vertex>+                    <vertex>+                        <position x="-14.0272" y="20.1321" z="-1.95225" />+                        <normal x="-0.97669" y="0.106226" z="0.18653" />+                        <texcoord u="2.43275" v="-1.01681" />+                    </vertex>+                    <vertex>+                        <position x="-13.3316" y="20.1879" z="-0.282749" />+                        <normal x="-0.900695" y="0.00894676" z="0.434361" />+                        <texcoord u="2.49015" v="-1.03558" />+                    </vertex>+                    <vertex>+                        <position x="-13.6747" y="20.7223" z="-1.46195" />+                        <normal x="-0.885655" y="0.397899" z="0.239356" />+                        <texcoord u="2.45044" v="-1.03638" />+                    </vertex>+                    <vertex>+                        <position x="-3.99935" y="13.8689" z="7.28325" />+                        <normal x="-0.399828" y="0.267688" z="0.87663" />+                        <texcoord u="2.8765" v="-1.29326" />+                    </vertex>+                    <vertex>+                        <position x="-2.64026" y="14.2966" z="7.54305" />+                        <normal x="-0.411086" y="0.213684" z="0.886198" />+                        <texcoord u="2.88285" v="-1.36599" />+                    </vertex>+                    <vertex>+                        <position x="-3.7445" y="14.685" z="6.81045" />+                        <normal x="-0.555193" y="0.282136" z="0.782407" />+                        <texcoord u="2.83944" v="-1.31337" />+                    </vertex>+                    <vertex>+                        <position x="-4.30489" y="14.3544" z="6.69805" />+                        <normal x="-0.496137" y="0.589672" z="0.637287" />+                        <texcoord u="2.83902" v="-1.28211" />+                    </vertex>+                    <vertex>+                        <position x="-3.3919" y="12.7468" z="7.28205" />+                        <normal x="-0.508218" y="-0.244232" z="0.825872" />+                        <texcoord u="2.90565" v="-1.31105" />+                    </vertex>+                    <vertex>+                        <position x="-3.68476" y="13.069" z="7.31065" />+                        <normal x="-0.305932" y="-0.244184" z="0.920206" />+                        <texcoord u="2.89768" v="-1.29956" />+                    </vertex>+                    <vertex>+                        <position x="-3.52708" y="11.9819" z="6.69095" />+                        <normal x="-0.55521" y="-0.35284" z="0.753157" />+                        <texcoord u="2.89639" v="-1.29105" />+                    </vertex>+                    <vertex>+                        <position x="-5.93498" y="12.0806" z="6.31505" />+                        <normal x="-0.364305" y="-0.43824" z="0.821723" />+                        <texcoord u="2.86085" v="-1.16087" />+                    </vertex>+                    <vertex>+                        <position x="-5.90785" y="11.1926" z="5.51395" />+                        <normal x="-0.402374" y="-0.336696" z="0.851311" />+                        <texcoord u="2.83954" v="-1.1362" />+                    </vertex>+                    <vertex>+                        <position x="-10.9108" y="12.0243" z="1.57785" />+                        <normal x="-0.869773" y="-0.273902" z="0.410455" />+                        <texcoord u="2.58451" v="-0.915585" />+                    </vertex>+                    <vertex>+                        <position x="-9.92687" y="11.0324" z="2.12335" />+                        <normal x="-0.758045" y="-0.391567" z="0.521577" />+                        <texcoord u="2.62381" v="-0.921167" />+                    </vertex>+                    <vertex>+                        <position x="-9.67743" y="11.5401" z="3.07895" />+                        <normal x="-0.735017" y="-0.31582" z="0.600007" />+                        <texcoord u="2.67411" v="-0.952748" />+                    </vertex>+                    <vertex>+                        <position x="-10.8338" y="11.3953" z="0.530151" />+                        <normal x="-0.915369" y="-0.197362" z="0.350924" />+                        <texcoord u="2.52959" v="-0.895343" />+                    </vertex>+                    <vertex>+                        <position x="-11.7234" y="12.3825" z="-1.75025" />+                        <normal x="-0.889469" y="0.248929" z="0.383248" />+                        <texcoord u="2.41028" v="-0.899031" />+                    </vertex>+                    <vertex>+                        <position x="-12.1054" y="10.2069" z="-0.255848" />+                        <normal x="-0.721665" y="0.534115" z="0.440364" />+                        <texcoord u="2.48536" v="-0.807517" />+                    </vertex>+                    <vertex>+                        <position x="-10.858" y="11.2306" z="0.480553" />+                        <normal x="-0.828885" y="0.257081" z="0.49685" />+                        <texcoord u="2.52706" v="-0.88863" />+                    </vertex>+                    <vertex>+                        <position x="-12.9851" y="11.0849" z="-2.94175" />+                        <normal x="-0.793676" y="0.498318" z="0.348939" />+                        <texcoord u="2.34589" v="-0.819735" />+                    </vertex>+                    <vertex>+                        <position x="-10.9812" y="22.297" z="-3.90985" />+                        <normal x="-0.721958" y="0.691898" z="0.00739497" />+                        <texcoord u="2.37142" v="-1.13888" />+                    </vertex>+                    <vertex>+                        <position x="-10.5118" y="22.5658" z="-2.69175" />+                        <normal x="-0.597333" y="0.794998" z="0.105696" />+                        <texcoord u="2.41152" v="-1.15447" />+                    </vertex>+                    <vertex>+                        <position x="-8.36223" y="24.8325" z="-3.05325" />+                        <normal x="-0.578367" y="0.811966" z="0.0787518" />+                        <texcoord u="2.40605" v="-1.24269" />+                    </vertex>+                    <vertex>+                        <position x="-3.61487" y="20.5929" z="6.90565" />+                        <normal x="-0.316444" y="0.566539" z="0.760852" />+                        <texcoord u="2.75511" v="-1.36646" />+                    </vertex>+                    <vertex>+                        <position x="-4.88355" y="22.8208" z="4.61815" />+                        <normal x="-0.437483" y="0.584389" z="0.683446" />+                        <texcoord u="2.65661" v="-1.33439" />+                    </vertex>+                    <vertex>+                        <position x="-6.08262" y="21.7219" z="4.15515" />+                        <normal x="-0.475711" y="0.5939" z="0.648831" />+                        <texcoord u="2.64676" v="-1.28516" />+                    </vertex>+                    <vertex>+                        <position x="-9.46896" y="3.57825" z="10.8406" />+                        <normal x="-0.574595" y="0.459012" z="0.677605" />+                        <texcoord u="3.2954" v="-0.805239" />+                    </vertex>+                    <vertex>+                        <position x="-8.64813" y="5.86675" z="9.39085" />+                        <normal x="-0.533459" y="0.59297" z="0.603165" />+                        <texcoord u="3.16734" v="-0.885441" />+                    </vertex>+                    <vertex>+                        <position x="-13.7059" y="1.90145" z="7.39025" />+                        <normal x="-0.757441" y="0.392604" z="0.521676" />+                        <texcoord u="3.04736" v="-0.484862" />+                    </vertex>+                    <vertex>+                        <position x="-18.0624" y="-1.55735" z="-0.140747" />+                        <normal x="-0.925153" y="0.30608" z="0.224514" />+                        <texcoord u="2.48973" v="-0.181599" />+                    </vertex>+                    <vertex>+                        <position x="-17.0188" y="1.21135" z="-0.546347" />+                        <normal x="-0.902843" y="0.286928" z="0.320231" />+                        <texcoord u="2.46171" v="-0.307131" />+                    </vertex>+                    <vertex>+                        <position x="-19.0844" y="-0.41415" z="-5.06625" />+                        <normal x="-0.92399" y="0.238983" z="0.298547" />+                        <texcoord u="2.17499" v="-0.275716" />+                    </vertex>+                    <vertex>+                        <position x="-16.9106" y="4.30295" z="-19.0804" />+                        <normal x="-0.366789" y="-0.0704802" z="-0.927631" />+                        <texcoord u="1.6641" v="-0.759157" />+                    </vertex>+                    <vertex>+                        <position x="-19.0238" y="4.18565" z="-18.0565" />+                        <normal x="-0.678058" y="-0.0706861" z="-0.731602" />+                        <texcoord u="1.72616" v="-0.684705" />+                    </vertex>+                    <vertex>+                        <position x="-17.1487" y="5.87025" z="-18.9981" />+                        <normal x="-0.390734" y="-0.0682795" z="-0.917968" />+                        <texcoord u="1.7053" v="-0.782657" />+                    </vertex>+                    <vertex>+                        <position x="-18.9919" y="2.65075" z="-17.7743" />+                        <normal x="-0.666697" y="-0.249784" z="-0.702227" />+                        <texcoord u="1.70108" v="-0.646349" />+                    </vertex>+                    <vertex>+                        <position x="-19.3375" y="7.61975" z="-17.0937" />+                        <normal x="-0.936814" y="0.180788" z="0.29949" />+                        <texcoord u="1.82342" v="-0.734614" />+                    </vertex>+                    <vertex>+                        <position x="-19.3146" y="7.71225" z="-17.6134" />+                        <normal x="-0.917993" y="-0.14843" z="-0.367774" />+                        <texcoord u="1.81156" v="-0.745074" />+                    </vertex>+                    <vertex>+                        <position x="-19.7852" y="4.71225" z="-17.059" />+                        <normal x="-0.973332" y="-0.0138012" z="-0.228985" />+                        <texcoord u="1.77648" v="-0.660861" />+                    </vertex>+                    <vertex>+                        <position x="-19.8762" y="5.61885" z="-16.0798" />+                        <normal x="-0.968597" y="0.146936" z="0.200575" />+                        <texcoord u="1.82209" v="-0.662035" />+                    </vertex>+                    <vertex>+                        <position x="-19.647" y="3.96615" z="-15.4471" />+                        <normal x="-0.953766" y="0.00554674" z="0.300499" />+                        <texcoord u="1.80482" v="-0.615803" />+                    </vertex>+                    <vertex>+                        <position x="-18.6214" y="7.50295" z="-14.9576" />+                        <normal x="-0.845204" y="0.36112" z="0.393984" />+                        <texcoord u="1.86888" v="-0.714294" />+                    </vertex>+                    <vertex>+                        <position x="-18.9849" y="11.9869" z="-17.3027" />+                        <normal x="-0.74893" y="0.110462" z="0.653378" />+                        <texcoord u="1.89204" v="-0.832931" />+                    </vertex>+                    <vertex>+                        <position x="-18.3088" y="8.56165" z="-16.1205" />+                        <normal x="-0.846933" y="0.275135" z="0.454979" />+                        <texcoord u="1.85146" v="-0.763428" />+                    </vertex>+                    <vertex>+                        <position x="-20.6322" y="11.98" z="-18.1547" />+                        <normal x="-0.85895" y="-0.0747675" z="0.506572" />+                        <texcoord u="1.89036" v="-0.807161" />+                    </vertex>+                    <vertex>+                        <position x="-24.2388" y="24.6323" z="-21.5214" />+                        <normal x="-0.877003" y="-0.202051" z="0.435937" />+                        <texcoord u="2.0134" v="-0.951959" />+                    </vertex>+                    <vertex>+                        <position x="-24.0769" y="23.8463" z="-21.6568" />+                        <normal x="-0.819792" y="-0.2836" z="0.497507" />+                        <texcoord u="2.00184" v="-0.946172" />+                    </vertex>+                    <vertex>+                        <position x="-21.4958" y="21.8917" z="-19.6627" />+                        <normal x="-0.721429" y="-0.592342" z="0.358708" />+                        <texcoord u="2.00245" v="-0.956061" />+                    </vertex>+                    <vertex>+                        <position x="-22.3744" y="22.5943" z="-19.022" />+                        <normal x="-0.824163" y="-0.502523" z="0.2612" />+                        <texcoord u="2.02836" v="-0.945243" />+                    </vertex>+                    <vertex>+                        <position x="-25.4641" y="26.4963" z="-24.339" />+                        <normal x="-0.957081" y="0.0314502" z="0.288111" />+                        <texcoord u="1.9909" v="-0.967371" />+                    </vertex>+                    <vertex>+                        <position x="-24.1968" y="25.2485" z="-21.5873" />+                        <normal x="-0.695946" y="0.400032" z="0.59635" />+                        <texcoord u="2.01832" v="-0.9601" />+                    </vertex>+                    <vertex>+                        <position x="-23.9762" y="23.3251" z="-21.7117" />+                        <normal x="-0.822" y="-0.19503" z="0.535051" />+                        <texcoord u="1.99467" v="-0.941965" />+                    </vertex>+                    <vertex>+                        <position x="-23.3086" y="19.967" z="-21.7917" />+                        <normal x="-0.869663" y="-0.188044" z="0.456427" />+                        <texcoord u="1.9502" v="-0.91193" />+                    </vertex>+                    <vertex>+                        <position x="-18.3803" y="19.4992" z="-17.9269" />+                        <normal x="-0.71687" y="-0.697194" z="-0.00423354" />+                        <texcoord u="1.98812" v="-0.975172" />+                    </vertex>+                    <vertex>+                        <position x="-20.3577" y="20.3774" z="-16.5255" />+                        <normal x="-0.841566" y="-0.450681" z="0.297749" />+                        <texcoord u="2.04353" v="-0.937677" />+                    </vertex>+                    <vertex>+                        <position x="-15.7127" y="11.0823" z="-12.069" />+                        <normal x="-0.734883" y="0.0245346" z="0.67775" />+                        <texcoord u="1.98578" v="-0.830533" />+                    </vertex>+                    <vertex>+                        <position x="-16.1028" y="9.47515" z="-12.4633" />+                        <normal x="-0.955781" y="-0.0265846" z="0.292875" />+                        <texcoord u="1.94704" v="-0.785569" />+                    </vertex>+                    <vertex>+                        <position x="-15.9212" y="9.53825" z="-12.1333" />+                        <normal x="-0.919064" y="0.139366" z="0.368645" />+                        <texcoord u="1.95682" v="-0.78724" />+                    </vertex>+                    <vertex>+                        <position x="-16.4133" y="10.4612" z="-12.6235" />+                        <normal x="-0.822242" y="-0.275723" z="0.497891" />+                        <texcoord u="1.9649" v="-0.804249" />+                    </vertex>+                    <vertex>+                        <position x="-17.5055" y="11.5955" z="-13.5049" />+                        <normal x="-0.887732" y="-0.178599" z="0.424305" />+                        <texcoord u="1.97126" v="-0.814627" />+                    </vertex>+                    <vertex>+                        <position x="-15.5426" y="13.6967" z="-11.915" />+                        <normal x="-0.756422" y="0.108487" z="0.645024" />+                        <texcoord u="2.03498" v="-0.893401" />+                    </vertex>+                    <vertex>+                        <position x="-17.6985" y="13.0633" z="-13.7351" />+                        <normal x="-0.963556" y="0.152253" z="0.21995" />+                        <texcoord u="1.99119" v="-0.844365" />+                    </vertex>+                    <vertex>+                        <position x="-16.9023" y="16.6716" z="-13.4629" />+                        <normal x="-0.865386" y="-0.487688" z="0.115184" />+                        <texcoord u="2.04702" v="-0.931288" />+                    </vertex>+                    <vertex>+                        <position x="-17.0792" y="17.3999" z="-12.7628" />+                        <normal x="-0.768442" y="-0.303105" z="0.563581" />+                        <texcoord u="2.0778" v="-0.93501" />+                    </vertex>+                    <vertex>+                        <position x="-18.8691" y="18.8544" z="-14.8269" />+                        <normal x="-0.7787" y="-0.623079" z="0.0734815" />+                        <texcoord u="2.05511" v="-0.933824" />+                    </vertex>+                    <vertex>+                        <position x="-16.8326" y="17.3184" z="-15.2568" />+                        <normal x="-0.731889" y="-0.64229" z="-0.227602" />+                        <texcoord u="2.00862" v="-0.95787" />+                    </vertex>+                    <vertex>+                        <position x="-17.6342" y="9.09025" z="-15.776" />+                        <normal x="-0.341023" y="0.417384" z="0.842314" />+                        <texcoord u="1.86118" v="-0.785937" />+                    </vertex>+                    <vertex>+                        <position x="-17.4639" y="9.42495" z="-15.7389" />+                        <normal x="-0.430391" y="0.295426" z="0.852929" />+                        <texcoord u="1.86629" v="-0.796836" />+                    </vertex>+                    <vertex>+                        <position x="-17.6428" y="10.8185" z="-16.189" />+                        <normal x="-0.121335" y="0.272483" z="0.954479" />+                        <texcoord u="1.88319" v="-0.8278" />+                    </vertex>+                    <vertex>+                        <position x="-18.3693" y="10.7405" z="-16.072" />+                        <normal x="-0.156849" y="0.172378" z="0.972463" />+                        <texcoord u="1.89412" v="-0.807519" />+                    </vertex>+                    <vertex>+                        <position x="-16.1167" y="8.28885" z="-14.484" />+                        <normal x="-0.229326" y="0.76697" z="0.599306" />+                        <texcoord u="1.8588" v="-0.786523" />+                    </vertex>+                    <vertex>+                        <position x="-16.5107" y="8.66745" z="-14.8605" />+                        <normal x="-0.310631" y="0.545282" z="0.778573" />+                        <texcoord u="1.86182" v="-0.790949" />+                    </vertex>+                    <vertex>+                        <position x="-17.7427" y="8.22535" z="-14.5128" />+                        <normal x="-0.360682" y="0.787523" z="0.499716" />+                        <texcoord u="1.88217" v="-0.744663" />+                    </vertex>+                    <vertex>+                        <position x="-17.6413" y="7.87295" z="-13.6195" />+                        <normal x="-0.329247" y="0.801138" z="0.499774" />+                        <texcoord u="1.90126" v="-0.724452" />+                    </vertex>+                    <vertex>+                        <position x="-15.4145" y="9.48375" z="-14.0832" />+                        <normal x="-0.956461" y="-0.285226" z="-0.0618773" />+                        <texcoord u="1.88572" v="-0.827646" />+                    </vertex>+                    <vertex>+                        <position x="-16.0675" y="9.43035" z="-12.8556" />+                        <normal x="-0.961163" y="-0.166703" z="-0.219946" />+                        <texcoord u="1.93271" v="-0.790977" />+                    </vertex>+                    <vertex>+                        <position x="-16.408" y="10.1742" z="-12.9671" />+                        <normal x="-0.772582" y="-0.63437" z="-0.0262853" />+                        <texcoord u="1.94836" v="-0.80198" />+                    </vertex>+                    <vertex>+                        <position x="-15.6741" y="9.86215" z="-14.3925" />+                        <normal x="-0.801026" y="-0.555746" z="0.222495" />+                        <texcoord u="1.88814" v="-0.833659" />+                    </vertex>+                    <vertex>+                        <position x="-16.4624" y="15.737" z="-14.6451" />+                        <normal x="-0.918027" y="-0.0193107" z="-0.396048" />+                        <texcoord u="1.99721" v="-0.934821" />+                    </vertex>+                    <vertex>+                        <position x="-16.8167" y="16.1326" z="-13.6218" />+                        <normal x="-0.958574" y="-0.152429" z="0.240627" />+                        <texcoord u="2.03407" v="-0.924791" />+                    </vertex>+                    <vertex>+                        <position x="-16.5961" y="16.8119" z="-15.1265" />+                        <normal x="-0.899298" y="-0.316143" z="-0.302186" />+                        <texcoord u="2.00246" v="-0.954129" />+                    </vertex>+                    <vertex>+                        <position x="-17.3655" y="14.0369" z="-14.5572" />+                        <normal x="-0.886725" y="0.391508" z="-0.245848" />+                        <texcoord u="1.9805" v="-0.880282" />+                    </vertex>+                    <vertex>+                        <position x="-17.5552" y="13.2732" z="-14.476" />+                        <normal x="-0.93515" y="0.0964835" z="-0.34086" />+                        <texcoord u="1.9721" v="-0.859811" />+                    </vertex>+                    <vertex>+                        <position x="-17.4174" y="11.4654" z="-14.0894" />+                        <normal x="-0.894847" y="-0.416681" z="-0.160083" />+                        <texcoord u="1.95059" v="-0.820822" />+                    </vertex>+                    <vertex>+                        <position x="-16.8959" y="10.7341" z="-13.0263" />+                        <normal x="-0.815212" y="-0.444928" z="0.370767" />+                        <texcoord u="1.96327" v="-0.803835" />+                    </vertex>+                    <vertex>+                        <position x="-10.3569" y="16.0412" z="-19.2223" />+                        <normal x="0.122633" y="0.378996" z="-0.917237" />+                        <texcoord u="1.84345" v="-1.14625" />+                    </vertex>+                    <vertex>+                        <position x="-11.8741" y="16.3829" z="-19.3728" />+                        <normal x="0.423039" y="0.3482" z="-0.836538" />+                        <texcoord u="1.85809" v="-1.10656" />+                    </vertex>+                    <vertex>+                        <position x="-10.8576" y="19.5745" z="-16.038" />+                        <normal x="0.12195" y="0.932886" z="-0.338897" />+                        <texcoord u="1.98595" v="-1.15199" />+                    </vertex>+                    <vertex>+                        <position x="-11.9206" y="19.7847" z="-16.9291" />+                        <normal x="0.5119" y="0.79954" z="-0.314157" />+                        <texcoord u="1.97419" v="-1.12975" />+                    </vertex>+                    <vertex>+                        <position x="-14.6714" y="12.0821" z="-20.1344" />+                        <normal x="0.122389" y="-0.103824" z="-0.987037" />+                        <texcoord u="1.78017" v="-0.975479" />+                    </vertex>+                    <vertex>+                        <position x="-15.1814" y="18.6764" z="-20.9041" />+                        <normal x="0.459646" y="0.135655" z="-0.877681" />+                        <texcoord u="1.89162" v="-1.05817" />+                    </vertex>+                    <vertex>+                        <position x="-13.3411" y="17.3876" z="-20.046" />+                        <normal x="0.504024" y="0.212656" z="-0.8371" />+                        <texcoord u="1.8737" v="-1.08318" />+                    </vertex>+                    <vertex>+                        <position x="-15.9414" y="13.9416" z="-20.5497" />+                        <normal x="0.165957" y="-0.18409" z="-0.968798" />+                        <texcoord u="1.82174" v="-0.973837" />+                    </vertex>+                    <vertex>+                        <position x="-15.5459" y="8.43975" z="-19.8187" />+                        <normal x="-0.155657" y="-0.100285" z="-0.982707" />+                        <texcoord u="1.71891" v="-0.887308" />+                    </vertex>+                    <vertex>+                        <position x="-16.7573" y="10.9769" z="-19.833" />+                        <normal x="-0.113435" y="-0.245058" z="-0.962849" />+                        <texcoord u="1.78831" v="-0.898681" />+                    </vertex>+                    <vertex>+                        <position x="-13.9397" y="15.0169" z="-9.67925" />+                        <normal x="-0.849553" y="0.110625" z="0.515773" />+                        <texcoord u="2.11584" v="-0.946751" />+                    </vertex>+                    <vertex>+                        <position x="-13.8661" y="15.6436" z="-9.91495" />+                        <normal x="-0.899977" y="-0.0227895" z="0.435342" />+                        <texcoord u="2.11662" v="-0.963841" />+                    </vertex>+                    <vertex>+                        <position x="-15.1906" y="15.8298" z="-11.5158" />+                        <normal x="-0.78915" y="-0.1749" z="0.588772" />+                        <texcoord u="2.07802" v="-0.943358" />+                    </vertex>+                    <vertex>+                        <position x="-15.1735" y="14.8694" z="-11.7113" />+                        <normal x="-0.812945" y="0.00231435" z="0.582336" />+                        <texcoord u="2.05705" v="-0.926101" />+                    </vertex>+                    <vertex>+                        <position x="-16.3736" y="6.55825" z="-11.2021" />+                        <normal x="-0.936568" y="0.348193" z="-0.0400341" />+                        <texcoord u="1.93764" v="-0.678027" />+                    </vertex>+                    <vertex>+                        <position x="-15.9808" y="8.55745" z="-11.9489" />+                        <normal x="-0.964439" y="0.162506" z="0.208447" />+                        <texcoord u="1.94453" v="-0.757098" />+                    </vertex>+                    <vertex>+                        <position x="-16.1423" y="7.81295" z="-12.2038" />+                        <normal x="-0.921098" y="0.18755" z="0.34118" />+                        <texcoord u="1.92299" v="-0.736774" />+                    </vertex>+                    <vertex>+                        <position x="-15.5601" y="8.68005" z="-10.4168" />+                        <normal x="-0.946329" y="0.241043" z="0.215314" />+                        <texcoord u="1.99678" v="-0.748314" />+                    </vertex>+                    <vertex>+                        <position x="-17.7574" y="0.861351" z="-13.2082" />+                        <normal x="-0.909382" y="0.383607" z="-0.160842" />+                        <texcoord u="1.77245" v="-0.521869" />+                    </vertex>+                    <vertex>+                        <position x="-16.8776" y="5.22625" z="-11.512" />+                        <normal x="-0.837535" y="0.385207" z="-0.387492" />+                        <texcoord u="1.90794" v="-0.63199" />+                    </vertex>+                    <vertex>+                        <position x="-16.6995" y="5.31735" z="-12.1409" />+                        <normal x="-0.966944" y="0.2428" z="0.0778937" />+                        <texcoord u="1.8829" v="-0.651202" />+                    </vertex>+                    <vertex>+                        <position x="-18.5525" y="0.898251" z="-12.5662" />+                        <normal x="-0.606318" y="0.588507" z="-0.534825" />+                        <texcoord u="1.81688" v="-0.491458" />+                    </vertex>+                    <vertex>+                        <position x="-19.9935" y="0.628651" z="-11.3287" />+                        <normal x="-0.742788" y="0.551441" z="-0.379708" />+                        <texcoord u="1.8945" v="-0.431387" />+                    </vertex>+                    <vertex>+                        <position x="-20.074" y="-1.72525" z="-14.3882" />+                        <normal x="-0.695565" y="0.542956" z="-0.470518" />+                        <texcoord u="1.73946" v="-0.438916" />+                    </vertex>+                    <vertex>+                        <position x="-21.2892" y="-1.72565" z="-11.865" />+                        <normal x="-0.853755" y="0.456844" z="-0.249793" />+                        <texcoord u="1.86409" v="-0.358991" />+                    </vertex>+                    <vertex>+                        <position x="-17.5658" y="5.20765" z="-9.97155" />+                        <normal x="-0.827959" y="0.505616" z="-0.242564" />+                        <texcoord u="1.98204" v="-0.58756" />+                    </vertex>+                    <vertex>+                        <position x="-13.5395" y="15.0095" z="-8.86635" />+                        <normal x="-0.945334" y="-0.052739" z="0.321811" />+                        <texcoord u="2.14119" v="-0.952076" />+                    </vertex>+                    <vertex>+                        <position x="-12.9133" y="13.93" z="-7.26035" />+                        <normal x="-0.997547" y="-0.0696674" z="-0.00686019" />+                        <texcoord u="2.1817" v="-0.933868" />+                    </vertex>+                    <vertex>+                        <position x="-13.0721" y="14.2071" z="-6.61215" />+                        <normal x="-0.992597" y="-0.119021" z="-0.0241983" />+                        <texcoord u="2.21239" v="-0.93141" />+                    </vertex>+                    <vertex>+                        <position x="-13.5184" y="15.4407" z="-8.50155" />+                        <normal x="-0.954419" y="-0.270626" z="0.125883" />+                        <texcoord u="2.16014" v="-0.95959" />+                    </vertex>+                    <vertex>+                        <position x="-13.5693" y="15.6888" z="-7.85905" />+                        <normal x="-0.945057" y="-0.286634" z="0.157187" />+                        <texcoord u="2.18686" v="-0.959335" />+                    </vertex>+                    <vertex>+                        <position x="-21.0697" y="-1.33685" z="-10.7173" />+                        <normal x="-0.904174" y="0.426771" z="-0.0183458" />+                        <texcoord u="1.91289" v="-0.345783" />+                    </vertex>+                    <vertex>+                        <position x="-20.0785" y="0.882153" z="-10.2701" />+                        <normal x="-0.886038" y="0.461181" z="-0.0474249" />+                        <texcoord u="1.94494" v="-0.41483" />+                    </vertex>+                    <vertex>+                        <position x="-20.7931" y="-8.22435" z="-4.12545" />+                        <normal x="-0.938303" y="0.277873" z="0.205852" />+                        <texcoord u="2.19942" v="0.0149803" />+                    </vertex>+                    <vertex>+                        <position x="-21.1261" y="-4.74385" z="-8.95265" />+                        <normal x="-0.934808" y="0.0931836" z="0.342711" />+                        <texcoord u="1.94897" v="-0.199697" />+                    </vertex>+                    <vertex>+                        <position x="-21.1612" y="-4.77135" z="-9.04285" />+                        <normal x="-0.980344" y="0.0888812" z="0.176141" />+                        <texcoord u="1.94488" v="-0.200951" />+                    </vertex>+                    <vertex>+                        <position x="-21.2962" y="-8.55055" z="-8.77535" />+                        <normal x="-0.995469" y="0.0669051" z="-0.0675675" />+                        <texcoord u="1.916" v="-0.0827428" />+                    </vertex>+                    <vertex>+                        <position x="-21.0979" y="-8.81315" z="-8.96975" />+                        <normal x="-0.81677" y="-0.217126" z="-0.534549" />+                        <texcoord u="1.89666" v="-0.080874" />+                    </vertex>+                    <vertex>+                        <position x="-3.61349" y="-14.046" z="20.1533" />+                        <normal x="-0.316669" y="-0.688781" z="0.652152" />+                        <texcoord u="4.20135" v="-1.19495" />+                    </vertex>+                    <vertex>+                        <position x="-6.48758" y="-13.8871" z="19.9957" />+                        <normal x="0.245808" y="-0.628153" z="0.738243" />+                        <texcoord u="4.13088" v="-0.970863" />+                    </vertex>+                    <vertex>+                        <position x="-25.1536" y="-10.5159" z="-5.34255" />+                        <normal x="0.0468753" y="0.997567" z="0.0516103" />+                        <texcoord u="2.17612" v="0.0248967" />+                    </vertex>+                    <vertex>+                        <position x="-26.6177" y="-10.7887" z="-4.82845" />+                        <normal x="-0.670491" y="0.741906" z="-0.00417601" />+                        <texcoord u="2.22299" v="0.0270594" />+                    </vertex>+                    <vertex>+                        <position x="-26.8856" y="-10.625" z="-2.55795" />+                        <normal x="-0.68253" y="0.720016" z="-0.125419" />+                        <texcoord u="2.35336" v="0.0413091" />+                    </vertex>+                    <vertex>+                        <position x="-25.5407" y="-10.2028" z="-3.08495" />+                        <normal x="-0.0108091" y="0.956915" z="-0.290166" />+                        <texcoord u="2.31408" v="0.0392687" />+                    </vertex>+                    <vertex>+                        <position x="-23.7223" y="-9.69595" z="-13.8122" />+                        <normal x="-0.698309" y="0.0405184" z="-0.714649" />+                        <texcoord u="1.73508" v="-0.186267" />+                    </vertex>+                    <vertex>+                        <position x="-24.7707" y="-8.63085" z="-12.5126" />+                        <normal x="-0.876727" y="0.374353" z="-0.30201" />+                        <texcoord u="1.82822" v="-0.170099" />+                    </vertex>+                    <vertex>+                        <position x="-22.9796" y="-4.98075" z="-12.0728" />+                        <normal x="-0.878208" y="0.468956" z="-0.0939707" />+                        <texcoord u="1.84847" v="-0.259874" />+                    </vertex>+                    <vertex>+                        <position x="-21.2114" y="-3.88535" z="-9.16325" />+                        <normal x="-0.527414" y="0.00500787" z="0.849594" />+                        <texcoord u="1.95171" v="-0.230795" />+                    </vertex>+                    <vertex>+                        <position x="-21.9191" y="-4.53085" z="-9.25945" />+                        <normal x="-0.379536" y="0.142692" z="0.914107" />+                        <texcoord u="1.95531" v="-0.210594" />+                    </vertex>+                    <vertex>+                        <position x="-13.1647" y="-16.0681" z="18.2447" />+                        <normal x="-0.504043" y="0.233006" z="0.831654" />+                        <texcoord u="3.91388" v="-0.479792" />+                    </vertex>+                    <vertex>+                        <position x="-18.0442" y="-22.3077" z="5.37375" />+                        <normal x="-0.592184" y="-0.782509" z="0.19235" />+                        <texcoord u="3.05434" v="0.361378" />+                    </vertex>+                    <vertex>+                        <position x="-19.051" y="-20.6856" z="5.40475" />+                        <normal x="-0.719953" y="-0.590328" z="0.364939" />+                        <texcoord u="3.01648" v="0.320504" />+                    </vertex>+                    <vertex>+                        <position x="-19.4606" y="-22.2183" z="1.10285" />+                        <normal x="-0.422936" y="-0.886299" z="0.188678" />+                        <texcoord u="2.60903" v="0.423856" />+                    </vertex>+                    <vertex>+                        <position x="-11.6878" y="-17.9879" z="18.8323" />+                        <normal x="-0.397334" y="-0.199859" z="0.895646" />+                        <texcoord u="4.02304" v="-0.554758" />+                    </vertex>+                    <vertex>+                        <position x="-11.5706" y="-16.2434" z="19.0969" />+                        <normal x="-0.43029" y="0.0934834" z="0.897837" />+                        <texcoord u="3.99712" v="-0.592909" />+                    </vertex>+                    <vertex>+                        <position x="-20.7068" y="-23.0303" z="-4.35655" />+                        <normal x="-0.178605" y="-0.983865" z="0.010483" />+                        <texcoord u="2.10704" v="0.367768" />+                    </vertex>+                    <vertex>+                        <position x="-16.5895" y="-23.3425" z="-4.32985" />+                        <normal x="-0.204116" y="-0.974613" z="-0.0920086" />+                        <texcoord u="1.99596" v="0.431175" />+                    </vertex>+                    <vertex>+                        <position x="-15.6823" y="-23.6042" z="0.781252" />+                        <normal x="-0.327433" y="-0.944736" z="0.0161346" />+                        <texcoord u="2.60115" v="0.530368" />+                    </vertex>+                    <vertex>+                        <position x="-8.8468" y="-21.0975" z="-9.21285" />+                        <normal x="-0.31295" y="-0.884197" z="-0.346782" />+                        <texcoord u="1.00925" v="-0.0684768" />+                    </vertex>+                    <vertex>+                        <position x="-5.66096" y="-24.6048" z="-4.16385" />+                        <normal x="-0.440072" y="-0.867903" z="-0.230393" />+                        <texcoord u="1.14988" v="0.335554" />+                    </vertex>+                    <vertex>+                        <position x="-7.80622" y="-23.0351" z="-4.42235" />+                        <normal x="-0.346252" y="-0.916459" z="-0.200531" />+                        <texcoord u="1.4134" v="0.418038" />+                    </vertex>+                    <vertex>+                        <position x="-6.17837" y="-22.5152" z="-8.96315" />+                        <normal x="-0.289692" y="-0.877243" z="-0.382783" />+                        <texcoord u="0.736712" v="-0.284552" />+                    </vertex>+                    <vertex>+                        <position x="-21.9198" y="-17.3967" z="-13.8993" />+                        <normal x="-0.455452" y="-0.560831" z="-0.691398" />+                        <texcoord u="1.57897" v="-0.0475053" />+                    </vertex>+                    <vertex>+                        <position x="-20.5415" y="-22.0053" z="-9.03215" />+                        <normal x="-0.186909" y="-0.894557" z="-0.405997" />+                        <texcoord u="1.74842" v="0.209288" />+                    </vertex>+                    <vertex>+                        <position x="-15.6963" y="-13.4121" z="-19.9795" />+                        <normal x="-0.323801" y="-0.3855" z="-0.864027" />+                        <texcoord u="1.21313" v="-0.489006" />+                    </vertex>+                    <vertex>+                        <position x="-19.6319" y="-11.7445" z="-18.0631" />+                        <normal x="-0.551696" y="-0.173591" z="-0.81578" />+                        <texcoord u="1.43019" v="-0.337268" />+                    </vertex>+                    <vertex>+                        <position x="-19.5553" y="-6.28675" z="-17.7242" />+                        <normal x="-0.633033" y="0.183457" z="-0.752073" />+                        <texcoord u="1.53557" v="-0.435936" />+                    </vertex>+                    <vertex>+                        <position x="-22.2382" y="-10.586" z="-15.9011" />+                        <normal x="-0.741857" y="-0.0142687" z="-0.670406" />+                        <texcoord u="1.60195" v="-0.244045" />+                    </vertex>+                    <vertex>+                        <position x="-17.4846" y="-0.642349" z="-16.4293" />+                        <normal x="-0.763409" y="0.24107" z="-0.599242" />+                        <texcoord u="1.62945" v="-0.57353" />+                    </vertex>+                    <vertex>+                        <position x="-18.3244" y="-0.39315" z="-14.8347" />+                        <normal x="-0.864003" y="0.314401" z="-0.393256" />+                        <texcoord u="1.70513" v="-0.518147" />+                    </vertex>+                    <vertex>+                        <position x="-18.7434" y="-3.03275" z="-17.1108" />+                        <normal x="-0.644214" y="0.35337" z="-0.67832" />+                        <texcoord u="1.59343" v="-0.506926" />+                    </vertex>+                    <vertex>+                        <position x="-23.505" y="-16.5679" z="-12.8696" />+                        <normal x="-0.716895" y="-0.297597" z="-0.630475" />+                        <texcoord u="1.68806" v="-0.0170805" />+                    </vertex>+                    <vertex>+                        <position x="-14.0906" y="18.75" z="-3.67195" />+                        <normal x="-0.972828" y="-0.138225" z="-0.185742" />+                        <texcoord u="2.36749" v="-0.991527" />+                    </vertex>+                    <vertex>+                        <position x="-13.8423" y="19.4422" z="-1.94765" />+                        <normal x="-0.917359" y="-0.249735" z="0.309977" />+                        <texcoord u="2.43089" v="-1.00879" />+                    </vertex>+                    <vertex>+                        <position x="-14.0323" y="20.0907" z="-3.71335" />+                        <normal x="-0.906913" y="0.253526" z="-0.336502" />+                        <texcoord u="2.37263" v="-1.01868" />+                    </vertex>+                    <vertex>+                        <position x="-13.3895" y="18.5855" z="-1.49875" />+                        <normal x="-0.864784" y="-0.360615" z="0.349435" />+                        <texcoord u="2.44447" v="-1.00394" />+                    </vertex>+                    <vertex>+                        <position x="-12.5043" y="17.335" z="-1.09845" />+                        <normal x="-0.731849" y="-0.565539" z="0.380214" />+                        <texcoord u="2.45636" v="-1.00318" />+                    </vertex>+                    <vertex>+                        <position x="-13.0312" y="18.352" z="-0.787848" />+                        <normal x="-0.828802" y="-0.35576" z="0.431883" />+                        <texcoord u="2.47031" v="-1.00886" />+                    </vertex>+                    <vertex>+                        <position x="-13.2052" y="17.5196" z="-2.27375" />+                        <normal x="-0.792159" y="-0.520962" z="0.317936" />+                        <texcoord u="2.41183" v="-0.987953" />+                    </vertex>+                    <vertex>+                        <position x="-6.98943" y="17.713" z="6.51605" />+                        <normal x="-0.672577" y="-0.432043" z="0.600815" />+                        <texcoord u="2.76846" v="-1.21204" />+                    </vertex>+                    <vertex>+                        <position x="-4.36835" y="15.6892" z="7.78745" />+                        <normal x="-0.589142" y="-0.682933" z="0.431874" />+                        <texcoord u="2.8591" v="-1.29857" />+                    </vertex>+                    <vertex>+                        <position x="-4.37759" y="16.4879" z="8.48595" />+                        <normal x="-0.52959" y="-0.36184" z="0.767207" />+                        <texcoord u="2.87124" v="-1.30849" />+                    </vertex>+                    <vertex>+                        <position x="-6.79632" y="16.901" z="5.72625" />+                        <normal x="-0.589728" y="-0.740978" z="0.321203" />+                        <texcoord u="2.74822" v="-1.20539" />+                    </vertex>+                    <vertex>+                        <position x="-3.06358" y="16.0984" z="8.88395" />+                        <normal x="-0.306825" y="-0.355545" z="0.882862" />+                        <texcoord u="2.8975" v="-1.36292" />+                    </vertex>+                    <vertex>+                        <position x="-2.37972" y="16.4339" z="9.17865" />+                        <normal x="-0.21181" y="-0.21469" z="0.953438" />+                        <texcoord u="2.90312" v="-1.39548" />+                    </vertex>+                    <vertex>+                        <position x="-1.5185" y="17.9352" z="9.45665" />+                        <normal x="0.0505334" y="0.0675638" z="0.996434" />+                        <texcoord u="2.88539" v="-1.43812" />+                    </vertex>+                    <vertex>+                        <position x="-1.86734" y="17.091" z="9.36595" />+                        <normal x="-0.104407" y="-0.127322" z="0.986351" />+                        <texcoord u="2.89767" v="-1.42071" />+                    </vertex>+                    <vertex>+                        <position x="-11.4391" y="21.7494" z="-3.70105" />+                        <normal x="-0.503221" y="0.797253" z="-0.333402" />+                        <texcoord u="2.3763" v="-1.11766" />+                    </vertex>+                    <vertex>+                        <position x="-12.1451" y="20.7229" z="-4.55155" />+                        <normal x="-0.782151" y="0.614113" z="-0.105377" />+                        <texcoord u="2.34383" v="-1.08328" />+                    </vertex>+                    <vertex>+                        <position x="-12.2229" y="20.718" z="-4.37315" />+                        <normal x="-0.483423" y="0.660501" z="-0.574491" />+                        <texcoord u="2.34995" v="-1.08061" />+                    </vertex>+                    <vertex>+                        <position x="-11.3815" y="21.7989" z="-3.93245" />+                        <normal x="-0.734826" y="0.677805" z="-0.0247352" />+                        <texcoord u="2.36884" v="-1.1204" />+                    </vertex>+                    <vertex>+                        <position x="-3.52407" y="11.8101" z="6.68335" />+                        <normal x="-0.740289" y="0.160308" z="0.652897" />+                        <texcoord u="2.90062" v="-1.28876" />+                    </vertex>+                    <vertex>+                        <position x="-3.46092" y="11.9207" z="6.79375" />+                        <normal x="-0.97771" y="0.0688147" z="0.198361" />+                        <texcoord u="2.90348" v="-1.29446" />+                    </vertex>+                    <vertex>+                        <position x="-2.28126" y="14.1889" z="7.75615" />+                        <normal x="-0.583123" y="0.233191" z="0.778197" />+                        <texcoord u="2.89539" v="-1.38371" />+                    </vertex>+                    <vertex>+                        <position x="-2.18566" y="14.192" z="7.84445" />+                        <normal x="-0.729922" y="0.586488" z="0.351064" />+                        <texcoord u="2.89933" v="-1.38874" />+                    </vertex>+                    <vertex>+                        <position x="-2.20858" y="14.2774" z="7.79775" />+                        <normal x="-0.568313" y="-0.156049" z="0.807879" />+                        <texcoord u="2.8953" v="-1.38804" />+                    </vertex>+                    <vertex>+                        <position x="-12.9599" y="19.5001" z="-4.83375" />+                        <normal x="-0.710265" y="0.376697" z="-0.594663" />+                        <texcoord u="2.32843" v="-1.03999" />+                    </vertex>+                    <vertex>+                        <position x="-12.9113" y="19.5371" z="-5.01415" />+                        <normal x="-0.952726" y="0.302912" z="-0.0236037" />+                        <texcoord u="2.32234" v="-1.04253" />+                    </vertex>+                    <vertex>+                        <position x="-5.87047" y="11.0376" z="5.51165" />+                        <normal x="-0.53267" y="0.328691" z="0.779888" />+                        <texcoord u="2.84331" v="-1.13434" />+                    </vertex>+                    <vertex>+                        <position x="-7.90212" y="10.8591" z="4.11645" />+                        <normal x="-0.606886" y="-0.175209" z="0.775236" />+                        <texcoord u="2.75262" v="-1.01506" />+                    </vertex>+                    <vertex>+                        <position x="-8.01583" y="10.667" z="4.18005" />+                        <normal x="-0.546449" y="0.530342" z="0.648175" />+                        <texcoord u="2.75869" v="-1.00393" />+                    </vertex>+                    <vertex>+                        <position x="-1.07129" y="15.1499" z="8.82175" />+                        <normal x="-0.374203" y="-0.163195" z="0.912874" />+                        <texcoord u="2.91907" v="-1.44911" />+                    </vertex>+                    <vertex>+                        <position x="-1.05031" y="15.056" z="8.87005" />+                        <normal x="-0.647959" y="0.534452" z="0.542688" />+                        <texcoord u="2.92314" v="-1.4499" />+                    </vertex>+                    <vertex>+                        <position x="-11.1119" y="16.5764" z="-0.614248" />+                        <normal x="-0.730943" y="-0.163497" z="0.662565" />+                        <texcoord u="2.47403" v="-1.03021" />+                    </vertex>+                    <vertex>+                        <position x="-11.9871" y="16.4194" z="-1.71385" />+                        <normal x="-0.724164" y="-0.545133" z="0.422393" />+                        <texcoord u="2.42843" v="-0.999422" />+                    </vertex>+                    <vertex>+                        <position x="-11.8753" y="16.2901" z="-1.73635" />+                        <normal x="-0.883613" y="-0.160788" z="0.439745" />+                        <texcoord u="2.4269" v="-1.00003" />+                    </vertex>+                    <vertex>+                        <position x="-11.0235" y="16.7644" z="-0.382347" />+                        <normal x="-0.55567" y="-0.658381" z="0.507706" />+                        <texcoord u="2.48395" v="-1.03718" />+                    </vertex>+                    <vertex>+                        <position x="-12.7781" y="16.7813" z="-4.90245" />+                        <normal x="-0.944691" y="-0.26474" z="0.193578" />+                        <texcoord u="2.30498" v="-0.991688" />+                    </vertex>+                    <vertex>+                        <position x="-12.1811" y="16.0821" z="-4.10675" />+                        <normal x="-0.9421" y="-0.113081" z="0.31569" />+                        <texcoord u="2.32857" v="-0.991508" />+                    </vertex>+                    <vertex>+                        <position x="-12.1711" y="16.1939" z="-3.95375" />+                        <normal x="-0.812372" y="-0.577327" z="0.0821293" />+                        <texcoord u="2.33558" v="-0.993848" />+                    </vertex>+                    <vertex>+                        <position x="-12.8572" y="16.8849" z="-4.77115" />+                        <normal x="-0.811294" y="-0.552339" z="-0.191634" />+                        <texcoord u="2.31115" v="-0.991085" />+                    </vertex>+                    <vertex>+                        <position x="-13.8775" y="18.0676" z="-3.32695" />+                        <normal x="-0.903487" y="-0.42232" z="0.0731946" />+                        <texcoord u="2.37598" v="-0.982667" />+                    </vertex>+                    <vertex>+                        <position x="-10.5992" y="22.5382" z="-2.54405" />+                        <normal x="-0.355868" y="0.925316" z="-0.130949" />+                        <texcoord u="2.41634" v="-1.15143" />+                    </vertex>+                    <vertex>+                        <position x="-12.2283" y="16.2427" z="-2.92075" />+                        <normal x="-0.685788" y="-0.709952" z="0.160198" />+                        <texcoord u="2.37823" v="-0.990165" />+                    </vertex>+                    <vertex>+                        <position x="-12.6754" y="16.509" z="-3.17585" />+                        <normal x="-0.695048" y="-0.707705" z="0.126737" />+                        <texcoord u="2.37051" v="-0.983167" />+                    </vertex>+                    <vertex>+                        <position x="-2.80026" y="13.6843" z="7.57645" />+                        <normal x="-0.444848" y="0.10701" z="0.88919" />+                        <texcoord u="2.89802" v="-1.35289" />+                    </vertex>+                    <vertex>+                        <position x="-11.6867" y="13.1166" z="-0.454849" />+                        <normal x="-0.971396" y="-0.07485" z="0.22536" />+                        <texcoord u="2.47746" v="-0.920963" />+                    </vertex>+                    <vertex>+                        <position x="-11.7552" y="14.8822" z="-0.835449" />+                        <normal x="-0.930769" y="0.113607" z="0.34751" />+                        <texcoord u="2.46222" v="-0.968356" />+                    </vertex>+                    <vertex>+                        <position x="-11.9252" y="14.3526" z="-1.78135" />+                        <normal x="-0.993973" y="-0.0568486" z="0.0937325" />+                        <texcoord u="2.41786" v="-0.950081" />+                    </vertex>+                    <vertex>+                        <position x="-11.4047" y="13.684" z="0.258553" />+                        <normal x="-0.879631" y="0.147182" z="0.452312" />+                        <texcoord u="2.51253" v="-0.947138" />+                    </vertex>+                    <vertex>+                        <position x="-3.89298" y="14.9007" z="6.73075" />+                        <normal x="-0.628451" y="-0.558386" z="0.54153" />+                        <texcoord u="2.8313" v="-1.30838" />+                    </vertex>+                    <vertex>+                        <position x="-4.08621" y="14.7806" z="6.42355" />+                        <normal x="-0.651327" y="0.364332" z="0.665609" />+                        <texcoord u="2.81936" v="-1.29685" />+                    </vertex>+                    <vertex>+                        <position x="-2.94212" y="11.9706" z="10.1155" />+                        <normal x="0.431578" y="-0.573426" z="0.696364" />+                        <texcoord u="3.05144" v="-1.33961" />+                    </vertex>+                    <vertex>+                        <position x="-2.96387" y="11.2838" z="9.74625" />+                        <normal x="-0.145754" y="-0.593092" z="0.791832" />+                        <texcoord u="3.0591" v="-1.32998" />+                    </vertex>+                    <vertex>+                        <position x="-2.8016" y="11.3913" z="9.63505" />+                        <normal x="0.295054" y="-0.220024" z="0.929802" />+                        <texcoord u="3.05181" v="-1.33955" />+                    </vertex>+                    <vertex>+                        <position x="-3.08735" y="11.9065" z="10.1403" />+                        <normal x="-0.334274" y="-0.622549" z="0.707598" />+                        <texcoord u="3.05376" v="-1.3314" />+                    </vertex>+                    <vertex>+                        <position x="-0.99872" y="11.592" z="11.4633" />+                        <normal x="-0.863051" y="-0.492634" z="0.111596" />+                        <texcoord u="3.11971" v="-1.44601" />+                    </vertex>+                    <vertex>+                        <position x="-1.61321" y="12.4193" z="11.7365" />+                        <normal x="-0.7664" y="-0.642348" z="-0.00450533" />+                        <texcoord u="3.10058" v="-1.41745" />+                    </vertex>+                    <vertex>+                        <position x="-1.40415" y="12.5942" z="9.93405" />+                        <normal x="-0.384376" y="-0.766994" z="0.513784" />+                        <texcoord u="3.03003" v="-1.42508" />+                    </vertex>+                    <vertex>+                        <position x="-1.93131" y="12.7563" z="11.6269" />+                        <normal x="-0.555649" y="-0.825148" z="0.101906" />+                        <texcoord u="3.08554" v="-1.40274" />+                    </vertex>+                    <vertex>+                        <position x="-2.44005" y="12.8064" z="11.243" />+                        <normal x="-0.126662" y="-0.946565" z="0.296599" />+                        <texcoord u="3.06919" v="-1.37647" />+                    </vertex>+                    <vertex>+                        <position x="-2.17781" y="10.7687" z="9.56935" />+                        <normal x="-0.440183" y="-0.0187689" z="0.897712" />+                        <texcoord u="3.07346" v="-1.36949" />+                    </vertex>+                    <vertex>+                        <position x="-0.71118" y="10.5809" z="10.789" />+                        <normal x="-0.769271" y="-0.0638979" z="0.63572" />+                        <texcoord u="3.13224" v="-1.45832" />+                    </vertex>+                    <vertex>+                        <position x="-2.2108" y="10.5694" z="9.54125" />+                        <normal x="-0.440617" y="-0.215036" z="0.87156" />+                        <texcoord u="3.07937" v="-1.36576" />+                    </vertex>+                    <vertex>+                        <position x="-2.84184" y="12.5671" z="10.7736" />+                        <normal x="0.164202" y="-0.824697" z="0.541214" />+                        <texcoord u="3.05814" v="-1.35277" />+                    </vertex>+                    <vertex>+                        <position x="-3.34127" y="12.1185" z="9.83235" />+                        <normal x="-0.936686" y="-0.119426" z="0.329177" />+                        <texcoord u="3.03382" v="-1.31859" />+                    </vertex>+                    <vertex>+                        <position x="-2.97104" y="12.6029" z="10.8251" />+                        <normal x="-0.67505" y="-0.361253" z="0.643276" />+                        <texcoord u="3.0584" v="-1.34674" />+                    </vertex>+                    <vertex>+                        <position x="-2.98674" y="12.839" z="10.6196" />+                        <normal x="-0.868391" y="0.305378" z="0.390694" />+                        <texcoord u="3.04376" v="-1.34707" />+                    </vertex>+                    <vertex>+                        <position x="-12.847" y="19.9772" z="-7.41595" />+                        <normal x="-0.809079" y="0.587482" z="0.0159878" />+                        <texcoord u="2.2459" v="-1.05981" />+                    </vertex>+                    <vertex>+                        <position x="-11.5561" y="21.291" z="-8.41545" />+                        <normal x="-0.677208" y="0.727886" z="-0.107569" />+                        <texcoord u="2.223" v="-1.11963" />+                    </vertex>+                    <vertex>+                        <position x="-13.4081" y="12.4029" z="-6.24905" />+                        <normal x="-0.936199" y="0.330711" z="-0.118998" />+                        <texcoord u="2.20651" v="-0.870281" />+                    </vertex>+                    <vertex>+                        <position x="-13.0217" y="14.4475" z="-6.07635" />+                        <normal x="-0.961595" y="0.00323046" z="0.274452" />+                        <texcoord u="2.23662" v="-0.935578" />+                    </vertex>+                    <vertex>+                        <position x="-13.2768" y="12.5806" z="-5.82495" />+                        <normal x="-0.897522" y="0.340553" z="0.280137" />+                        <texcoord u="2.22629" v="-0.876135" />+                    </vertex>+                    <vertex>+                        <position x="-12.3793" y="8.64705" z="1.61025" />+                        <normal x="-0.641201" y="0.644081" z="0.417158" />+                        <texcoord u="2.59905" v="-0.738489" />+                    </vertex>+                    <vertex>+                        <position x="-11.1651" y="9.89465" z="1.50725" />+                        <normal x="-0.650649" y="0.562989" z="0.509607" />+                        <texcoord u="2.59051" v="-0.829569" />+                    </vertex>+                    <vertex>+                        <position x="-13.5213" y="8.70815" z="-0.752348" />+                        <normal x="-0.736948" y="0.561658" z="0.376096" />+                        <texcoord u="2.45582" v="-0.705986" />+                    </vertex>+                    <vertex>+                        <position x="-15.2939" y="9.44355" z="-6.59735" />+                        <normal x="-0.835247" y="0.541618" z="0.0949345" />+                        <texcoord u="2.16746" v="-0.729109" />+                    </vertex>+                    <vertex>+                        <position x="-15.3006" y="9.26395" z="-7.09305" />+                        <normal x="-0.807288" y="0.554451" z="-0.202167" />+                        <texcoord u="2.14239" v="-0.728587" />+                    </vertex>+                    <vertex>+                        <position x="-25.3806" y="26.7838" z="-24.6791" />+                        <normal x="-0.802465" y="0.213431" z="-0.557223" />+                        <texcoord u="1.98791" v="-0.97335" />+                    </vertex>+                    <vertex>+                        <position x="-23.4109" y="20.0698" z="-22.5011" />+                        <normal x="-0.718825" y="-0.448143" z="-0.531468" />+                        <texcoord u="1.93908" v="-0.916404" />+                    </vertex>+                    <vertex>+                        <position x="-20.6273" y="22.9655" z="-23.3753" />+                        <normal x="0.537715" y="0.189761" z="-0.821494" />+                        <texcoord u="1.94158" v="-1.00723" />+                    </vertex>+                    <vertex>+                        <position x="-21.233" y="21.6275" z="-23.6363" />+                        <normal x="0.226846" y="-0.117883" z="-0.96677" />+                        <texcoord u="1.92391" v="-0.982485" />+                    </vertex>+                    <vertex>+                        <position x="-24.6796" y="26.7217" z="-24.8259" />+                        <normal x="0.402968" y="0.404438" z="-0.821003" />+                        <texcoord u="1.98146" v="-0.98452" />+                    </vertex>+                    <vertex>+                        <position x="-21.4379" y="21.5177" z="-19.9281" />+                        <normal x="-0.658558" y="-0.280427" z="0.698328" />+                        <texcoord u="1.99241" v="-0.953952" />+                    </vertex>+                    <vertex>+                        <position x="-16.7804" y="7.86615" z="-13.2322" />+                        <normal x="-0.512187" y="0.823043" z="0.24549" />+                        <texcoord u="1.8998" v="-0.738849" />+                    </vertex>+                    <vertex>+                        <position x="-16.1154" y="8.45485" z="-12.4027" />+                        <normal x="-0.916312" y="0.239127" z="0.321233" />+                        <texcoord u="1.92886" v="-0.75789" />+                    </vertex>+                    <vertex>+                        <position x="-16.1232" y="8.56635" z="-12.8442" />+                        <normal x="-0.896369" y="0.403683" z="-0.183204" />+                        <texcoord u="1.91643" v="-0.767447" />+                    </vertex>+                    <vertex>+                        <position x="-16.8326" y="7.55365" z="-12.9158" />+                        <normal x="-0.610465" y="0.333031" z="0.718626" />+                        <texcoord u="1.90475" v="-0.724235" />+                    </vertex>+                    <vertex>+                        <position x="-17.9705" y="7.48815" z="-13.5361" />+                        <normal x="-0.680313" y="0.468082" z="0.563979" />+                        <texcoord u="1.90176" v="-0.705785" />+                    </vertex>+                    <vertex>+                        <position x="-18.1978" y="7.94465" z="-14.5897" />+                        <normal x="-0.709112" y="0.601237" z="0.368339" />+                        <texcoord u="1.88152" v="-0.728564" />+                    </vertex>+                    <vertex>+                        <position x="-18.0252" y="8.89495" z="-15.8596" />+                        <normal x="-0.610508" y="0.368336" z="0.701148" />+                        <texcoord u="1.8608" v="-0.773516" />+                    </vertex>+                    <vertex>+                        <position x="-18.5332" y="10.6628" z="-16.1841" />+                        <normal x="-0.697977" y="0.0520699" z="0.714225" />+                        <texcoord u="1.89185" v="-0.803577" />+                    </vertex>+                    <vertex>+                        <position x="-18.0362" y="16.8079" z="-17.1867" />+                        <normal x="-0.187559" y="0.044265" z="0.981255" />+                        <texcoord u="1.9635" v="-0.936982" />+                    </vertex>+                    <vertex>+                        <position x="-18.5475" y="14.6483" z="-17.0605" />+                        <normal x="-0.587012" y="0.189807" z="0.787014" />+                        <texcoord u="1.93742" v="-0.888389" />+                    </vertex>+                    <vertex>+                        <position x="-18.1786" y="14.5714" z="-16.9297" />+                        <normal x="0.046419" y="0.144651" z="0.988393" />+                        <texcoord u="1.93581" v="-0.894187" />+                    </vertex>+                    <vertex>+                        <position x="-18.2814" y="17.0919" z="-17.4153" />+                        <normal x="-0.747013" y="0.161109" z="0.644993" />+                        <texcoord u="1.96444" v="-0.93781" />+                    </vertex>+                    <vertex>+                        <position x="-15.5998" y="8.50825" z="-14.408" />+                        <normal x="-0.678734" y="0.557974" z="0.477478" />+                        <texcoord u="1.85764" v="-0.804508" />+                    </vertex>+                    <vertex>+                        <position x="-15.7818" y="8.28115" z="-14.181" />+                        <normal x="-0.559607" y="0.828514" z="0.020135" />+                        <texcoord u="1.86245" v="-0.790484" />+                    </vertex>+                    <vertex>+                        <position x="-15.5058" y="8.60535" z="-14.0044" />+                        <normal x="-0.935138" y="0.316846" z="-0.158512" />+                        <texcoord u="1.87055" v="-0.803073" />+                    </vertex>+                    <vertex>+                        <position x="-15.5064" y="8.69855" z="-14.3655" />+                        <normal x="-0.867425" y="0.221808" z="0.445393" />+                        <texcoord u="1.86162" v="-0.810923" />+                    </vertex>+                    <vertex>+                        <position x="-16.4798" y="10.1794" z="-15.3709" />+                        <normal x="-0.814931" y="-0.0111673" z="0.579451" />+                        <texcoord u="1.87769" v="-0.832795" />+                    </vertex>+                    <vertex>+                        <position x="-16.4909" y="10.5561" z="-15.1011" />+                        <normal x="-0.856834" y="-0.513889" z="-0.0418613" />+                        <texcoord u="1.89286" v="-0.836979" />+                    </vertex>+                    <vertex>+                        <position x="-16.5585" y="11.5768" z="-15.6939" />+                        <normal x="-0.967228" y="-0.139447" z="-0.212188" />+                        <texcoord u="1.89718" v="-0.863966" />+                    </vertex>+                    <vertex>+                        <position x="-16.6195" y="11.4273" z="-15.9835" />+                        <normal x="-0.862829" y="0.155073" z="0.481122" />+                        <texcoord u="1.88733" v="-0.862948" />+                    </vertex>+                    <vertex>+                        <position x="-18.4235" y="19.3267" z="-18.257" />+                        <normal x="-0.703396" y="-0.284083" z="0.65156" />+                        <texcoord u="1.97884" v="-0.974084" />+                    </vertex>+                    <vertex>+                        <position x="-18.0979" y="19.0201" z="-17.9371" />+                        <normal x="-0.838751" y="-0.126938" z="0.529512" />+                        <texcoord u="1.97927" v="-0.974603" />+                    </vertex>+                    <vertex>+                        <position x="-17.804" y="18.501" z="-16.477" />+                        <normal x="-0.695267" y="-0.704348" z="-0.143169" />+                        <texcoord u="2.00314" v="-0.963125" />+                    </vertex>+                    <vertex>+                        <position x="-17.6103" y="18.3224" z="-16.9081" />+                        <normal x="-0.893674" y="-0.285078" z="0.346522" />+                        <texcoord u="1.98911" v="-0.967894" />+                    </vertex>+                    <vertex>+                        <position x="-17.2643" y="17.9811" z="-16.7329" />+                        <normal x="-0.706379" y="-0.612336" z="0.355068" />+                        <texcoord u="1.98568" v="-0.969348" />+                    </vertex>+                    <vertex>+                        <position x="-15.3106" y="0.646351" z="-18.3099" />+                        <normal x="-0.471312" y="-0.0187809" z="-0.881767" />+                        <texcoord u="1.5576" v="-0.711973" />+                    </vertex>+                    <vertex>+                        <position x="-17.6832" y="-0.199551" z="-16.4254" />+                        <normal x="-0.632269" y="-0.55015" z="-0.5455" />+                        <texcoord u="1.64481" v="-0.579323" />+                    </vertex>+                    <vertex>+                        <position x="-15.8065" y="0.822151" z="-18.2498" />+                        <normal x="-0.226799" y="-0.459937" z="-0.858499" />+                        <texcoord u="1.57561" v="-0.699367" />+                    </vertex>+                    <vertex>+                        <position x="-10.7239" y="19.5663" z="-15.5581" />+                        <normal x="-0.296911" y="0.947703" z="-0.117061" />+                        <texcoord u="1.99682" v="-1.15317" />+                    </vertex>+                    <vertex>+                        <position x="-10.6557" y="19.6199" z="-15.5558" />+                        <normal x="-0.49226" y="0.851722" z="-0.179583" />+                        <texcoord u="1.99742" v="-1.15573" />+                    </vertex>+                    <vertex>+                        <position x="-10.7642" y="19.5747" z="-15.5763" />+                        <normal x="0.229476" y="0.972085" z="-0.0488942" />+                        <texcoord u="1.99673" v="-1.15221" />+                    </vertex>+                    <vertex>+                        <position x="-20.8011" y="12.5832" z="-19.0964" />+                        <normal x="-0.777102" y="-0.397023" z="-0.48835" />+                        <texcoord u="1.88025" v="-0.824933" />+                    </vertex>+                    <vertex>+                        <position x="-18.857" y="8.02185" z="-18.201" />+                        <normal x="-0.59097" y="-0.187067" z="-0.784704" />+                        <texcoord u="1.79605" v="-0.770681" />+                    </vertex>+                    <vertex>+                        <position x="-14.5697" y="6.06955" z="-19.729" />+                        <normal x="-0.0355101" y="-0.103592" z="-0.993986" />+                        <texcoord u="1.64977" v="-0.872114" />+                    </vertex>+                    <vertex>+                        <position x="-8.20875" y="12.2509" z="4.96125" />+                        <normal x="-0.666966" y="-0.0470938" z="0.743599" />+                        <texcoord u="2.77341" v="-1.04762" />+                    </vertex>+                    <vertex>+                        <position x="-7.88334" y="13.0411" z="4.97685" />+                        <normal x="-0.570538" y="0.430368" z="0.699479" />+                        <texcoord u="2.76366" v="-1.08237" />+                    </vertex>+                    <vertex>+                        <position x="-9.27316" y="13.1361" z="3.59295" />+                        <normal x="-0.693846" y="0.320218" z="0.64501" />+                        <texcoord u="2.6863" v="-1.01916" />+                    </vertex>+                    <vertex>+                        <position x="-9.40246" y="12.2264" z="3.41735" />+                        <normal x="-0.776286" y="-0.0205399" z="0.630047" />+                        <texcoord u="2.68641" v="-0.987106" />+                    </vertex>+                    <vertex>+                        <position x="-9.9232" y="10.8668" z="2.10215" />+                        <normal x="-0.715973" y="0.34101" z="0.609176" />+                        <texcoord u="2.62385" v="-0.915364" />+                    </vertex>+                    <vertex>+                        <position x="-7.09661" y="16.4636" z="3.49725" />+                        <normal x="-0.506593" y="-0.835132" z="0.214286" />+                        <texcoord u="2.65758" v="-1.18024" />+                    </vertex>+                    <vertex>+                        <position x="-6.1485" y="16.1399" z="4.58445" />+                        <normal x="-0.585112" y="-0.777476" z="0.230597" />+                        <texcoord u="2.71101" v="-1.217" />+                    </vertex>+                    <vertex>+                        <position x="-14.8485" y="11.0382" z="-10.1285" />+                        <normal x="-0.902654" y="0.28666" z="0.321001" />+                        <texcoord u="2.04258" v="-0.829418" />+                    </vertex>+                    <vertex>+                        <position x="-15.3228" y="8.67285" z="-8.72515" />+                        <normal x="-0.872251" y="0.489031" z="-0.00519398" />+                        <texcoord u="2.06147" v="-0.729863" />+                    </vertex>+                    <vertex>+                        <position x="-13.2495" y="12.0326" z="-7.73285" />+                        <normal x="-0.907166" y="0.301574" z="0.293433" />+                        <texcoord u="2.13671" v="-0.877542" />+                    </vertex>+                    <vertex>+                        <position x="-18.1061" y="17.8282" z="-17.3689" />+                        <normal x="-0.737003" y="0.0845293" z="0.670583" />+                        <texcoord u="1.975" v="-0.952715" />+                    </vertex>+                    <vertex>+                        <position x="-17.6697" y="17.3621" z="-17.0987" />+                        <normal x="-0.323012" y="-0.160583" z="0.932671" />+                        <texcoord u="1.97098" v="-0.953311" />+                    </vertex>+                    <vertex>+                        <position x="-20.6664" y="19.0829" z="-19.8766" />+                        <normal x="-0.560846" y="0.053059" z="0.826218" />+                        <texcoord u="1.95742" v="-0.935862" />+                    </vertex>+                    <vertex>+                        <position x="-18.8151" y="17.5912" z="-18.3803" />+                        <normal x="-0.629015" y="0.131591" z="0.766175" />+                        <texcoord u="1.9543" v="-0.941394" />+                    </vertex>+                    <vertex>+                        <position x="-18.6939" y="18.3284" z="-18.3853" />+                        <normal x="-0.639646" y="0.0958465" z="0.762671" />+                        <texcoord u="1.96392" v="-0.954923" />+                    </vertex>+                    <vertex>+                        <position x="-16.5381" y="12.5876" z="-16.2563" />+                        <normal x="-0.90108" y="0.174955" z="0.396795" />+                        <texcoord u="1.90116" v="-0.890778" />+                    </vertex>+                    <vertex>+                        <position x="-16.5476" y="12.7013" z="-15.8543" />+                        <normal x="-0.955223" y="0.0484093" z="-0.291901" />+                        <texcoord u="1.91384" v="-0.888211" />+                    </vertex>+                    <vertex>+                        <position x="-18.2179" y="13.0735" z="-16.5981" />+                        <normal x="-0.0652573" y="0.220785" z="0.973137" />+                        <texcoord u="1.91954" v="-0.862891" />+                    </vertex>+                    <vertex>+                        <position x="-18.6577" y="12.9418" z="-16.6672" />+                        <normal x="-0.725218" y="0.162606" z="0.669043" />+                        <texcoord u="1.92033" v="-0.851104" />+                    </vertex>+                    <vertex>+                        <position x="-17.5803" y="12.1557" z="-14.2803" />+                        <normal x="-0.957515" y="-0.139972" z="-0.252136" />+                        <texcoord u="1.95902" v="-0.834004" />+                    </vertex>+                    <vertex>+                        <position x="-18.7021" y="1.21575" z="-17.1471" />+                        <normal x="-0.524724" y="-0.532717" z="-0.663986" />+                        <texcoord u="1.681" v="-0.606727" />+                    </vertex>+                    <vertex>+                        <position x="-16.6725" y="2.73575" z="-19.0273" />+                        <normal x="-0.222227" y="-0.292268" z="-0.930158" />+                        <texcoord u="1.62433" v="-0.732702" />+                    </vertex>+                    <vertex>+                        <position x="-19.1294" y="2.36385" z="-14.4799" />+                        <normal x="-0.772791" y="-0.121755" z="0.622873" />+                        <texcoord u="1.79275" v="-0.565647" />+                    </vertex>+                    <vertex>+                        <position x="-19.5363" y="1.32915" z="-15.9978" />+                        <normal x="-0.907592" y="-0.41865" z="-0.0317717" />+                        <texcoord u="1.73456" v="-0.565262" />+                    </vertex>+                    <vertex>+                        <position x="-19.6463" y="3.09975" z="-16.7131" />+                        <normal x="-0.94855" y="-0.134904" z="-0.286451" />+                        <texcoord u="1.75172" v="-0.620399" />+                    </vertex>+                    <vertex>+                        <position x="-18.3147" y="6.19985" z="-13.6559" />+                        <normal x="-0.731406" y="0.100943" z="0.67443" />+                        <texcoord u="1.87886" v="-0.666959" />+                    </vertex>+                    <vertex>+                        <position x="-13.4651" y="7.10775" z="1.85185" />+                        <normal x="-0.720094" y="0.585417" z="0.372494" />+                        <texcoord u="2.61807" v="-0.641511" />+                    </vertex>+                    <vertex>+                        <position x="-11.1529" y="7.83465" z="4.83515" />+                        <normal x="-0.575092" y="0.670795" z="0.468298" />+                        <texcoord u="2.81599" v="-0.771136" />+                    </vertex>+                    <vertex>+                        <position x="-8.89352" y="9.79525" z="4.13455" />+                        <normal x="-0.54679" y="0.63582" z="0.54475" />+                        <texcoord u="2.76369" v="-0.932796" />+                    </vertex>+                    <vertex>+                        <position x="-10.1341" y="8.81225" z="4.39985" />+                        <normal x="-0.493101" y="0.744343" z="0.450339" />+                        <texcoord u="2.78443" v="-0.844872" />+                    </vertex>+                    <vertex>+                        <position x="-23.7053" y="-7.94645" z="5.29395" />+                        <normal x="-0.689963" y="0.590006" z="0.419338" />+                        <texcoord u="2.82728" v="-0.0344895" />+                    </vertex>+                    <vertex>+                        <position x="-26.5618" y="-10.1347" z="1.58435" />+                        <normal x="-0.899901" y="0.37899" z="0.215743" />+                        <texcoord u="2.59167" v="0.036861" />+                    </vertex>+                    <vertex>+                        <position x="-27.3837" y="-11.6885" z="-2.11065" />+                        <normal x="-0.913501" y="0.406615" z="-0.0134097" />+                        <texcoord u="2.37933" v="0.0655466" />+                    </vertex>+                    <vertex>+                        <position x="-27.405" y="-11.8161" z="-5.01085" />+                        <normal x="-0.902832" y="0.429963" z="-0.00509015" />+                        <texcoord u="2.21776" v="0.0436249" />+                    </vertex>+                    <vertex>+                        <position x="-24.4471" y="-7.68715" z="-10.2906" />+                        <normal x="-0.84134" y="0.526273" z="0.123224" />+                        <texcoord u="1.92796" v="-0.141015" />+                    </vertex>+                    <vertex>+                        <position x="-22.5332" y="-4.51865" z="-9.91955" />+                        <normal x="-0.875312" y="0.400815" z="0.270511" />+                        <texcoord u="1.93817" v="-0.223746" />+                    </vertex>+                    <vertex>+                        <position x="-24.2709" y="-7.96205" z="-9.39805" />+                        <normal x="-0.425231" y="0.558086" z="0.712544" />+                        <texcoord u="1.96333" v="-0.114029" />+                    </vertex>+                    <vertex>+                        <position x="-14.2103" y="-2.71385" z="8.97825" />+                        <normal x="0.0973399" y="0.900213" z="-0.424431" />+                        <texcoord u="3.23571" v="-0.335563" />+                    </vertex>+                    <vertex>+                        <position x="-10.7246" y="-0.594349" z="14.6202" />+                        <normal x="-0.124019" y="0.983517" z="-0.131578" />+                        <texcoord u="3.52893" v="-0.745231" />+                    </vertex>+                    <vertex>+                        <position x="-10.2784" y="-1.31635" z="12.5385" />+                        <normal x="0.0392321" y="0.944064" z="-0.32742" />+                        <texcoord u="3.51656" v="-0.666674" />+                    </vertex>+                    <vertex>+                        <position x="-14.5323" y="-2.09805" z="10.0177" />+                        <normal x="-0.307438" y="0.942" z="-0.134603" />+                        <texcoord u="3.26288" v="-0.393315" />+                    </vertex>+                    <vertex>+                        <position x="-23.8901" y="-10.8517" z="-3.12125" />+                        <normal x="0.249251" y="0.855016" z="-0.454776" />+                        <texcoord u="2.29444" v="0.0733922" />+                    </vertex>+                    <vertex>+                        <position x="-22.8509" y="-8.96805" z="-0.538147" />+                        <normal x="-0.01849" y="0.777606" z="-0.62848" />+                        <texcoord u="2.46357" v="0.047107" />+                    </vertex>+                    <vertex>+                        <position x="-23.4417" y="-8.73085" z="-8.62225" />+                        <normal x="0.0145789" y="0.577527" z="0.816241" />+                        <texcoord u="1.97612" v="-0.0756905" />+                    </vertex>+                    <vertex>+                        <position x="-22.2436" y="-8.79765" z="-9.04815" />+                        <normal x="0.270811" y="0.288166" z="0.918489" />+                        <texcoord u="1.92371" v="-0.083268" />+                    </vertex>+                    <vertex>+                        <position x="-26.6024" y="-19.4152" z="-7.64725" />+                        <normal x="-0.767317" y="-0.477214" z="-0.428358" />+                        <texcoord u="2.02017" v="0.169163" />+                    </vertex>+                    <vertex>+                        <position x="-24.6179" y="-15.673" z="-11.7075" />+                        <normal x="-0.733079" y="-0.198628" z="-0.650494" />+                        <texcoord u="1.78482" v="0.00383282" />+                    </vertex>+                    <vertex>+                        <position x="-23.9535" y="-21.1027" z="-8.33535" />+                        <normal x="-0.496534" y="-0.752485" z="-0.432691" />+                        <texcoord u="1.90769" v="0.20214" />+                    </vertex>+                    <vertex>+                        <position x="-0.9216" y="-0.746651" z="15.4665" />+                        <normal x="-0.10364" y="-0.0200818" z="0.994412" />+                        <texcoord u="3.78604" v="-1.42337" />+                    </vertex>+                    <vertex>+                        <position x="-1.52569" y="0.342152" z="15.4198" />+                        <normal x="-0.0489209" y="0.160807" z="0.985773" />+                        <texcoord u="3.72644" v="-1.37865" />+                    </vertex>+                    <vertex>+                        <position x="-1.66379" y="-0.0750504" z="15.4635" />+                        <normal x="-0.139819" y="0.095874" z="0.985525" />+                        <texcoord u="3.74664" v="-1.36587" />+                    </vertex>+                    <vertex>+                        <position x="-0.68885" y="-0.251652" z="15.5216" />+                        <normal x="-0.0870631" y="0.142091" z="0.986017" />+                        <texcoord u="3.76165" v="-1.44401" />+                    </vertex>+                    <vertex>+                        <position x="-3.46031" y="-14.4347" z="20.1211" />+                        <normal x="-0.693856" y="-0.0126407" z="0.720003" />+                        <texcoord u="4.21456" v="-1.20514" />+                    </vertex>+                    <vertex>+                        <position x="-1.49684" y="-13.7537" z="21.5732" />+                        <normal x="-0.408171" y="-0.264826" z="0.87365" />+                        <texcoord u="4.19671" v="-1.38227" />+                    </vertex>+                    <vertex>+                        <position x="-2.48486" y="-13.3344" z="21.4919" />+                        <normal x="-0.158782" y="-0.803306" z="0.57401" />+                        <texcoord u="4.17836" v="-1.30595" />+                    </vertex>+                    <vertex>+                        <position x="-5.18479" y="-14.6336" z="-21.0042" />+                        <normal x="-0.051049" y="-0.478269" z="-0.876728" />+                        <texcoord u="0.826963" v="-1.08702" />+                    </vertex>+                    <vertex>+                        <position x="-7.76277" y="-14.2887" z="-21.0536" />+                        <normal x="-0.0661794" y="-0.525292" z="-0.848345" />+                        <texcoord u="0.903821" v="-0.911466" />+                    </vertex>+                    <vertex>+                        <position x="-6.00191" y="-7.76365" z="-22.8596" />+                        <normal x="-0.0859267" y="-0.068761" z="-0.993926" />+                        <texcoord u="1.04669" v="-1.11843" />+                    </vertex>+                    <vertex>+                        <position x="-23.6247" y="-11.4452" z="-5.74005" />+                        <normal x="0.51936" y="0.851036" z="0.0774742" />+                        <texcoord u="2.12221" v="0.0548908" />+                    </vertex>+                    <vertex>+                        <position x="-19.0609" y="-6.17935" z="1.93375" />+                        <normal x="-0.123977" y="0.845032" z="-0.520145" />+                        <texcoord u="2.65123" v="-0.00936973" />+                    </vertex>+                    <vertex>+                        <position x="-25.2919" y="-9.02595" z="-8.87625" />+                        <normal x="-0.512567" y="0.752953" z="0.412718" />+                        <texcoord u="2.00047" v="-0.0766361" />+                    </vertex>+                    <vertex>+                        <position x="-25.5541" y="-9.55765" z="-9.75965" />+                        <normal x="-0.848216" y="0.504844" z="-0.160197" />+                        <texcoord u="1.95858" v="-0.0823791" />+                    </vertex>+                    <vertex>+                        <position x="-19.1915" y="-6.36495" z="8.19465" />+                        <normal x="-0.647094" y="0.598373" z="0.472462" />+                        <texcoord u="3.08338" v="-0.13375" />+                    </vertex>+                    <vertex>+                        <position x="-18.553" y="-4.70715" z="6.71335" />+                        <normal x="-0.636847" y="0.716891" z="0.283715" />+                        <texcoord u="2.98873" v="-0.149336" />+                    </vertex>+                    <vertex>+                        <position x="-16.8938" y="-0.230846" z="3.37865" />+                        <normal x="-0.8631" y="0.374509" z="0.338823" />+                        <texcoord u="2.74723" v="-0.263818" />+                    </vertex>+                    <vertex>+                        <position x="-24.6767" y="-10.1763" z="-7.21595" />+                        <normal x="0.261713" y="0.786436" z="0.559486" />+                        <texcoord u="2.06499" v="-0.0123785" />+                    </vertex>+                    <vertex>+                        <position x="-23.3079" y="-11.1189" z="-7.72015" />+                        <normal x="0.596309" y="0.556545" z="0.578509" />+                        <texcoord u="2.00057" v="0.00781977" />+                    </vertex>+                    <vertex>+                        <position x="-17.5031" y="12.8352" z="-16.7719" />+                        <normal x="0.054213" y="0.260443" z="0.963966" />+                        <texcoord u="1.90327" v="-0.877249" />+                    </vertex>+                    <vertex>+                        <position x="-8.67963" y="17.4768" z="3.91255" />+                        <normal x="-0.496038" y="-0.792274" z="0.355315" />+                        <texcoord u="2.66313" v="-1.13812" />+                    </vertex>+                    <vertex>+                        <position x="-8.22392" y="11.5629" z="4.59535" />+                        <normal x="-0.536351" y="-0.5481" z="0.641806" />+                        <texcoord u="2.76538" v="-1.02507" />+                    </vertex>+                    <vertex>+                        <position x="-25.0381" y="26.864" z="-24.8511" />+                        <normal x="-0.191757" y="0.669629" z="-0.717514" />+                        <texcoord u="1.98428" v="-0.9804" />+                    </vertex>+                    <vertex>+                        <position x="-21.9602" y="20.9325" z="-23.5111" />+                        <normal x="-0.0860008" y="-0.326721" z="-0.9412" />+                        <texcoord u="1.92196" v="-0.960088" />+                    </vertex>+                    <vertex>+                        <position x="-22.649" y="20.347" z="-22.953" />+                        <normal x="-0.320279" y="-0.423982" z="-0.847149" />+                        <texcoord u="1.92909" v="-0.936651" />+                    </vertex>+                    <vertex>+                        <position x="-18.3284" y="-0.0528488" z="-15.1645" />+                        <normal x="-0.964856" y="-0.254456" z="0.0656163" />+                        <texcoord u="1.70203" v="-0.535545" />+                    </vertex>+                    <vertex>+                        <position x="-16.8297" y="5.46465" z="-12.6107" />+                        <normal x="-0.750975" y="0.0825314" z="0.655153" />+                        <texcoord u="1.87175" v="-0.661568" />+                    </vertex>+                    <vertex>+                        <position x="-16.3685" y="16.8743" z="-15.6143" />+                        <normal x="-0.788071" y="-0.512087" z="-0.34163" />+                        <texcoord u="1.98923" v="-0.964559" />+                    </vertex>+                    <vertex>+                        <position x="-18.7549" y="15.0242" z="-17.7838" />+                        <normal x="-0.876883" y="0.143258" z="0.458862" />+                        <texcoord u="1.92822" v="-0.897005" />+                    </vertex>+                    <vertex>+                        <position x="-19.0358" y="15.2369" z="-18.1477" />+                        <normal x="-0.645273" y="0.158492" z="0.747331" />+                        <texcoord u="1.9258" v="-0.897703" />+                    </vertex>+                    <vertex>+                        <position x="-15.7794" y="8.67835" z="-14.594" />+                        <normal x="-0.509894" y="0.295384" z="0.807933" />+                        <texcoord u="1.85861" v="-0.80651" />+                    </vertex>+                    <vertex>+                        <position x="-13.1564" y="12.1997" z="-7.19225" />+                        <normal x="-0.911337" y="0.393725" z="-0.120188" />+                        <texcoord u="2.16112" v="-0.880098" />+                    </vertex>+                    <vertex>+                        <position x="-15.3161" y="8.85245" z="-8.22945" />+                        <normal x="-0.801954" y="0.568576" z="-0.18328" />+                        <texcoord u="2.08574" v="-0.729004" />+                    </vertex>+                    <vertex>+                        <position x="-11.5538" y="22.5659" z="-1.94855" />+                        <normal x="-0.183832" y="0.967432" z="-0.174013" />+                        <texcoord u="2.43662" v="-1.1242" />+                    </vertex>+                    <vertex>+                        <position x="-10.6328" y="22.4037" z="1.35715" />+                        <normal x="-0.346752" y="0.875298" z="0.33707" />+                        <texcoord u="2.54496" v="-1.14774" />+                    </vertex>+                    <vertex>+                        <position x="-9.22077" y="22.7771" z="0.316051" />+                        <normal x="-0.241317" y="0.957044" z="0.160729" />+                        <texcoord u="2.51049" v="-1.19392" />+                    </vertex>+                    <vertex>+                        <position x="-2.12209" y="13.5824" z="11.1732" />+                        <normal x="-0.550021" y="0.582128" z="0.598835" />+                        <texcoord u="3.04499" v="-1.39649" />+                    </vertex>+                    <vertex>+                        <position x="-2.3221" y="13.2262" z="11.2615" />+                        <normal x="-0.556079" y="0.511791" z="0.654864" />+                        <texcoord u="3.05774" v="-1.38499" />+                    </vertex>+                    <vertex>+                        <position x="-0.99529" y="13.1088" z="12.0112" />+                        <normal x="-0.267663" y="0.254246" z="0.929363" />+                        <texcoord u="3.08959" v="-1.45114" />+                    </vertex>+                    <vertex>+                        <position x="-2.70859" y="10.7407" z="8.89365" />+                        <normal x="-0.825161" y="-0.298319" z="0.479703" />+                        <texcoord u="3.04313" v="-1.33459" />+                    </vertex>+                    <vertex>+                        <position x="-0.82358" y="10.2302" z="10.7474" />+                        <normal x="-0.42085" y="0.308912" z="0.852912" />+                        <texcoord u="3.14389" v="-1.45066" />+                    </vertex>+                    <vertex>+                        <position x="-0.62184" y="10.3815" z="10.8343" />+                        <normal x="-0.602984" y="-0.312144" z="0.73415" />+                        <texcoord u="3.14158" v="-1.46318" />+                    </vertex>+                    <vertex>+                        <position x="-0.91174" y="11.5134" z="11.5956" />+                        <normal x="-0.64627" y="-0.575677" z="0.50093" />+                        <texcoord u="3.12712" v="-1.45069" />+                    </vertex>+                    <vertex>+                        <position x="-10.9023" y="16.506" z="-0.424549" />+                        <normal x="-0.628656" y="0.172363" z="0.758342" />+                        <texcoord u="2.48191" v="-1.03556" />+                    </vertex>+                    <vertex>+                        <position x="-12.1021" y="16.6207" z="-1.73205" />+                        <normal x="-0.657359" y="-0.646813" z="0.386667" />+                        <texcoord u="2.4285" v="-1.00042" />+                    </vertex>+                    <vertex>+                        <position x="-6.11749" y="12.7687" z="6.25965" />+                        <normal x="-0.493522" y="0.0753349" z="0.866464" />+                        <texcoord u="2.84199" v="-1.16578" />+                    </vertex>+                    <vertex>+                        <position x="-13.2397" y="21.3125" z="-1.00705" />+                        <normal x="-0.850248" y="0.476825" z="0.222971" />+                        <texcoord u="2.46637" v="-1.0579" />+                    </vertex>+                    <vertex>+                        <position x="-12.7485" y="21.66" z="-0.0672474" />+                        <normal x="-0.771421" y="0.50802" z="0.383178" />+                        <texcoord u="2.49777" v="-1.07667" />+                    </vertex>+                    <vertex>+                        <position x="-13.4595" y="16.0058" z="-7.09185" />+                        <normal x="-0.955049" y="-0.130148" z="0.26635" />+                        <texcoord u="2.21807" v="-0.964921" />+                    </vertex>+                    <vertex>+                        <position x="-12.9986" y="17.7919" z="-5.16845" />+                        <normal x="-0.990554" y="-0.0331348" z="0.133057" />+                        <texcoord u="2.3041" v="-1.0073" />+                    </vertex>+                    <vertex>+                        <position x="-13.0225" y="17.835" z="-5.03605" />+                        <normal x="-0.915562" y="-0.129731" z="-0.380679" />+                        <texcoord u="2.30936" v="-1.00702" />+                    </vertex>+                    <vertex>+                        <position x="-12.102" y="16.1232" z="-2.90065" />+                        <normal x="-0.921382" y="-0.363057" z="0.13873" />+                        <texcoord u="2.37808" v="-0.991313" />+                    </vertex>+                    <vertex>+                        <position x="-12.1322" y="16.0644" z="-3.88795" />+                        <normal x="-0.986401" y="-0.123984" z="0.10789" />+                        <texcoord u="2.33717" v="-0.991894" />+                    </vertex>+                    <vertex>+                        <position x="-3.28767" y="12.7197" z="7.37505" />+                        <normal x="-0.924903" y="0.237849" z="0.296617" />+                        <texcoord u="2.91111" v="-1.31673" />+                    </vertex>+                    <vertex>+                        <position x="-8.9355" y="23.0065" z="0.132452" />+                        <normal x="-0.558739" y="0.761812" z="0.327802" />+                        <texcoord u="2.50437" v="-1.2052" />+                    </vertex>+                    <vertex>+                        <position x="-1.50806" y="15.6259" z="9.09525" />+                        <normal x="-0.115591" y="-0.405298" z="0.906847" />+                        <texcoord u="2.91847" v="-1.43061" />+                    </vertex>+                    <vertex>+                        <position x="-2.84279" y="15.1517" z="8.38885" />+                        <normal x="-0.389961" y="-0.637288" z="0.664677" />+                        <texcoord u="2.8987" v="-1.36489" />+                    </vertex>+                    <vertex>+                        <position x="-0.80145" y="16.691" z="9.31315" />+                        <normal x="0.093236" y="-0.0922916" z="0.991357" />+                        <texcoord u="2.90476" v="-1.46517" />+                    </vertex>+                    <vertex>+                        <position x="-0.40759" y="17.8644" z="9.23695" />+                        <normal x="0.18715" y="0.173108" z="0.966958" />+                        <texcoord u="2.87969" v="-1.48325" />+                    </vertex>+                    <vertex>+                        <position x="-13.6794" y="21.0302" z="-3.27455" />+                        <normal x="-0.779415" y="0.57828" z="-0.241047" />+                        <texcoord u="2.39079" v="-1.04377" />+                    </vertex>+                    <vertex>+                        <position x="-11.1533" y="21.6494" z="1.85955" />+                        <normal x="-0.624009" y="0.544192" z="0.560774" />+                        <texcoord u="2.56299" v="-1.12219" />+                    </vertex>+                    <vertex>+                        <position x="-12.4513" y="22.3944" z="-1.27635" />+                        <normal x="-0.473436" y="0.876499" z="0.0872213" />+                        <texcoord u="2.45864" v="-1.09654" />+                    </vertex>+                    <vertex>+                        <position x="-9.98187" y="-7.61415" z="-22.1036" />+                        <normal x="-0.228678" y="0.0510174" z="-0.972164" />+                        <texcoord u="1.14016" v="-0.885902" />+                    </vertex>+                    <vertex>+                        <position x="-10.7863" y="-13.6335" z="-21.1816" />+                        <normal x="-0.149017" y="-0.390059" z="-0.908652" />+                        <texcoord u="1.01683" v="-0.744725" />+                    </vertex>+                    <vertex>+                        <position x="-4.88243" y="-18.0563" z="18.3177" />+                        <normal x="-0.518564" y="-0.370694" z="0.770505" />+                        <texcoord u="4.29303" v="-1.02208" />+                    </vertex>+                    <vertex>+                        <position x="-3.52375" y="-16.1306" z="20.7573" />+                        <normal x="-0.777826" y="0.0610273" z="0.62551" />+                        <texcoord u="4.24527" v="-1.20372" />+                    </vertex>+                    <vertex>+                        <position x="-4.64885" y="-16.0982" z="18.7384" />+                        <normal x="-0.403583" y="0.0388744" z="0.914117" />+                        <texcoord u="4.25003" v="-1.06583" />+                    </vertex>+                    <vertex>+                        <position x="-3.57569" y="-18.847" z="19.9333" />+                        <normal x="-0.691791" y="-0.329069" z="0.642759" />+                        <texcoord u="4.31742" v="-1.17399" />+                    </vertex>+                    <vertex>+                        <position x="-1.54294" y="-16.2051" z="22.1269" />+                        <normal x="-0.412238" y="0.0069346" z="0.91105" />+                        <texcoord u="4.24786" v="-1.37812" />+                    </vertex>+                    <vertex>+                        <position x="-16.8688" y="-21.4468" z="10.3218" />+                        <normal x="-0.711408" y="-0.619993" z="0.33092" />+                        <texcoord u="3.49544" v="0.126848" />+                    </vertex>+                    <vertex>+                        <position x="-15.8391" y="-19.9457" z="14.1786" />+                        <normal x="-0.772396" y="-0.452259" z="0.445944" />+                        <texcoord u="3.73367" v="-0.121846" />+                    </vertex>+                    <vertex>+                        <position x="-26.68" y="-12.5345" z="-10.706" />+                        <normal x="-0.872928" y="0.187189" z="-0.450507" />+                        <texcoord u="1.91263" v="-0.036257" />+                    </vertex>+                    <vertex>+                        <position x="-26.4804" y="-10.4161" z="-6.92975" />+                        <normal x="-0.511005" y="0.847612" z="0.142923" />+                        <texcoord u="2.11028" v="-0.0107911" />+                    </vertex>+                    <vertex>+                        <position x="-28.3956" y="-15.1668" z="-0.0233459" />+                        <normal x="-0.972269" y="0.0319763" z="0.231668" />+                        <texcoord u="2.49865" v="0.140386" />+                    </vertex>+                    <vertex>+                        <position x="-26.9146" y="-13.6178" z="3.51295" />+                        <normal x="-0.884946" y="-0.0245376" z="0.465047" />+                        <texcoord u="2.70967" v="0.106421" />+                    </vertex>+                    <vertex>+                        <position x="-18.4092" y="-4.21925" z="5.39265" />+                        <normal x="-0.399279" y="0.907579" z="-0.129913" />+                        <texcoord u="2.89983" v="-0.13507" />+                    </vertex>+                    <vertex>+                        <position x="-14.4907" y="-2.58945" z="11.1876" />+                        <normal x="-0.720486" y="0.624172" z="0.302173" />+                        <texcoord u="3.33222" v="-0.422061" />+                    </vertex>+                    <vertex>+                        <position x="-19.8194" y="-6.87735" z="-2.32145" />+                        <normal x="-0.93964" y="0.251971" z="0.23149" />+                        <texcoord u="2.32386" v="0.00383377" />+                    </vertex>+                    <vertex>+                        <position x="-14.2457" y="12.7796" z="-9.89725" />+                        <normal x="-0.869909" y="0.130524" z="0.475629" />+                        <texcoord u="2.07509" v="-0.8884" />+                    </vertex>+                    <vertex>+                        <position x="-13.9263" y="16.1488" z="-9.68855" />+                        <normal x="-0.824882" y="-0.451451" z="0.340238" />+                        <texcoord u="2.13187" v="-0.970848" />+                    </vertex>+                    <vertex>+                        <position x="-14.3962" y="16.8471" z="-9.14535" />+                        <normal x="-0.913127" y="-0.243089" z="0.327271" />+                        <texcoord u="2.16225" v="-0.968322" />+                    </vertex>+                    <vertex>+                        <position x="-15.3877" y="17.0814" z="-10.8003" />+                        <normal x="-0.794538" y="-0.204651" z="0.571689" />+                        <texcoord u="2.11907" v="-0.957265" />+                    </vertex>+                    <vertex>+                        <position x="-15.3239" y="16.3689" z="-11.3384" />+                        <normal x="-0.735169" y="-0.424866" z="0.528219" />+                        <texcoord u="2.09234" v="-0.94904" />+                    </vertex>+                    <vertex>+                        <position x="-18.0081" y="17.173" z="-21.7855" />+                        <normal x="0.197952" y="-0.227423" z="-0.953464" />+                        <texcoord u="1.87142" v="-0.98041" />+                    </vertex>+                    <vertex>+                        <position x="-18.7701" y="15.0706" z="-21.0135" />+                        <normal x="-0.108775" y="-0.39192" z="-0.913546" />+                        <texcoord u="1.85925" v="-0.927656" />+                    </vertex>+                    <vertex>+                        <position x="-20.123" y="20.1021" z="-23.1136" />+                        <normal x="0.267572" y="-0.1824" z="-0.946116" />+                        <texcoord u="1.90567" v="-0.982567" />+                    </vertex>+                    <vertex>+                        <position x="-13.2041" y="10.4639" z="-19.7867" />+                        <normal x="0.16754" y="-0.0281089" z="-0.985464" />+                        <texcoord u="1.73456" v="-0.989204" />+                    </vertex>+                    <vertex>+                        <position x="-21.5084" y="25.2323" z="-22.9235" />+                        <normal x="0.56871" y="0.757509" z="-0.320544" />+                        <texcoord u="1.98095" v="-1.01299" />+                    </vertex>+                    <vertex>+                        <position x="-16.9853" y="14.8708" z="-13.9128" />+                        <normal x="-0.948083" y="0.283775" z="0.143564" />+                        <texcoord u="2.00811" v="-0.899485" />+                    </vertex>+                    <vertex>+                        <position x="-16.6404" y="15.0457" z="-14.5041" />+                        <normal x="-0.826617" y="0.399201" z="-0.396665" />+                        <texcoord u="1.99149" v="-0.916593" />+                    </vertex>+                    <vertex>+                        <position x="-17.0449" y="12.7211" z="-16.6983" />+                        <normal x="-0.470097" y="0.254156" z="0.84523" />+                        <texcoord u="1.89801" v="-0.885509" />+                    </vertex>+                    <vertex>+                        <position x="-16.293" y="13.9003" z="-16.3343" />+                        <normal x="-0.94405" y="0.222193" z="0.243722" />+                        <texcoord u="1.92051" v="-0.921977" />+                    </vertex>+                    <vertex>+                        <position x="-16.8627" y="14.1637" z="-17.1034" />+                        <normal x="-0.486541" y="0.206628" z="0.848871" />+                        <texcoord u="1.91181" v="-0.920085" />+                    </vertex>+                    <vertex>+                        <position x="-16.4205" y="16.5241" z="-17.1293" />+                        <normal x="-0.649897" y="-0.0183159" z="0.759802" />+                        <texcoord u="1.94708" v="-0.96996" />+                    </vertex>+                    <vertex>+                        <position x="-15.9076" y="16.3279" z="-16.288" />+                        <normal x="-0.975701" y="-0.101505" z="0.194174" />+                        <texcoord u="1.95993" v="-0.972544" />+                    </vertex>+                    <vertex>+                        <position x="-16.2661" y="16.8558" z="-16.8735" />+                        <normal x="-0.801149" y="-0.29725" z="0.519425" />+                        <texcoord u="1.95727" v="-0.97681" />+                    </vertex>+                    <vertex>+                        <position x="-15.8821" y="15.6853" z="-16.0213" />+                        <normal x="-0.957837" y="0.10278" z="0.2683" />+                        <texcoord u="1.95563" v="-0.960357" />+                    </vertex>+                    <vertex>+                        <position x="-17.1573" y="11.1084" z="-14.425" />+                        <normal x="-0.820101" y="-0.510394" z="-0.258714" />+                        <texcoord u="1.93121" v="-0.823469" />+                    </vertex>+                    <vertex>+                        <position x="-18.3389" y="19.8537" z="-13.8218" />+                        <normal x="-0.712536" y="0.0848989" z="0.69648" />+                        <texcoord u="2.08909" v="-0.954798" />+                    </vertex>+                    <vertex>+                        <position x="-16.6179" y="18.8598" z="-12.2457" />+                        <normal x="-0.624026" y="0.246436" z="0.741526" />+                        <texcoord u="2.10794" v="-0.967962" />+                    </vertex>+                    <vertex>+                        <position x="-19.8451" y="15.7192" z="-18.7235" />+                        <normal x="-0.484119" y="0.189" z="0.854346" />+                        <texcoord u="1.92762" v="-0.893339" />+                    </vertex>+                    <vertex>+                        <position x="-17.9646" y="8.54855" z="-18.9348" />+                        <normal x="-0.397119" y="-0.238287" z="-0.886293" />+                        <texcoord u="1.77591" v="-0.813011" />+                    </vertex>+                    <vertex>+                        <position x="-15.3304" y="21.5382" z="-14.4561" />+                        <normal x="0.209604" y="0.918427" z="0.335498" />+                        <texcoord u="2.0772" v="-1.05163" />+                    </vertex>+                    <vertex>+                        <position x="-15.6473" y="20.0374" z="-12.417" />+                        <normal x="-0.33432" y="0.677577" z="0.655073" />+                        <texcoord u="2.11226" v="-1.01139" />+                    </vertex>+                    <vertex>+                        <position x="-13.9364" y="20.8209" z="-12.8357" />+                        <normal x="0.12755" y="0.941783" z="0.311089" />+                        <texcoord u="2.10197" v="-1.06784" />+                    </vertex>+                    <vertex>+                        <position x="-17.5074" y="21.0125" z="-13.9733" />+                        <normal x="-0.30611" y="0.644727" z="0.700445" />+                        <texcoord u="2.09426" v="-0.991642" />+                    </vertex>+                    <vertex>+                        <position x="-12.8457" y="20.2706" z="-11.6289" />+                        <normal x="-0.0511668" y="0.978225" z="0.201141" />+                        <texcoord u="2.12227" v="-1.08274" />+                    </vertex>+                    <vertex>+                        <position x="-13.4396" y="19.0889" z="-9.46425" />+                        <normal x="-0.718822" y="0.665459" z="0.201146" />+                        <texcoord u="2.17427" v="-1.03746" />+                    </vertex>+                    <vertex>+                        <position x="-12.4516" y="20.2323" z="-10.5964" />+                        <normal x="-0.436771" y="0.896947" z="-0.0686884" />+                        <texcoord u="2.14947" v="-1.0881" />+                    </vertex>+                    <vertex>+                        <position x="-14.2695" y="19.3051" z="-10.8262" />+                        <normal x="-0.437775" y="0.718539" z="0.54042" />+                        <texcoord u="2.14024" v="-1.02581" />+                    </vertex>+                    <vertex>+                        <position x="-20.3305" y="-0.952747" z="-8.39695" />+                        <normal x="-0.903631" y="0.191877" z="0.382927" />+                        <texcoord u="2.00967" v="-0.312827" />+                    </vertex>+                    <vertex>+                        <position x="-16.3912" y="4.35655" z="-0.852047" />+                        <normal x="-0.882424" y="0.322015" z="0.342978" />+                        <texcoord u="2.44583" v="-0.457867" />+                    </vertex>+                    <vertex>+                        <position x="-15.1142" y="6.81155" z="-0.898647" />+                        <normal x="-0.774885" y="0.525032" z="0.351986" />+                        <texcoord u="2.44578" v="-0.588026" />+                    </vertex>+                    <vertex>+                        <position x="-13.6974" y="17.3194" z="-7.15685" />+                        <normal x="-0.951846" y="-0.0340401" z="0.30468" />+                        <texcoord u="2.23151" v="-0.986149" />+                    </vertex>+                    <vertex>+                        <position x="-12.0091" y="14.0542" z="-3.37905" />+                        <normal x="-0.946951" y="0.0952032" z="0.306952" />+                        <texcoord u="2.34353" v="-0.943896" />+                    </vertex>+                    <vertex>+                        <position x="-6.55753" y="13.315" z="5.81705" />+                        <normal x="-0.531464" y="0.478167" z="0.699215" />+                        <texcoord u="2.80746" v="-1.1534" />+                    </vertex>+                    <vertex>+                        <position x="-8.04471" y="16.7872" z="2.40995" />+                        <normal x="-0.389534" y="-0.888349" z="0.243102" />+                        <texcoord u="2.60593" v="-1.1464" />+                    </vertex>+                    <vertex>+                        <position x="-13.3551" y="17.3386" z="-4.11545" />+                        <normal x="-0.845173" y="-0.463316" z="-0.266497" />+                        <texcoord u="2.34102" v="-0.984096" />+                    </vertex>+                    <vertex>+                        <position x="-1.81328" y="14.1795" z="10.7433" />+                        <normal x="-0.525091" y="0.711364" z="0.467163" />+                        <texcoord u="3.01409" v="-1.41323" />+                    </vertex>+                    <vertex>+                        <position x="-0.45492" y="11.4373" z="11.7935" />+                        <normal x="-0.23521" y="-0.522398" z="0.81962" />+                        <texcoord u="3.13702" v="-1.47543" />+                    </vertex>+                    <vertex>+                        <position x="-1.59831" y="12.4377" z="11.9009" />+                        <normal x="-0.623558" y="-0.497589" z="0.602977" />+                        <texcoord u="3.10557" v="-1.41867" />+                    </vertex>+                    <vertex>+                        <position x="-0.79798" y="12.3389" z="12.115" />+                        <normal x="-0.202251" y="-0.161002" z="0.966009" />+                        <texcoord u="3.11724" v="-1.45934" />+                    </vertex>+                    <vertex>+                        <position x="-1.95372" y="12.8142" z="11.7785" />+                        <normal x="-0.587669" y="-0.315079" z="0.745232" />+                        <texcoord u="3.08884" v="-1.40233" />+                    </vertex>+                    <vertex>+                        <position x="-2.52212" y="12.8702" z="11.3497" />+                        <normal x="-0.605395" y="-0.321329" z="0.728179" />+                        <texcoord u="3.07071" v="-1.37318" />+                    </vertex>+                    <vertex>+                        <position x="-3.29581" y="11.4204" z="9.26765" />+                        <normal x="-0.80002" y="-0.523061" z="0.293897" />+                        <texcoord u="3.0331" v="-1.31042" />+                    </vertex>+                    <vertex>+                        <position x="-3.56234" y="11.6281" z="8.62945" />+                        <normal x="-0.967473" y="-0.223699" z="0.118133" />+                        <texcoord u="2.9976" v="-1.29459" />+                    </vertex>+                    <vertex>+                        <position x="-3.40317" y="12.3431" z="9.52175" />+                        <normal x="-0.968658" y="0.156665" z="0.192763" />+                        <texcoord u="3.01432" v="-1.31618" />+                    </vertex>+                    <vertex>+                        <position x="-3.47203" y="11.5032" z="7.12475" />+                        <normal x="-0.992412" y="0.0342952" z="0.118077" />+                        <texcoord u="2.93158" v="-1.28968" />+                    </vertex>+                    <vertex>+                        <position x="-3.63455" y="12.1114" z="7.86875" />+                        <normal x="-0.989422" y="0.139231" z="-0.0407357" />+                        <texcoord u="2.94875" v="-1.29273" />+                    </vertex>+                    <vertex>+                        <position x="-2.54503" y="14.0116" z="9.03555" />+                        <normal x="-0.705776" y="0.708259" z="-0.0157709" />+                        <texcoord u="2.95213" v="-1.37265" />+                    </vertex>+                    <vertex>+                        <position x="-2.808" y="13.6077" z="9.86025" />+                        <normal x="-0.761694" y="0.616702" z="0.19875" />+                        <texcoord u="2.99417" v="-1.35927" />+                    </vertex>+                    <vertex>+                        <position x="-1.59559" y="14.7113" z="10.0227" />+                        <normal x="-0.527177" y="0.81754" z="0.231761" />+                        <texcoord u="2.97459" v="-1.42445" />+                    </vertex>+                    <vertex>+                        <position x="-3.03714" y="13.3571" z="8.20525" />+                        <normal x="-0.822836" y="0.565158" z="-0.0594772" />+                        <texcoord u="2.93278" v="-1.33981" />+                    </vertex>+                    <vertex>+                        <position x="-2.7112" y="13.6427" z="7.67205" />+                        <normal x="-0.777577" y="0.540901" z="0.320626" />+                        <texcoord u="2.90351" v="-1.3574" />+                    </vertex>+                    <vertex>+                        <position x="-11.0286" y="20.7785" z="-11.9663" />+                        <normal x="-0.561959" y="0.784307" z="-0.262802" />+                        <texcoord u="2.11122" v="-1.14169" />+                    </vertex>+                    <vertex>+                        <position x="-7.72986" y="7.62625" z="8.18445" />+                        <normal x="-0.516878" y="0.641617" z="0.566714" />+                        <texcoord u="3.06429" v="-0.96705" />+                    </vertex>+                    <vertex>+                        <position x="-19.3145" y="2.15935" z="-7.73715" />+                        <normal x="-0.921421" y="0.349079" z="0.170666" />+                        <texcoord u="2.06578" v="-0.416031" />+                    </vertex>+                    <vertex>+                        <position x="-7.22425" y="-10.481" z="23.4258" />+                        <normal x="-0.432019" y="-0.0799189" z="0.898316" />+                        <texcoord u="4.00173" v="-1.03688" />+                    </vertex>+                    <vertex>+                        <position x="-6.93504" y="-14.0773" z="20.1238" />+                        <normal x="0.193084" y="-0.31394" z="0.929602" />+                        <texcoord u="4.12141" v="-0.941231" />+                    </vertex>+                    <vertex>+                        <position x="-19.8935" y="-22.151" z="0.643452" />+                        <normal x="-0.345651" y="-0.884006" z="0.314736" />+                        <texcoord u="2.56199" v="0.416478" />+                    </vertex>+                    <vertex>+                        <position x="-21.2588" y="-4.71615" z="-9.15185" />+                        <normal x="-0.627315" y="0.0229275" z="0.778428" />+                        <texcoord u="1.94248" v="-0.204946" />+                    </vertex>+                    <vertex>+                        <position x="-21.2851" y="-4.58635" z="-9.18225" />+                        <normal x="-0.441356" y="0.0136278" z="0.897229" />+                        <texcoord u="1.9433" v="-0.209524" />+                    </vertex>+                    <vertex>+                        <position x="-21.1362" y="-4.58585" z="-9.05075" />+                        <normal x="-0.835541" y="0.0979136" z="0.540633" />+                        <texcoord u="1.94628" v="-0.206905" />+                    </vertex>+                    <vertex>+                        <position x="-21.1881" y="-4.67515" z="-9.09515" />+                        <normal x="-0.673715" y="0.0389951" z="0.737962" />+                        <texcoord u="1.94414" v="-0.20507" />+                    </vertex>+                    <vertex>+                        <position x="2.48486" y="-13.3344" z="21.4919" />+                        <normal x="0.158782" y="-0.803306" z="0.57401" />+                        <texcoord u="4.17836" v="-1.69405" />+                    </vertex>+                    <vertex>+                        <position x="1.66379" y="-0.0750504" z="15.4635" />+                        <normal x="0.150025" y="0.0612873" z="0.986781" />+                        <texcoord u="3.74664" v="-1.63413" />+                    </vertex>+                    <vertex>+                        <position x="0.68885" y="-0.251652" z="15.5216" />+                        <normal x="0.0661188" y="0.131796" z="0.989069" />+                        <texcoord u="3.76165" v="-1.55599" />+                    </vertex>+                    <vertex>+                        <position x="0.9216" y="-0.746651" z="15.4665" />+                        <normal x="0.135359" y="-0.0658147" z="0.988608" />+                        <texcoord u="3.78604" v="-1.57663" />+                    </vertex>+                    <vertex>+                        <position x="1.52569" y="0.342152" z="15.4198" />+                        <normal x="0.0500872" y="0.207155" z="0.977025" />+                        <texcoord u="3.72644" v="-1.62135" />+                    </vertex>+                    <vertex>+                        <position x="24.6179" y="-15.673" z="-11.7075" />+                        <normal x="0.733079" y="-0.198628" z="-0.650494" />+                        <texcoord u="1.78482" v="-3.00383" />+                    </vertex>+                    <vertex>+                        <position x="26.6024" y="-19.4152" z="-7.64725" />+                        <normal x="0.767317" y="-0.477214" z="-0.428358" />+                        <texcoord u="2.02018" v="-3.16916" />+                    </vertex>+                    <vertex>+                        <position x="10.2784" y="-1.31635" z="12.5385" />+                        <normal x="-0.0731165" y="0.928749" z="-0.363427" />+                        <texcoord u="3.51656" v="-2.33333" />+                    </vertex>+                    <vertex>+                        <position x="14.2103" y="-2.71385" z="8.97825" />+                        <normal x="-0.12125" y="0.870015" z="-0.477884" />+                        <texcoord u="3.23571" v="-2.66444" />+                    </vertex>+                    <vertex>+                        <position x="27.405" y="-11.8161" z="-5.01085" />+                        <normal x="0.902429" y="0.430242" z="-0.0226777" />+                        <texcoord u="2.21776" v="-3.04362" />+                    </vertex>+                    <vertex>+                        <position x="26.8856" y="-10.625" z="-2.55795" />+                        <normal x="0.755944" y="0.648073" z="-0.0924686" />+                        <texcoord u="2.35336" v="-3.04131" />+                    </vertex>+                    <vertex>+                        <position x="26.6177" y="-10.7887" z="-4.82845" />+                        <normal x="0.557201" y="0.829696" z="-0.0336331" />+                        <texcoord u="2.22299" v="-3.02706" />+                    </vertex>+                    <vertex>+                        <position x="11.1651" y="9.89465" z="1.50725" />+                        <normal x="0.650886" y="0.593538" z="0.473351" />+                        <texcoord u="2.59051" v="-2.17043" />+                    </vertex>+                    <vertex>+                        <position x="8.89352" y="9.79525" z="4.13455" />+                        <normal x="0.533519" y="0.634702" z="0.559027" />+                        <texcoord u="2.76369" v="-2.0672" />+                    </vertex>+                    <vertex>+                        <position x="17.5552" y="13.2732" z="-14.476" />+                        <normal x="0.93515" y="0.0964835" z="-0.34086" />+                        <texcoord u="1.9721" v="-2.14019" />+                    </vertex>+                    <vertex>+                        <position x="16.5476" y="12.7013" z="-15.8543" />+                        <normal x="0.929479" y="0.0399159" z="-0.36671" />+                        <texcoord u="1.91384" v="-2.11179" />+                    </vertex>+                    <vertex>+                        <position x="16.5585" y="11.5768" z="-15.6939" />+                        <normal x="0.966654" y="-0.107911" z="-0.232241" />+                        <texcoord u="1.89718" v="-2.13603" />+                    </vertex>+                    <vertex>+                        <position x="16.6195" y="11.4273" z="-15.9835" />+                        <normal x="0.859728" y="0.150664" z="0.488024" />+                        <texcoord u="1.88733" v="-2.13705" />+                    </vertex>+                    <vertex>+                        <position x="18.8151" y="17.5912" z="-18.3803" />+                        <normal x="0.629015" y="0.131591" z="0.766175" />+                        <texcoord u="1.9543" v="-2.05861" />+                    </vertex>+                    <vertex>+                        <position x="17.6697" y="17.3621" z="-17.0987" />+                        <normal x="0.260442" y="-0.220758" z="0.939913" />+                        <texcoord u="1.97098" v="-2.04669" />+                    </vertex>+                    <vertex>+                        <position x="18.0362" y="16.8079" z="-17.1867" />+                        <normal x="0.232994" y="0.0156352" z="0.972353" />+                        <texcoord u="1.9635" v="-2.06302" />+                    </vertex>+                    <vertex>+                        <position x="18.1061" y="17.8282" z="-17.3689" />+                        <normal x="0.713147" y="0.097848" z="0.694153" />+                        <texcoord u="1.975" v="-2.04729" />+                    </vertex>+                    <vertex>+                        <position x="18.2814" y="17.0919" z="-17.4153" />+                        <normal x="0.744363" y="0.152467" z="0.650136" />+                        <texcoord u="1.96444" v="-2.06219" />+                    </vertex>+                    <vertex>+                        <position x="16.1028" y="9.47515" z="-12.4633" />+                        <normal x="0.973372" y="-0.131667" z="0.187645" />+                        <texcoord u="1.94704" v="-2.21443" />+                    </vertex>+                    <vertex>+                        <position x="6.1485" y="16.1399" z="4.58445" />+                        <normal x="0.585112" y="-0.777476" z="0.230597" />+                        <texcoord u="2.71101" v="-1.783" />+                    </vertex>+                    <vertex>+                        <position x="9.9232" y="10.8668" z="2.10215" />+                        <normal x="0.715973" y="0.34101" z="0.609176" />+                        <texcoord u="2.62385" v="-2.08464" />+                    </vertex>+                    <vertex>+                        <position x="9.92687" y="11.0324" z="2.12335" />+                        <normal x="0.769658" y="-0.328397" z="0.547524" />+                        <texcoord u="2.62381" v="-2.07883" />+                    </vertex>+                    <vertex>+                        <position x="7.90212" y="10.8591" z="4.11645" />+                        <normal x="0.624273" y="-0.179661" z="0.760266" />+                        <texcoord u="2.75262" v="-1.98494" />+                    </vertex>+                    <vertex>+                        <position x="8.01583" y="10.667" z="4.18005" />+                        <normal x="0.564282" y="0.435734" z="0.701229" />+                        <texcoord u="2.75869" v="-1.99607" />+                    </vertex>+                    <vertex>+                        <position x="15.5459" y="8.43975" z="-19.8187" />+                        <normal x="0.185898" y="-0.0844843" z="-0.97893" />+                        <texcoord u="1.71891" v="-2.11269" />+                    </vertex>+                    <vertex>+                        <position x="19.3146" y="7.71225" z="-17.6134" />+                        <normal x="0.934779" y="-0.092351" z="-0.343015" />+                        <texcoord u="1.81157" v="-2.25493" />+                    </vertex>+                    <vertex>+                        <position x="20.8011" y="12.5832" z="-19.0964" />+                        <normal x="0.777102" y="-0.397023" z="-0.48835" />+                        <texcoord u="1.88026" v="-2.17507" />+                    </vertex>+                    <vertex>+                        <position x="10.8576" y="19.5745" z="-16.038" />+                        <normal x="-0.12195" y="0.932886" z="-0.338897" />+                        <texcoord u="1.98595" v="-1.84801" />+                    </vertex>+                    <vertex>+                        <position x="10.6557" y="19.6199" z="-15.5558" />+                        <normal x="0.453656" y="0.882626" z="-0.123153" />+                        <texcoord u="1.99742" v="-1.84427" />+                    </vertex>+                    <vertex>+                        <position x="10.7239" y="19.5663" z="-15.5581" />+                        <normal x="0.296911" y="0.947703" z="-0.117061" />+                        <texcoord u="1.99682" v="-1.84683" />+                    </vertex>+                    <vertex>+                        <position x="10.7642" y="19.5747" z="-15.5763" />+                        <normal x="-0.229476" y="0.972085" z="-0.0488942" />+                        <texcoord u="1.99673" v="-1.84779" />+                    </vertex>+                    <vertex>+                        <position x="17.2643" y="17.9811" z="-16.7329" />+                        <normal x="0.706379" y="-0.612336" z="0.355068" />+                        <texcoord u="1.98568" v="-2.03065" />+                    </vertex>+                    <vertex>+                        <position x="16.4909" y="10.5561" z="-15.1011" />+                        <normal x="0.90328" y="-0.428995" z="0.00699339" />+                        <texcoord u="1.89286" v="-2.16302" />+                    </vertex>+                    <vertex>+                        <position x="16.4798" y="10.1794" z="-15.3709" />+                        <normal x="0.774561" y="-0.0160311" z="0.632296" />+                        <texcoord u="1.87769" v="-2.16721" />+                    </vertex>+                    <vertex>+                        <position x="15.5058" y="8.60535" z="-14.0044" />+                        <normal x="0.935138" y="0.316846" z="-0.158512" />+                        <texcoord u="1.87055" v="-2.19693" />+                    </vertex>+                    <vertex>+                        <position x="15.5064" y="8.69855" z="-14.3655" />+                        <normal x="0.867425" y="0.221808" z="0.445393" />+                        <texcoord u="1.86162" v="-2.18908" />+                    </vertex>+                    <vertex>+                        <position x="18.1786" y="14.5714" z="-16.9297" />+                        <normal x="0.0642891" y="0.153958" z="0.985984" />+                        <texcoord u="1.93581" v="-2.10581" />+                    </vertex>+                    <vertex>+                        <position x="18.5475" y="14.6483" z="-17.0605" />+                        <normal x="0.592362" y="0.201429" z="0.780086" />+                        <texcoord u="1.93742" v="-2.11161" />+                    </vertex>+                    <vertex>+                        <position x="16.1232" y="8.56635" z="-12.8442" />+                        <normal x="0.896369" y="0.403683" z="-0.183204" />+                        <texcoord u="1.91643" v="-2.23255" />+                    </vertex>+                    <vertex>+                        <position x="16.8167" y="16.1326" z="-13.6218" />+                        <normal x="0.958574" y="-0.152429" z="0.240627" />+                        <texcoord u="2.03407" v="-2.07521" />+                    </vertex>+                    <vertex>+                        <position x="23.4109" y="20.0698" z="-22.5011" />+                        <normal x="0.718825" y="-0.448143" z="-0.531468" />+                        <texcoord u="1.93908" v="-2.0836" />+                    </vertex>+                    <vertex>+                        <position x="25.3806" y="26.7838" z="-24.6791" />+                        <normal x="0.802465" y="0.213431" z="-0.557223" />+                        <texcoord u="1.98791" v="-2.02665" />+                    </vertex>+                    <vertex>+                        <position x="23.3086" y="19.967" z="-21.7917" />+                        <normal x="0.869663" y="-0.188044" z="0.456427" />+                        <texcoord u="1.9502" v="-2.08807" />+                    </vertex>+                    <vertex>+                        <position x="15.2939" y="9.44355" z="-6.59735" />+                        <normal x="0.835247" y="0.541618" z="0.0949345" />+                        <texcoord u="2.16746" v="-2.27089" />+                    </vertex>+                    <vertex>+                        <position x="13.4081" y="12.4029" z="-6.24905" />+                        <normal x="0.936199" y="0.330711" z="-0.118998" />+                        <texcoord u="2.20651" v="-2.12972" />+                    </vertex>+                    <vertex>+                        <position x="15.3006" y="9.26395" z="-7.09305" />+                        <normal x="0.807288" y="0.554451" z="-0.202167" />+                        <texcoord u="2.14239" v="-2.27141" />+                    </vertex>+                    <vertex>+                        <position x="13.5213" y="8.70815" z="-0.752348" />+                        <normal x="0.724676" y="0.570858" z="0.385962" />+                        <texcoord u="2.45582" v="-2.29401" />+                    </vertex>+                    <vertex>+                        <position x="12.1054" y="10.2069" z="-0.255848" />+                        <normal x="0.715153" y="0.539277" z="0.444676" />+                        <texcoord u="2.48536" v="-2.19248" />+                    </vertex>+                    <vertex>+                        <position x="13.0721" y="14.2071" z="-6.61215" />+                        <normal x="0.992597" y="-0.119021" z="-0.0241983" />+                        <texcoord u="2.2124" v="-2.06859" />+                    </vertex>+                    <vertex>+                        <position x="12.1451" y="20.7229" z="-4.55155" />+                        <normal x="0.783847" y="0.610493" z="-0.113495" />+                        <texcoord u="2.34383" v="-1.91672" />+                    </vertex>+                    <vertex>+                        <position x="12.847" y="19.9772" z="-7.41595" />+                        <normal x="0.809079" y="0.587482" z="0.0159878" />+                        <texcoord u="2.2459" v="-1.94019" />+                    </vertex>+                    <vertex>+                        <position x="2.98674" y="12.839" z="10.6196" />+                        <normal x="0.868391" y="0.305378" z="0.390694" />+                        <texcoord u="3.04376" v="-1.65293" />+                    </vertex>+                    <vertex>+                        <position x="4.08621" y="14.7806" z="6.42355" />+                        <normal x="0.651327" y="0.364332" z="0.665609" />+                        <texcoord u="2.81936" v="-1.70315" />+                    </vertex>+                    <vertex>+                        <position x="3.89298" y="14.9007" z="6.73075" />+                        <normal x="0.628451" y="-0.558386" z="0.54153" />+                        <texcoord u="2.8313" v="-1.69162" />+                    </vertex>+                    <vertex>+                        <position x="3.7445" y="14.685" z="6.81045" />+                        <normal x="0.555193" y="0.282136" z="0.782407" />+                        <texcoord u="2.83944" v="-1.68663" />+                    </vertex>+                    <vertex>+                        <position x="11.9252" y="14.3526" z="-1.78135" />+                        <normal x="0.990212" y="-0.0415061" z="0.133256" />+                        <texcoord u="2.41786" v="-2.04992" />+                    </vertex>+                    <vertex>+                        <position x="11.4047" y="13.684" z="0.258553" />+                        <normal x="0.905119" y="0.123336" z="0.406877" />+                        <texcoord u="2.51253" v="-2.05286" />+                    </vertex>+                    <vertex>+                        <position x="11.6867" y="13.1166" z="-0.454849" />+                        <normal x="0.971901" y="-0.0737314" z="0.223542" />+                        <texcoord u="2.47746" v="-2.07904" />+                    </vertex>+                    <vertex>+                        <position x="11.7552" y="14.8822" z="-0.835449" />+                        <normal x="0.927614" y="0.112607" z="0.356164" />+                        <texcoord u="2.46222" v="-2.03164" />+                    </vertex>+                    <vertex>+                        <position x="3.99935" y="13.8689" z="7.28325" />+                        <normal x="0.388403" y="0.26241" z="0.883337" />+                        <texcoord u="2.8765" v="-1.70674" />+                    </vertex>+                    <vertex>+                        <position x="11.4391" y="21.7494" z="-3.70105" />+                        <normal x="0.47191" y="0.825287" z="-0.310164" />+                        <texcoord u="2.3763" v="-1.88234" />+                    </vertex>+                    <vertex>+                        <position x="13.8775" y="18.0676" z="-3.32695" />+                        <normal x="0.912966" y="-0.402495" z="0.0670177" />+                        <texcoord u="2.37598" v="-2.01733" />+                    </vertex>+                    <vertex>+                        <position x="14.0906" y="18.75" z="-3.67195" />+                        <normal x="0.972828" y="-0.138225" z="-0.185742" />+                        <texcoord u="2.36749" v="-2.00847" />+                    </vertex>+                    <vertex>+                        <position x="11.8753" y="16.2901" z="-1.73635" />+                        <normal x="0.883613" y="-0.160788" z="0.439745" />+                        <texcoord u="2.4269" v="-1.99997" />+                    </vertex>+                    <vertex>+                        <position x="5.90785" y="11.1926" z="5.51395" />+                        <normal x="0.402915" y="-0.247989" z="0.881" />+                        <texcoord u="2.83955" v="-1.8638" />+                    </vertex>+                    <vertex>+                        <position x="5.87047" y="11.0376" z="5.51165" />+                        <normal x="0.523527" y="0.286305" z="0.802464" />+                        <texcoord u="2.84331" v="-1.86566" />+                    </vertex>+                    <vertex>+                        <position x="12.9599" y="19.5001" z="-4.83375" />+                        <normal x="0.710265" y="0.376697" z="-0.594663" />+                        <texcoord u="2.32843" v="-1.96001" />+                    </vertex>+                    <vertex>+                        <position x="12.9113" y="19.5371" z="-5.01415" />+                        <normal x="0.952726" y="0.302912" z="-0.0236037" />+                        <texcoord u="2.32234" v="-1.95747" />+                    </vertex>+                    <vertex>+                        <position x="12.2229" y="20.718" z="-4.37315" />+                        <normal x="0.552818" y="0.666785" z="-0.49979" />+                        <texcoord u="2.34995" v="-1.91939" />+                    </vertex>+                    <vertex>+                        <position x="2.20858" y="14.2774" z="7.79775" />+                        <normal x="0.568313" y="-0.156049" z="0.807879" />+                        <texcoord u="2.8953" v="-1.61196" />+                    </vertex>+                    <vertex>+                        <position x="2.18566" y="14.192" z="7.84445" />+                        <normal x="0.729922" y="0.586488" z="0.351064" />+                        <texcoord u="2.89933" v="-1.61126" />+                    </vertex>+                    <vertex>+                        <position x="3.52407" y="11.8101" z="6.68335" />+                        <normal x="0.740289" y="0.160308" z="0.652897" />+                        <texcoord u="2.90062" v="-1.71124" />+                    </vertex>+                    <vertex>+                        <position x="13.0312" y="18.352" z="-0.787848" />+                        <normal x="0.825761" y="-0.36109" z="0.433282" />+                        <texcoord u="2.47031" v="-1.99114" />+                    </vertex>+                    <vertex>+                        <position x="13.3895" y="18.5855" z="-1.49875" />+                        <normal x="0.881692" y="-0.318329" z="0.348261" />+                        <texcoord u="2.44447" v="-1.99606" />+                    </vertex>+                    <vertex>+                        <position x="4.36835" y="15.6892" z="7.78745" />+                        <normal x="0.553314" y="-0.674836" z="0.488304" />+                        <texcoord u="2.8591" v="-1.70143" />+                    </vertex>+                    <vertex>+                        <position x="13.2052" y="17.5196" z="-2.27375" />+                        <normal x="0.803831" y="-0.530552" z="0.269018" />+                        <texcoord u="2.41183" v="-2.01205" />+                    </vertex>+                    <vertex>+                        <position x="21.2892" y="-1.72565" z="-11.865" />+                        <normal x="0.856497" y="0.477137" z="-0.19686" />+                        <texcoord u="1.86409" v="-2.64101" />+                    </vertex>+                    <vertex>+                        <position x="19.5553" y="-6.28675" z="-17.7242" />+                        <normal x="0.633033" y="0.183457" z="-0.752073" />+                        <texcoord u="1.53557" v="-2.56406" />+                    </vertex>+                    <vertex>+                        <position x="15.6963" y="-13.4121" z="-19.9795" />+                        <normal x="0.323801" y="-0.3855" z="-0.864027" />+                        <texcoord u="1.21313" v="-2.51099" />+                    </vertex>+                    <vertex>+                        <position x="17.2647" y="-21.9959" z="-9.14365" />+                        <normal x="0.159681" y="-0.902358" z="-0.400314" />+                        <texcoord u="1.60042" v="-3.19856" />+                    </vertex>+                    <vertex>+                        <position x="16.5895" y="-23.3425" z="-4.32985" />+                        <normal x="0.204116" y="-0.974613" z="-0.0920086" />+                        <texcoord u="1.99597" v="-3.43118" />+                    </vertex>+                    <vertex>+                        <position x="15.6823" y="-23.6042" z="0.781252" />+                        <normal x="0.327433" y="-0.944736" z="0.0161346" />+                        <texcoord u="2.60115" v="-3.53037" />+                    </vertex>+                    <vertex>+                        <position x="8.68575" y="-24.5094" z="9.93585" />+                        <normal x="-0.14674" y="-0.976131" z="0.160114" />+                        <texcoord u="4.08628" v="-2.8867" />+                    </vertex>+                    <vertex>+                        <position x="6.69169" y="-24.2451" z="5.22155" />+                        <normal x="-0.016584" y="-0.998633" z="0.0495679" />+                        <texcoord u="3.8731" v="-3.2597" />+                    </vertex>+                    <vertex>+                        <position x="9.55086" y="-24.8116" z="5.31415" />+                        <normal x="-0.0684624" y="-0.997588" z="-0.0114808" />+                        <texcoord u="3.55498" v="-3.39607" />+                    </vertex>+                    <vertex>+                        <position x="6.13805" y="-23.5124" z="9.04235" />+                        <normal x="-0.107812" y="-0.975895" z="0.189749" />+                        <texcoord u="4.28198" v="-2.70963" />+                    </vertex>+                    <vertex>+                        <position x="14.0662" y="-17.2172" z="18.0221" />+                        <normal x="0.56534" y="0.0515119" z="0.823248" />+                        <texcoord u="3.89032" v="-2.58513" />+                    </vertex>+                    <vertex>+                        <position x="11.6878" y="-17.9879" z="18.8323" />+                        <normal x="0.388754" y="-0.24394" z="0.888461" />+                        <texcoord u="4.02304" v="-2.44524" />+                    </vertex>+                    <vertex>+                        <position x="9.18271" y="-14.148" z="19.7833" />+                        <normal x="0.303335" y="-0.0787796" z="0.949622" />+                        <texcoord u="4.04918" v="-2.21907" />+                    </vertex>+                    <vertex>+                        <position x="9.36387" y="-16.4045" z="20.0778" />+                        <normal x="0.23454" y="-0.0867274" z="0.96823" />+                        <texcoord u="4.09253" v="-2.24272" />+                    </vertex>+                    <vertex>+                        <position x="21.0697" y="-1.33685" z="-10.7173" />+                        <normal x="0.904987" y="0.424679" z="0.0254364" />+                        <texcoord u="1.91289" v="-2.65422" />+                    </vertex>+                    <vertex>+                        <position x="21.2114" y="-3.88535" z="-9.16325" />+                        <normal x="0.527414" y="0.00500787" z="0.849594" />+                        <texcoord u="1.95171" v="-2.7692" />+                    </vertex>+                    <vertex>+                        <position x="26.68" y="-12.5345" z="-10.706" />+                        <normal x="0.863918" y="0.136113" z="-0.484891" />+                        <texcoord u="1.91264" v="-2.96374" />+                    </vertex>+                    <vertex>+                        <position x="15.8342" y="-14.5781" z="15.1362" />+                        <normal x="0.483562" y="-0.63104" z="0.606594" />+                        <texcoord u="3.68663" v="-2.74136" />+                    </vertex>+                    <vertex>+                        <position x="11.3752" y="-14.0984" z="18.8044" />+                        <normal x="0.44053" y="-0.466317" z="0.767125" />+                        <texcoord u="3.9579" v="-2.38192" />+                    </vertex>+                    <vertex>+                        <position x="21.2962" y="-8.55055" z="-8.77535" />+                        <normal x="0.995469" y="0.0669051" z="-0.0675675" />+                        <texcoord u="1.916" v="-2.91726" />+                    </vertex>+                    <vertex>+                        <position x="21.0979" y="-8.81315" z="-8.96975" />+                        <normal x="0.81677" y="-0.217126" z="-0.534549" />+                        <texcoord u="1.89666" v="-2.91913" />+                    </vertex>+                    <vertex>+                        <position x="21.044" y="-8.59075" z="-5.68685" />+                        <normal x="0.959984" y="0.25665" z="0.112082" />+                        <texcoord u="2.09597" v="-2.99511" />+                    </vertex>+                    <vertex>+                        <position x="13.8661" y="15.6436" z="-9.91495" />+                        <normal x="0.895694" y="-0.0501741" z="0.441831" />+                        <texcoord u="2.11662" v="-2.03616" />+                    </vertex>+                    <vertex>+                        <position x="13.5395" y="15.0095" z="-8.86635" />+                        <normal x="0.945334" y="-0.052739" z="0.321811" />+                        <texcoord u="2.14119" v="-2.04792" />+                    </vertex>+                    <vertex>+                        <position x="15.1906" y="15.8298" z="-11.5158" />+                        <normal x="0.765303" y="-0.272718" z="0.58304" />+                        <texcoord u="2.07802" v="-2.05664" />+                    </vertex>+                    <vertex>+                        <position x="11.2011" y="9.40545" z="-19.4446" />+                        <normal x="-0.0286939" y="-0.029554" z="-0.999151" />+                        <texcoord u="1.69054" v="-1.96629" />+                    </vertex>+                    <vertex>+                        <position x="13.3256" y="3.73565" z="-18.9894" />+                        <normal x="-0.010698" y="-0.177894" z="-0.983992" />+                        <texcoord u="1.5808" v="-2.14504" />+                    </vertex>+                    <vertex>+                        <position x="10.3569" y="16.0412" z="-19.2223" />+                        <normal x="-0.122633" y="0.378996" z="-0.917237" />+                        <texcoord u="1.84345" v="-1.85375" />+                    </vertex>+                    <vertex>+                        <position x="16.4624" y="15.737" z="-14.6451" />+                        <normal x="0.918027" y="-0.0193107" z="-0.396048" />+                        <texcoord u="1.99721" v="-2.06518" />+                    </vertex>+                    <vertex>+                        <position x="16.0675" y="9.43035" z="-12.8556" />+                        <normal x="0.937577" y="-0.144011" z="-0.31656" />+                        <texcoord u="1.93271" v="-2.20902" />+                    </vertex>+                    <vertex>+                        <position x="15.4145" y="9.48375" z="-14.0832" />+                        <normal x="0.956461" y="-0.285226" z="-0.0618773" />+                        <texcoord u="1.88572" v="-2.17235" />+                    </vertex>+                    <vertex>+                        <position x="15.6741" y="9.86215" z="-14.3925" />+                        <normal x="0.801026" y="-0.555746" z="0.222495" />+                        <texcoord u="1.88814" v="-2.16634" />+                    </vertex>+                    <vertex>+                        <position x="20.3577" y="20.3774" z="-16.5255" />+                        <normal x="0.819802" y="-0.522742" z="0.233805" />+                        <texcoord u="2.04353" v="-2.06232" />+                    </vertex>+                    <vertex>+                        <position x="19.8762" y="5.61885" z="-16.0798" />+                        <normal x="0.972337" y="0.165502" z="0.164833" />+                        <texcoord u="1.82209" v="-2.33796" />+                    </vertex>+                    <vertex>+                        <position x="19.3375" y="7.61975" z="-17.0937" />+                        <normal x="0.940831" y="0.194996" z="0.277153" />+                        <texcoord u="1.82342" v="-2.26539" />+                    </vertex>+                    <vertex>+                        <position x="19.7852" y="4.71225" z="-17.059" />+                        <normal x="0.962477" y="-0.0547313" z="-0.265788" />+                        <texcoord u="1.77648" v="-2.33914" />+                    </vertex>+                    <vertex>+                        <position x="9.46896" y="3.57825" z="10.8406" />+                        <normal x="0.567699" y="0.461433" z="0.681761" />+                        <texcoord u="3.2954" v="-2.19476" />+                    </vertex>+                    <vertex>+                        <position x="6.08262" y="21.7219" z="4.15515" />+                        <normal x="0.461185" y="0.593568" z="0.659535" />+                        <texcoord u="2.64676" v="-1.71484" />+                    </vertex>+                    <vertex>+                        <position x="4.88355" y="22.8208" z="4.61815" />+                        <normal x="0.442491" y="0.576532" z="0.686886" />+                        <texcoord u="2.65661" v="-1.66561" />+                    </vertex>+                    <vertex>+                        <position x="8.36223" y="24.8325" z="-3.05325" />+                        <normal x="0.578367" y="0.811966" z="0.0787518" />+                        <texcoord u="2.40605" v="-1.75731" />+                    </vertex>+                    <vertex>+                        <position x="10.858" y="11.2306" z="0.480553" />+                        <normal x="0.829618" y="0.282408" z="0.481644" />+                        <texcoord u="2.52706" v="-2.11137" />+                    </vertex>+                    <vertex>+                        <position x="5.93498" y="12.0806" z="6.31505" />+                        <normal x="0.38271" y="-0.427405" z="0.819059" />+                        <texcoord u="2.86085" v="-1.83913" />+                    </vertex>+                    <vertex>+                        <position x="4.30489" y="14.3544" z="6.69805" />+                        <normal x="0.505842" y="0.537797" z="0.674462" />+                        <texcoord u="2.83902" v="-1.71789" />+                    </vertex>+                    <vertex>+                        <position x="2.34158" y="18.8433" z="9.29675" />+                        <normal x="0.14908" y="0.496169" z="0.855331" />+                        <texcoord u="2.86319" v="-1.59148" />+                    </vertex>+                    <vertex>+                        <position x="3.37184" y="11.0979" z="7.75465" />+                        <normal x="0.947996" y="-0.170811" z="0.268564" />+                        <texcoord u="2.97516" v="-1.7066" />+                    </vertex>+                    <vertex>+                        <position x="4.30744" y="24.6048" z="-11.9677" />+                        <normal x="0.23459" y="0.87166" z="-0.430321" />+                        <texcoord u="2.14276" v="-1.62858" />+                    </vertex>+                    <vertex>+                        <position x="4.04607" y="21.725" z="-15.7682" />+                        <normal x="0.100488" y="0.66247" z="-0.742317" />+                        <texcoord u="2.00432" v="-1.62719" />+                    </vertex>+                    <vertex>+                        <position x="26.1783" y="-9.10355" z="0.756651" />+                        <normal x="0.647751" y="0.759298" z="-0.0623309" />+                        <texcoord u="2.54381" v="-3.01559" />+                    </vertex>+                    <vertex>+                        <position x="4.86401" y="8.10905" z="10.3277" />+                        <normal x="0.433956" y="0.636627" z="0.637486" />+                        <texcoord u="3.18621" v="-1.82318" />+                    </vertex>+                    <vertex>+                        <position x="2.75515" y="8.34835" z="11.1593" />+                        <normal x="0.364696" y="0.567538" z="0.738171" />+                        <texcoord u="3.22826" v="-1.6798" />+                    </vertex>+                    <vertex>+                        <position x="0.55141" y="10.1838" z="10.8592" />+                        <normal x="0.0479855" y="0.188721" z="0.980858" />+                        <texcoord u="3.15021" v="-1.53302" />+                    </vertex>+                    <vertex>+                        <position x="19.8238" y="1.29255" z="-9.18825" />+                        <normal x="0.894135" y="0.439549" z="0.0855533" />+                        <texcoord u="1.99412" v="-2.59144" />+                    </vertex>+                    <vertex>+                        <position x="22.8767" y="-15.9486" z="8.65575" />+                        <normal x="0.665487" y="-0.363293" z="0.652032" />+                        <texcoord u="3.10507" v="-3.09916" />+                    </vertex>+                    <vertex>+                        <position x="4.91942" y="-15.292" z="18.5521" />+                        <normal x="-0.278603" y="-0.0125656" z="0.960324" />+                        <texcoord u="4.22572" v="-1.9576" />+                    </vertex>+                    <vertex>+                        <position x="8.70044" y="0.70105" z="-20.9885" />+                        <normal x="0.194826" y="0.203336" z="-0.95953" />+                        <texcoord u="1.36796" v="-1.96927" />+                    </vertex>+                    <vertex>+                        <position x="17.6877" y="-15.9575" z="12.0416" />+                        <normal x="0.389572" y="-0.737807" z="0.551248" />+                        <texcoord u="3.4904" v="-2.95479" />+                    </vertex>+                    <vertex>+                        <position x="13.515" y="-22.1635" z="-9.13905" />+                        <normal x="-0.179355" y="-0.894775" z="-0.408913" />+                        <texcoord u="1.38245" v="-3.15265" />+                    </vertex>+                    <vertex>+                        <position x="20.8362" y="-4.37965" z="-8.28745" />+                        <normal x="0.934277" y="0.127231" z="0.333075" />+                        <texcoord u="1.9813" v="-2.80412" />+                    </vertex>+                    <vertex>+                        <position x="20.9035" y="-3.94245" z="-8.74075" />+                        <normal x="0.87972" y="0.114681" z="0.461455" />+                        <texcoord u="1.96489" v="-2.77972" />+                    </vertex>+                    <vertex>+                        <position x="3.46299" y="-2.15565" z="13.1283" />+                        <normal x="-0.140149" y="-0.897158" z="-0.418886" />+                        <texcoord u="3.82981" v="-1.85078" />+                    </vertex>+                    <vertex>+                        <position x="0" y="-0.816048" z="11.4179" />+                        <normal x="0" y="-0.926499" z="-0.376298" />+                        <texcoord u="3.80678" v="-1.5" />+                    </vertex>+                    <vertex>+                        <position x="5.21765" y="-2.07885" z="12.4378" />+                        <normal x="-0.163812" y="-0.93171" z="-0.324163" />+                        <texcoord u="3.7649" v="-2.03063" />+                    </vertex>+                    <vertex>+                        <position x="0" y="-1.28095" z="12.4537" />+                        <normal x="0" y="-0.912319" z="-0.40948" />+                        <texcoord u="3.83156" v="-1.5" />+                    </vertex>+                    <vertex>+                        <position x="17.3346" y="-2.39765" z="3.87205" />+                        <normal x="0.894093" y="0.232333" z="0.382909" />+                        <texcoord u="2.79578" v="-2.82414" />+                    </vertex>+                    <vertex>+                        <position x="18.6028" y="-4.50615" z="0.760151" />+                        <normal x="0.94775" y="0.230859" z="0.22017" />+                        <texcoord u="2.55875" v="-2.93777" />+                    </vertex>+                    <vertex>+                        <position x="9.81579" y="1.38935" z="11.7255" />+                        <normal x="0.590613" y="0.32343" z="0.739304" />+                        <texcoord u="3.40319" v="-2.2561" />+                    </vertex>+                    <vertex>+                        <position x="13.9049" y="-0.141548" z="8.22335" />+                        <normal x="0.757257" y="0.271347" z="0.594081" />+                        <texcoord u="3.13985" v="-2.58193" />+                    </vertex>+                    <vertex>+                        <position x="6.10291" y="4.35725" z="12.6581" />+                        <normal x="0.413486" y="0.479053" z="0.774298" />+                        <texcoord u="3.41044" v="-1.93896" />+                    </vertex>+                    <vertex>+                        <position x="3.8297" y="2.37355" z="14.361" />+                        <normal x="0.274654" y="0.316152" z="0.908082" />+                        <texcoord u="3.58603" v="-1.78962" />+                    </vertex>+                    <vertex>+                        <position x="6.4207" y="2.12015" z="13.5261" />+                        <normal x="0.410376" y="0.325735" z="0.851756" />+                        <texcoord u="3.52811" v="-1.98803" />+                    </vertex>+                    <vertex>+                        <position x="3.66215" y="4.53255" z="13.4945" />+                        <normal x="0.280307" y="0.469277" z="0.837381" />+                        <texcoord u="3.46562" v="-1.76205" />+                    </vertex>+                    <vertex>+                        <position x="1.55046" y="2.60805" z="14.8359" />+                        <normal x="0.0687272" y="0.321681" z="0.944351" />+                        <texcoord u="3.60623" v="-1.61561" />+                    </vertex>+                    <vertex>+                        <position x="1.99184" y="4.71255" z="13.8796" />+                        <normal x="0.245041" y="0.442457" z="0.862663" />+                        <texcoord u="3.48193" v="-1.64092" />+                    </vertex>+                    <vertex>+                        <position x="1.57523" y="4.73345" z="13.9708" />+                        <normal x="0.0973951" y="0.442612" z="0.891408" />+                        <texcoord u="3.48532" v="-1.6111" />+                    </vertex>+                    <vertex>+                        <position x="2.02129" y="2.59845" z="14.7414" />+                        <normal x="0.219709" y="0.32318" z="0.92048" />+                        <texcoord u="3.6021" v="-1.65112" />+                    </vertex>+                    <vertex>+                        <position x="0.73852" y="2.31895" z="14.8418" />+                        <normal x="-0.0122493" y="0.311145" z="0.950284" />+                        <texcoord u="3.62542" v="-1.556" />+                    </vertex>+                    <vertex>+                        <position x="0" y="4.76455" z="13.9274" />+                        <normal x="0" y="0.418778" z="0.908089" />+                        <texcoord u="3.4877" v="-1.5" />+                    </vertex>+                    <vertex>+                        <position x="0" y="2.22715" z="14.9244" />+                        <normal x="0" y="0.293235" z="0.95604" />+                        <texcoord u="3.63212" v="-1.5" />+                    </vertex>+                    <vertex>+                        <position x="0.78819" y="4.74895" z="13.8808" />+                        <normal x="-0.0476189" y="0.41997" z="0.906288" />+                        <texcoord u="3.48648" v="-1.55602" />+                    </vertex>+                    <vertex>+                        <position x="18.8906" y="-6.07695" z="1.24005" />+                        <normal x="0.934316" y="0.0016293" z="0.356442" />+                        <texcoord u="2.59807" v="-2.99396" />+                    </vertex>+                    <vertex>+                        <position x="19.8663" y="-7.74265" z="-1.58155" />+                        <normal x="0.925287" y="0.0343883" z="0.377705" />+                        <texcoord u="2.3774" v="-3.04001" />+                    </vertex>+                    <vertex>+                        <position x="21.0955" y="-9.44295" z="-3.85875" />+                        <normal x="0.948948" y="0.0382583" z="0.313104" />+                        <texcoord u="2.21569" v="-3.05428" />+                    </vertex>+                    <vertex>+                        <position x="21.4121" y="-9.90545" z="-5.82975" />+                        <normal x="0.976711" y="-0.183119" z="0.111813" />+                        <texcoord u="2.08386" v="-3.02845" />+                    </vertex>+                    <vertex>+                        <position x="21.5627" y="-9.60805" z="-7.51505" />+                        <normal x="0.992809" y="-0.0551143" z="-0.106266" />+                        <texcoord u="1.98431" v="-2.97965" />+                    </vertex>+                    <vertex>+                        <position x="17.3084" y="6.05875" z="-7.95425" />+                        <normal x="0.853873" y="0.511381" z="-0.0969037" />+                        <texcoord u="2.08036" v="-2.41313" />+                    </vertex>+                    <vertex>+                        <position x="17.4371" y="5.63315" z="-8.96295" />+                        <normal x="0.844089" y="0.525813" z="-0.105046" />+                        <texcoord u="2.03034" v="-2.41371" />+                    </vertex>+                    <vertex>+                        <position x="17.1797" y="6.48425" z="-6.94565" />+                        <normal x="0.877763" y="0.477468" z="0.0394581" />+                        <texcoord u="2.13188" v="-2.41054" />+                    </vertex>+                    <vertex>+                        <position x="7.29345" y="-18.5333" z="19.6392" />+                        <normal x="-0.29072" y="-0.428362" z="0.855563" />+                        <texcoord u="4.21211" v="-2.13583" />+                    </vertex>+                    <vertex>+                        <position x="6.97284" y="-16.406" z="20.2846" />+                        <normal x="-0.342804" y="-0.0857365" z="0.935486" />+                        <texcoord u="4.17349" v="-2.07526" />+                    </vertex>+                    <vertex>+                        <position x="9.57429" y="-18.405" z="19.6057" />+                        <normal x="0.190781" y="-0.401721" z="0.895669" />+                        <texcoord u="4.12429" v="-2.29321" />+                    </vertex>+                    <vertex>+                        <position x="7.89984" y="-23.2787" z="14.6297" />+                        <normal x="-0.212262" y="-0.89663" z="0.388587" />+                        <texcoord u="4.2655" v="-2.45335" />+                    </vertex>+                    <vertex>+                        <position x="9.94373" y="-20.6087" z="18.2036" />+                        <normal x="0.167413" y="-0.70203" z="0.69219" />+                        <texcoord u="4.14324" v="-2.39762" />+                    </vertex>+                    <vertex>+                        <position x="7.40036" y="-20.7566" z="18.0848" />+                        <normal x="-0.289532" y="-0.6821" z="0.671499" />+                        <texcoord u="4.25756" v="-2.2192" />+                    </vertex>+                    <vertex>+                        <position x="10.5229" y="-22.9881" z="14.9232" />+                        <normal x="0.164153" y="-0.891702" z="0.421808" />+                        <texcoord u="4.10657" v="-2.63286" />+                    </vertex>+                    <vertex>+                        <position x="11.3406" y="-24.355" z="10.2756" />+                        <normal x="0.186391" y="-0.959294" z="0.212162" />+                        <texcoord u="3.87887" v="-3.02179" />+                    </vertex>+                    <vertex>+                        <position x="12.226" y="-24.7495" z="5.38365" />+                        <normal x="0.174038" y="-0.984061" z="0.0365355" />+                        <texcoord u="3.34878" v="-3.42753" />+                    </vertex>+                    <vertex>+                        <position x="10.5286" y="-24.4338" z="0.771652" />+                        <normal x="-0.0657313" y="-0.988331" z="-0.13741" />+                        <texcoord u="2.65902" v="-3.66964" />+                    </vertex>+                    <vertex>+                        <position x="13.1627" y="-24.4201" z="0.753752" />+                        <normal x="0.144213" y="-0.987596" z="-0.0621099" />+                        <texcoord u="2.62041" v="-3.60261" />+                    </vertex>+                    <vertex>+                        <position x="14.195" y="-23.9063" z="-4.40455" />+                        <normal x="0.0692988" y="-0.981765" z="-0.177019" />+                        <texcoord u="1.8903" v="-3.46495" />+                    </vertex>+                    <vertex>+                        <position x="11.7308" y="-23.674" z="-4.33795" />+                        <normal x="-0.137228" y="-0.955464" z="-0.26126" />+                        <texcoord u="1.76706" v="-3.48205" />+                    </vertex>+                    <vertex>+                        <position x="5.05559" y="-16.053" z="18.6948" />+                        <normal x="-0.296332" y="-0.0519146" z="0.953673" />+                        <texcoord u="4.23833" v="-1.97009" />+                    </vertex>+                    <vertex>+                        <position x="4.68067" y="0.777252" z="-21.2973" />+                        <normal x="0.041741" y="0.259472" z="-0.964848" />+                        <texcoord u="1.30683" v="-1.76223" />+                    </vertex>+                    <vertex>+                        <position x="4.02227" y="4.38595" z="-20.3606" />+                        <normal x="-0.00809178" y="0.175088" z="-0.984519" />+                        <texcoord u="1.43629" v="-1.71014" />+                    </vertex>+                    <vertex>+                        <position x="10.56" y="-7.57685" z="-21.9535" />+                        <normal x="0.250839" y="-0.00598981" z="-0.96801" />+                        <texcoord u="1.1573" v="-2.14586" />+                    </vertex>+                    <vertex>+                        <position x="11.3734" y="-13.5648" z="-21.1156" />+                        <normal x="0.197993" y="-0.403465" z="-0.893317" />+                        <texcoord u="1.03886" v="-2.28701" />+                    </vertex>+                    <vertex>+                        <position x="9.40831" y="-21.0859" z="-9.11965" />+                        <normal x="-0.0794815" y="-0.897417" z="-0.433964" />+                        <texcoord u="1.06794" v="-2.97739" />+                    </vertex>+                    <vertex>+                        <position x="10.6316" y="-15.9149" z="-19.1413" />+                        <normal x="0.165258" y="-0.790499" z="-0.589747" />+                        <texcoord u="0.970002" v="-2.34981" />+                    </vertex>+                    <vertex>+                        <position x="11.2366" y="-15.8944" z="-19.046" />+                        <normal x="0.110345" y="-0.746644" z="-0.656008" />+                        <texcoord u="0.996265" v="-2.38716" />+                    </vertex>+                    <vertex>+                        <position x="8.8468" y="-21.0975" z="-9.21285" />+                        <normal x="0.270857" y="-0.89401" z="-0.356907" />+                        <texcoord u="1.00925" v="-2.93152" />+                    </vertex>+                    <vertex>+                        <position x="7.80622" y="-23.0351" z="-4.42235" />+                        <normal x="0.358478" y="-0.906234" z="-0.224128" />+                        <texcoord u="1.4134" v="-3.41804" />+                    </vertex>+                    <vertex>+                        <position x="7.41918" y="-24.0673" z="0.732052" />+                        <normal x="0.0321708" y="-0.990987" z="-0.13004" />+                        <texcoord u="2.72201" v="-3.75003" />+                    </vertex>+                    <vertex>+                        <position x="6.8746" y="-24.1931" z="0.664953" />+                        <normal x="0.43296" y="-0.900172" z="-0.0472821" />+                        <texcoord u="2.71939" v="-3.76812" />+                    </vertex>+                    <vertex>+                        <position x="8.35899" y="-22.9726" z="-4.33235" />+                        <normal x="-0.0205537" y="-0.95798" z="-0.286099" />+                        <texcoord u="1.49204" v="-3.44479" />+                    </vertex>+                    <vertex>+                        <position x="6.16242" y="-24.373" z="5.21815" />+                        <normal x="0.514013" y="-0.846166" z="0.140686" />+                        <texcoord u="3.95102" v="-3.21359" />+                    </vertex>+                    <vertex>+                        <position x="5.65267" y="-23.6047" z="9.00585" />+                        <normal x="0.470654" y="-0.849626" z="0.23795" />+                        <texcoord u="4.33219" v="-2.65" />+                    </vertex>+                    <vertex>+                        <position x="5.2759" y="-22.7348" z="12.9702" />+                        <normal x="0.437105" y="-0.78721" z="0.435017" />+                        <texcoord u="4.40884" v="-2.27646" />+                    </vertex>+                    <vertex>+                        <position x="5.39362" y="-20.2785" z="16.4967" />+                        <normal x="-0.212356" y="-0.705695" z="0.675943" />+                        <texcoord u="4.34078" v="-2.10185" />+                    </vertex>+                    <vertex>+                        <position x="4.93452" y="-20.2928" z="16.5204" />+                        <normal x="0.541279" y="-0.593184" z="0.595944" />+                        <texcoord u="4.35842" v="-2.0551" />+                    </vertex>+                    <vertex>+                        <position x="5.7748" y="-22.6999" z="12.944" />+                        <normal x="-0.197161" y="-0.910337" z="0.363887" />+                        <texcoord u="4.37746" v="-2.33761" />+                    </vertex>+                    <vertex>+                        <position x="5.31009" y="-18.0007" z="18.2954" />+                        <normal x="-0.271055" y="-0.378077" z="0.885204" />+                        <texcoord u="4.27904" v="-2.01635" />+                    </vertex>+                    <vertex>+                        <position x="24.0774" y="-22.1526" z="-4.06425" />+                        <normal x="0.400362" y="-0.916155" z="-0.0192653" />+                        <texcoord u="2.19435" v="-3.31071" />+                    </vertex>+                    <vertex>+                        <position x="26.2076" y="-19.7829" z="0.781452" />+                        <normal x="0.721588" y="-0.62686" z="0.293864" />+                        <texcoord u="2.55259" v="-3.2636" />+                    </vertex>+                    <vertex>+                        <position x="23.4234" y="-21.3806" z="0.957052" />+                        <normal x="0.34726" y="-0.877405" z="0.331015" />+                        <texcoord u="2.57505" v="-3.33688" />+                    </vertex>+                    <vertex>+                        <position x="26.7256" y="-20.4958" z="-3.89405" />+                        <normal x="0.713403" y="-0.698409" z="-0.0572785" />+                        <texcoord u="2.24529" v="-3.24813" />+                    </vertex>+                    <vertex>+                        <position x="24.7654" y="-18.1081" z="4.65505" />+                        <normal x="0.676334" y="-0.522768" z="0.518928" />+                        <texcoord u="2.82251" v="-3.2158" />+                    </vertex>+                    <vertex>+                        <position x="3.11768" y="-10.3144" z="24.5508" />+                        <normal x="0.191448" y="-0.104476" z="0.975926" />+                        <texcoord u="4.05178" v="-1.69706" />+                    </vertex>+                    <vertex>+                        <position x="2.9135" y="-12.2332" z="23.7479" />+                        <normal x="0.111918" y="-0.682045" z="0.722695" />+                        <texcoord u="4.11401" v="-1.69801" />+                    </vertex>+                    <vertex>+                        <position x="14.5039" y="9.20425" z="-3.52585" />+                        <normal x="0.773603" y="0.553881" z="0.307822" />+                        <texcoord u="2.3086" v="-2.28735" />+                    </vertex>+                    <vertex>+                        <position x="1.29627" y="6.80885" z="12.8516" />+                        <normal x="0.077987" y="0.494955" z="0.865412" />+                        <texcoord u="3.35959" v="-1.5867" />+                    </vertex>+                    <vertex>+                        <position x="0.64821" y="6.83655" z="12.7677" />+                        <normal x="-0.0155035" y="0.481017" z="0.876574" />+                        <texcoord u="3.35811" v="-1.54357" />+                    </vertex>+                    <vertex>+                        <position x="0.47708" y="8.66035" z="11.7117" />+                        <normal x="-0.0450131" y="0.504395" z="0.862299" />+                        <texcoord u="3.24301" v="-1.53027" />+                    </vertex>+                    <vertex>+                        <position x="0.95503" y="8.62545" z="11.8145" />+                        <normal x="0.0589685" y="0.521723" z="0.851074" />+                        <texcoord u="3.24696" v="-1.56038" />+                    </vertex>+                    <vertex>+                        <position x="3.99725" y="0.0739517" z="14.9463" />+                        <normal x="0.259386" y="0.117351" z="0.958618" />+                        <texcoord u="3.70389" v="-1.82197" />+                    </vertex>+                    <vertex>+                        <position x="6.73848" y="-0.257549" z="14.1129" />+                        <normal x="0.392558" y="0.0711391" z="0.916972" />+                        <texcoord u="3.63984" v="-2.04424" />+                    </vertex>+                    <vertex>+                        <position x="3.19399" y="6.64085" z="12.1653" />+                        <normal x="0.323837" y="0.544392" z="0.7738" />+                        <texcoord u="3.33512" v="-1.71926" />+                    </vertex>+                    <vertex>+                        <position x="5.4832" y="6.52745" z="11.3005" />+                        <normal x="0.416864" y="0.588027" z="0.693144" />+                        <texcoord u="3.28147" v="-1.87919" />+                    </vertex>+                    <vertex>+                        <position x="17.9051" y="3.37275" z="-4.66805" />+                        <normal x="0.911045" y="0.301766" z="0.280951" />+                        <texcoord u="2.22085" v="-2.57073" />+                    </vertex>+                    <vertex>+                        <position x="0" y="6.86415" z="12.8204" />+                        <normal x="0" y="0.493495" z="0.869749" />+                        <texcoord u="3.35882" v="-1.5" />+                    </vertex>+                    <vertex>+                        <position x="0" y="8.69525" z="11.7455" />+                        <normal x="0" y="0.52625" z="0.85033" />+                        <texcoord u="3.24288" v="-1.5" />+                    </vertex>+                    <vertex>+                        <position x="1.67964" y="6.79165" z="12.7504" />+                        <normal x="0.298333" y="0.507673" z="0.808248" />+                        <texcoord u="3.35596" v="-1.61276" />+                    </vertex>+                    <vertex>+                        <position x="1.29026" y="8.63075" z="11.7064" />+                        <normal x="0.336148" y="0.547918" z="0.766022" />+                        <texcoord u="3.24224" v="-1.58181" />+                    </vertex>+                    <vertex>+                        <position x="2.70311" y="23.6027" z="4.81885" />+                        <normal x="0.181993" y="0.741065" z="0.646298" />+                        <texcoord u="2.6596" v="-1.58952" />+                    </vertex>+                    <vertex>+                        <position x="0" y="25.3924" z="2.51655" />+                        <normal x="0" y="0.871343" z="0.490674" />+                        <texcoord u="2.57861" v="-1.5" />+                    </vertex>+                    <vertex>+                        <position x="3.79914" y="25.114" z="2.42425" />+                        <normal x="0.217613" y="0.850964" z="0.478021" />+                        <texcoord u="2.57601" v="-1.61911" />+                    </vertex>+                    <vertex>+                        <position x="0" y="23.9277" z="4.80145" />+                        <normal x="0" y="0.76991" z="0.638152" />+                        <texcoord u="2.65759" v="-1.5" />+                    </vertex>+                    <vertex>+                        <position x="0" y="19.1166" z="8.78655" />+                        <normal x="0" y="0.393511" z="0.91932" />+                        <texcoord u="2.84285" v="-1.5" />+                    </vertex>+                    <vertex>+                        <position x="0" y="17.6643" z="9.18835" />+                        <normal x="0" y="0.0779043" z="0.996961" />+                        <texcoord u="2.88169" v="-1.5" />+                    </vertex>+                    <vertex>+                        <position x="0.59864" y="19.0009" z="8.92435" />+                        <normal x="-0.153102" y="0.434199" z="0.887711" />+                        <texcoord u="2.84933" v="-1.52343" />+                    </vertex>+                    <vertex>+                        <position x="3.34206" y="12.8508" z="8.86445" />+                        <normal x="0.909101" y="0.413979" z="0.0464497" />+                        <texcoord u="2.97302" v="-1.67834" />+                    </vertex>+                    <vertex>+                        <position x="25.1536" y="-10.5159" z="-5.34255" />+                        <normal x="-0.166903" y="0.985234" z="0.0381787" />+                        <texcoord u="2.17612" v="-3.0249" />+                    </vertex>+                    <vertex>+                        <position x="12.3413" y="-19.9289" z="17.7268" />+                        <normal x="0.426009" y="-0.549746" z="0.718537" />+                        <texcoord u="4.01255" v="-2.55303" />+                    </vertex>+                    <vertex>+                        <position x="8.43772" y="24.0153" z="-7.68635" />+                        <normal x="0.531697" y="0.824823" z="-0.192265" />+                        <texcoord u="2.26224" v="-1.761" />+                    </vertex>+                    <vertex>+                        <position x="4.71459" y="25.8658" z="-7.36875" />+                        <normal x="0.302289" y="0.935246" z="-0.184219" />+                        <texcoord u="2.28139" v="-1.63987" />+                    </vertex>+                    <vertex>+                        <position x="0" y="22.2642" z="-15.8078" />+                        <normal x="0" y="0.717219" z="-0.696848" />+                        <texcoord u="2.00868" v="-1.5" />+                    </vertex>+                    <vertex>+                        <position x="0" y="25.2038" z="-11.9929" />+                        <normal x="0" y="0.892577" z="-0.450896" />+                        <texcoord u="2.14657" v="-1.5" />+                    </vertex>+                    <vertex>+                        <position x="3.55121" y="17.2766" z="-19.0169" />+                        <normal x="0.038384" y="0.375707" z="-0.925943" />+                        <texcoord u="1.84147" v="-1.62297" />+                    </vertex>+                    <vertex>+                        <position x="0" y="12.3069" z="-19.6909" />+                        <normal x="0" y="0.10844" z="-0.994103" />+                        <texcoord u="1.69452" v="-1.5" />+                    </vertex>+                    <vertex>+                        <position x="3.78424" y="12.2843" z="-19.7076" />+                        <normal x="-0.0121079" y="0.10461" z="-0.99444" />+                        <texcoord u="1.70171" v="-1.65329" />+                    </vertex>+                    <vertex>+                        <position x="0" y="17.2892" z="-18.9831" />+                        <normal x="0" y="0.433035" z="-0.901377" />+                        <texcoord u="1.83786" v="-1.5" />+                    </vertex>+                    <vertex>+                        <position x="4.84475" y="20.3264" z="7.06885" />+                        <normal x="0.114611" y="0.820509" z="0.560026" />+                        <texcoord u="2.7619" v="-1.6795" />+                    </vertex>+                    <vertex>+                        <position x="6.20976" y="21.611" z="4.22995" />+                        <normal x="0.170693" y="0.846685" z="0.503972" />+                        <texcoord u="2.6499" v="-1.72006" />+                    </vertex>+                    <vertex>+                        <position x="3.71865" y="20.4664" z="7.00245" />+                        <normal x="0.155346" y="0.807091" z="0.569624" />+                        <texcoord u="2.75976" v="-1.63794" />+                    </vertex>+                    <vertex>+                        <position x="7.17561" y="21.25" z="5.04665" />+                        <normal x="0.14035" y="0.847004" z="0.512724" />+                        <texcoord u="2.67923" v="-1.75484" />+                    </vertex>+                    <vertex>+                        <position x="13.5653" y="19.8284" z="-4.35305" />+                        <normal x="0.64532" y="0.292225" z="-0.705809" />+                        <texcoord u="2.34851" v="-1.97208" />+                    </vertex>+                    <vertex>+                        <position x="12.9953" y="20.9437" z="-3.89745" />+                        <normal x="0.385673" y="0.634817" z="-0.669524" />+                        <texcoord u="2.36859" v="-1.93815" />+                    </vertex>+                    <vertex>+                        <position x="13.3551" y="17.3386" z="-4.11545" />+                        <normal x="0.848064" y="-0.495439" z="-0.187958" />+                        <texcoord u="2.34102" v="-2.0159" />+                    </vertex>+                    <vertex>+                        <position x="0" y="19.7554" z="8.30565" />+                        <normal x="0" y="0.697344" z="0.716737" />+                        <texcoord u="2.81671" v="-1.5" />+                    </vertex>+                    <vertex>+                        <position x="1.50704" y="19.6263" z="8.58915" />+                        <normal x="-0.0285198" y="0.713344" z="0.700234" />+                        <texcoord u="2.82772" v="-1.5575" />+                    </vertex>+                    <vertex>+                        <position x="8.56776" y="19.3849" z="5.44905" />+                        <normal x="0.692575" y="0.0382308" z="0.720332" />+                        <texcoord u="2.70606" v="-1.82399" />+                    </vertex>+                    <vertex>+                        <position x="9.00143" y="18.3293" z="4.74485" />+                        <normal x="0.672949" y="-0.461947" z="0.577706" />+                        <texcoord u="2.68806" v="-1.85676" />+                    </vertex>+                    <vertex>+                        <position x="10.4657" y="19.7971" z="3.46045" />+                        <normal x="0.733657" y="0.0567978" z="0.677142" />+                        <texcoord u="2.62692" v="-1.88385" />+                    </vertex>+                    <vertex>+                        <position x="11.6313" y="18.7585" z="1.73775" />+                        <normal x="0.760406" y="-0.350491" z="0.546753" />+                        <texcoord u="2.56585" v="-1.94074" />+                    </vertex>+                    <vertex>+                        <position x="11.8518" y="20.0663" z="1.90665" />+                        <normal x="0.797186" y="0.0350106" z="0.602717" />+                        <texcoord u="2.56814" v="-1.92357" />+                    </vertex>+                    <vertex>+                        <position x="10.3164" y="18.5438" z="3.24125" />+                        <normal x="0.713827" y="-0.367805" z="0.595962" />+                        <texcoord u="2.62592" v="-1.9008" />+                    </vertex>+                    <vertex>+                        <position x="6.11749" y="12.7687" z="6.25965" />+                        <normal x="0.502725" y="0.141535" z="0.852781" />+                        <texcoord u="2.84199" v="-1.83422" />+                    </vertex>+                    <vertex>+                        <position x="6.55753" y="13.315" z="5.81705" />+                        <normal x="0.523714" y="0.481791" z="0.702567" />+                        <texcoord u="2.80746" v="-1.8466" />+                    </vertex>+                    <vertex>+                        <position x="7.88334" y="13.0411" z="4.97685" />+                        <normal x="0.570538" y="0.430368" z="0.699479" />+                        <texcoord u="2.76366" v="-1.91763" />+                    </vertex>+                    <vertex>+                        <position x="10.8545" y="14.5302" z="0.800053" />+                        <normal x="0.700557" y="0.388936" z="0.598288" />+                        <texcoord u="2.53761" v="-2.01022" />+                    </vertex>+                    <vertex>+                        <position x="11.0436" y="15.7743" z="-0.0809479" />+                        <normal x="0.666342" y="0.367226" z="0.648948" />+                        <texcoord u="2.49644" v="-1.98605" />+                    </vertex>+                    <vertex>+                        <position x="3.53867" y="11.3916" z="7.02325" />+                        <normal x="0.753082" y="0.443003" z="0.486432" />+                        <texcoord u="2.92941" v="-1.71636" />+                    </vertex>+                    <vertex>+                        <position x="6.20345" y="10.2255" z="5.88095" />+                        <normal x="0.506675" y="0.62848" z="0.590164" />+                        <texcoord u="2.88121" v="-1.90211" />+                    </vertex>+                    <vertex>+                        <position x="13.4995" y="18.7487" z="-6.99735" />+                        <normal x="0.940834" y="0.293132" z="0.170016" />+                        <texcoord u="2.25046" v="-1.98142" />+                    </vertex>+                    <vertex>+                        <position x="4.78013" y="26.3628" z="-2.73345" />+                        <normal x="0.272872" y="0.960471" z="0.0551008" />+                        <texcoord u="2.41866" v="-1.64225" />+                    </vertex>+                    <vertex>+                        <position x="0" y="26.5182" z="-7.39615" />+                        <normal x="0" y="0.981793" z="-0.189956" />+                        <texcoord u="2.28355" v="-1.5" />+                    </vertex>+                    <vertex>+                        <position x="0" y="27.0083" z="-2.41875" />+                        <normal x="0" y="0.993256" z="0.115943" />+                        <texcoord u="2.42892" v="-1.5" />+                    </vertex>+                    <vertex>+                        <position x="7.50541" y="24.4881" z="-0.237148" />+                        <normal x="0.531709" y="0.78554" z="0.316565" />+                        <texcoord u="2.49252" v="-1.73666" />+                    </vertex>+                    <vertex>+                        <position x="4.31822" y="25.9086" z="0.00495338" />+                        <normal x="0.259349" y="0.923869" z="0.281432" />+                        <texcoord u="2.50015" v="-1.63142" />+                    </vertex>+                    <vertex>+                        <position x="6.62857" y="24.0002" z="2.17075" />+                        <normal x="0.520252" y="0.68091" z="0.51546" />+                        <texcoord u="2.57005" v="-1.71389" />+                    </vertex>+                    <vertex>+                        <position x="8.03593" y="22.6632" z="1.85885" />+                        <normal x="0.493706" y="0.699301" z="0.516946" />+                        <texcoord u="2.5626" v="-1.77061" />+                    </vertex>+                    <vertex>+                        <position x="7.11563" y="8.85725" z="7.22115" />+                        <normal x="0.48118" y="0.717914" z="0.503056" />+                        <texcoord u="2.98334" v="-1.97628" />+                    </vertex>+                    <vertex>+                        <position x="6.61811" y="9.55975" z="6.55265" />+                        <normal x="0.467161" y="0.745038" z="0.476108" />+                        <texcoord u="2.93243" v="-1.93675" />+                    </vertex>+                    <vertex>+                        <position x="16.4607" y="6.68075" z="-4.01315" />+                        <normal x="0.847676" y="0.463096" z="0.25882" />+                        <texcoord u="2.27472" v="-2.42405" />+                    </vertex>+                    <vertex>+                        <position x="15.3304" y="21.5382" z="-14.4561" />+                        <normal x="-0.209604" y="0.918427" z="0.335498" />+                        <texcoord u="2.0772" v="-1.94837" />+                    </vertex>+                    <vertex>+                        <position x="15.6473" y="20.0374" z="-12.417" />+                        <normal x="0.33432" y="0.677577" z="0.655073" />+                        <texcoord u="2.11226" v="-1.98861" />+                    </vertex>+                    <vertex>+                        <position x="17.5074" y="21.0125" z="-13.9733" />+                        <normal x="0.30611" y="0.644727" z="0.700445" />+                        <texcoord u="2.09426" v="-2.00836" />+                    </vertex>+                    <vertex>+                        <position x="19.1229" y="22.3149" z="-16.0287" />+                        <normal x="0.25287" y="0.689671" z="0.678535" />+                        <texcoord u="2.07002" v="-2.01298" />+                    </vertex>+                    <vertex>+                        <position x="20.3171" y="24.6977" z="-19.4055" />+                        <normal x="-0.223087" y="0.927224" z="0.300812" />+                        <texcoord u="2.03299" v="-1.98895" />+                    </vertex>+                    <vertex>+                        <position x="17.4638" y="22.9962" z="-16.8983" />+                        <normal x="-0.236277" y="0.912337" z="0.334385" />+                        <texcoord u="2.05013" v="-1.96493" />+                    </vertex>+                    <vertex>+                        <position x="21.6266" y="24.239" z="-18.836" />+                        <normal x="0.228246" y="0.755065" z="0.614638" />+                        <texcoord u="2.04576" v="-2.02154" />+                    </vertex>+                    <vertex>+                        <position x="23.6962" y="25.6726" z="-21.6448" />+                        <normal x="0.309744" y="0.786679" z="0.534036" />+                        <texcoord u="2.01907" v="-2.02651" />+                    </vertex>+                    <vertex>+                        <position x="22.0851" y="16.5247" z="-20.8627" />+                        <normal x="0.792198" y="-0.461265" z="-0.399572" />+                        <texcoord u="1.91385" v="-2.1205" />+                    </vertex>+                    <vertex>+                        <position x="20.6322" y="11.98" z="-18.1547" />+                        <normal x="0.835209" y="-0.0439693" z="0.548171" />+                        <texcoord u="1.89036" v="-2.19284" />+                    </vertex>+                    <vertex>+                        <position x="17.7963" y="1.08455" z="-13.5947" />+                        <normal x="0.889398" y="-0.0629075" z="0.452784" />+                        <texcoord u="1.76456" v="-2.46273" />+                    </vertex>+                    <vertex>+                        <position x="21.9545" y="16.3642" z="-19.9789" />+                        <normal x="0.843951" y="-0.0495424" z="0.534128" />+                        <texcoord u="1.92854" v="-2.12797" />+                    </vertex>+                    <vertex>+                        <position x="19.9068" y="21.2948" z="-15.8186" />+                        <normal x="0.682053" y="0.218284" z="0.697966" />+                        <texcoord u="2.0675" v="-2.04427" />+                    </vertex>+                    <vertex>+                        <position x="18.5126" y="17.3629" z="-18.019" />+                        <normal x="0.816509" y="0.151705" z="0.557044" />+                        <texcoord u="1.95659" v="-2.0583" />+                    </vertex>+                    <vertex>+                        <position x="17.2679" y="14.303" z="-17.1803" />+                        <normal x="-0.0788433" y="0.160615" z="0.983863" />+                        <texcoord u="1.91637" v="-2.08661" />+                    </vertex>+                    <vertex>+                        <position x="17.1573" y="11.1084" z="-14.425" />+                        <normal x="0.820101" y="-0.510394" z="-0.258714" />+                        <texcoord u="1.93121" v="-2.17653" />+                    </vertex>+                    <vertex>+                        <position x="16.3626" y="13.8125" z="-15.9512" />+                        <normal x="0.837946" y="0.267116" z="-0.475915" />+                        <texcoord u="1.92945" v="-2.08526" />+                    </vertex>+                    <vertex>+                        <position x="17.3823" y="13.1018" z="-14.8318" />+                        <normal x="0.838505" y="0.0150527" z="-0.544685" />+                        <texcoord u="1.95755" v="-2.13573" />+                    </vertex>+                    <vertex>+                        <position x="17.1639" y="14.0292" z="-14.9476" />+                        <normal x="0.792506" y="0.339888" z="-0.50637" />+                        <texcoord u="1.96776" v="-2.11116" />+                    </vertex>+                    <vertex>+                        <position x="16.1038" y="9.01485" z="-14.8898" />+                        <normal x="0.491776" y="0.290588" z="0.820801" />+                        <texcoord u="1.86207" v="-2.18994" />+                    </vertex>+                    <vertex>+                        <position x="16.9818" y="9.73795" z="-15.7203" />+                        <normal x="0.403167" y="0.329827" z="0.853622" />+                        <texcoord u="1.86617" v="-2.18469" />+                    </vertex>+                    <vertex>+                        <position x="15.6575" y="9.50015" z="-14.659" />+                        <normal x="0.787359" y="-0.144537" z="0.599311" />+                        <texcoord u="1.87246" v="-2.17028" />+                    </vertex>+                    <vertex>+                        <position x="13.452" y="20.5615" z="-17.9853" />+                        <normal x="-0.618845" y="0.708163" z="-0.339907" />+                        <texcoord u="1.97141" v="-1.89536" />+                    </vertex>+                    <vertex>+                        <position x="18.6872" y="23.8702" z="-21.0305" />+                        <normal x="-0.617421" y="0.692343" z="-0.373434" />+                        <texcoord u="1.98414" v="-1.95838" />+                    </vertex>+                    <vertex>+                        <position x="15.773" y="22.2099" z="-19.3545" />+                        <normal x="-0.624646" y="0.693736" z="-0.358536" />+                        <texcoord u="1.97949" v="-1.92419" />+                    </vertex>+                    <vertex>+                        <position x="22.8037" y="25.9199" z="-21.9753" />+                        <normal x="-0.180163" y="0.95476" z="0.236588" />+                        <texcoord u="2.01137" v="-2.00705" />+                    </vertex>+                    <vertex>+                        <position x="17.7226" y="20.3577" z="-21.842" />+                        <normal x="-0.527501" y="0.168609" z="-0.832655" />+                        <texcoord u="1.91648" v="-1.97347" />+                    </vertex>+                    <vertex>+                        <position x="15.1814" y="18.6764" z="-20.9041" />+                        <normal x="-0.499363" y="0.167491" z="-0.850049" />+                        <texcoord u="1.89162" v="-1.94183" />+                    </vertex>+                    <vertex>+                        <position x="12.9901" y="13.7092" z="-7.77125" />+                        <normal x="0.949201" y="0.05144" z="0.310439" />+                        <texcoord u="2.15892" v="-2.07013" />+                    </vertex>+                    <vertex>+                        <position x="13.5184" y="15.4407" z="-8.50155" />+                        <normal x="0.954419" y="-0.270626" z="0.125883" />+                        <texcoord u="2.16014" v="-2.04041" />+                    </vertex>+                    <vertex>+                        <position x="12.9133" y="13.93" z="-7.26035" />+                        <normal x="0.997547" y="-0.0696674" z="-0.00686019" />+                        <texcoord u="2.1817" v="-2.06613" />+                    </vertex>+                    <vertex>+                        <position x="0" y="-0.450848" z="15.6404" />+                        <normal x="0" y="0.0464943" z="0.998919" />+                        <texcoord u="3.77293" v="-1.5" />+                    </vertex>+                    <vertex>+                        <position x="10.1626" y="-0.940052" z="12.3292" />+                        <normal x="0.575693" y="0.0343424" z="0.816944" />+                        <texcoord u="3.50065" v="-2.32481" />+                    </vertex>+                    <vertex>+                        <position x="14.1039" y="-2.32515" z="8.77535" />+                        <normal x="0.735906" y="-0.00285397" z="0.677078" />+                        <texcoord u="3.21882" v="-2.6553" />+                    </vertex>+                    <vertex>+                        <position x="17.7201" y="-4.42425" z="4.03995" />+                        <normal x="0.871252" y="0.00499211" z="0.490811" />+                        <texcoord u="2.82009" v="-2.90399" />+                    </vertex>+                    <vertex>+                        <position x="2.26889" y="0.134449" z="18.4304" />+                        <normal x="-0.0205818" y="0.994753" z="-0.100213" />+                        <texcoord u="3.73492" v="-1.65203" />+                    </vertex>+                    <vertex>+                        <position x="0" y="-0.23695" z="21.5642" />+                        <normal x="0" y="0.937212" z="0.348759" />+                        <texcoord u="3.75874" v="-1.5" />+                    </vertex>+                    <vertex>+                        <position x="2.60947" y="-0.209148" z="21.1147" />+                        <normal x="0.11181" y="0.879905" z="0.461807" />+                        <texcoord u="3.74833" v="-1.65427" />+                    </vertex>+                    <vertex>+                        <position x="0" y="0.0455513" z="18.8029" />+                        <normal x="0" y="0.984927" z="-0.172972" />+                        <texcoord u="3.74807" v="-1.5" />+                    </vertex>+                    <vertex>+                        <position x="0" y="-5.84855" z="24.479" />+                        <normal x="0" y="0.232379" z="0.972625" />+                        <texcoord u="3.93663" v="-1.5" />+                    </vertex>+                    <vertex>+                        <position x="0" y="-10.4173" z="24.8511" />+                        <normal x="0" y="-0.223571" z="0.974688" />+                        <texcoord u="4.06588" v="-1.5" />+                    </vertex>+                    <vertex>+                        <position x="3.04538" y="-5.85195" z="24.0728" />+                        <normal x="0.219835" y="0.270775" z="0.937205" />+                        <texcoord u="3.92695" v="-1.68052" />+                    </vertex>+                    <vertex>+                        <position x="6.42022" y="-0.0116501" z="17.2365" />+                        <normal x="0.016098" y="0.993173" z="-0.115531" />+                        <texcoord u="3.67185" v="-1.93649" />+                    </vertex>+                    <vertex>+                        <position x="6.62373" y="-0.285648" z="19.8155" />+                        <normal x="0.268708" y="0.863954" z="0.425886" />+                        <texcoord u="3.69584" v="-1.89973" />+                    </vertex>+                    <vertex>+                        <position x="7.31899" y="-6.05905" z="22.8601" />+                        <normal x="0.423358" y="0.242026" z="0.873036" />+                        <texcoord u="3.87787" v="-1.94114" />+                    </vertex>+                    <vertex>+                        <position x="12.3853" y="-6.88495" z="19.5729" />+                        <normal x="0.705766" y="0.226795" z="0.671162" />+                        <texcoord u="3.75058" v="-2.29134" />+                    </vertex>+                    <vertex>+                        <position x="16.2356" y="-8.53195" z="14.4059" />+                        <normal x="0.770964" y="0.285612" z="0.569245" />+                        <texcoord u="3.52743" v="-2.65793" />+                    </vertex>+                    <vertex>+                        <position x="20.2361" y="-10.073" z="10.6293" />+                        <normal x="0.683215" y="0.31305" z="0.65971" />+                        <texcoord u="3.23487" v="-2.89905" />+                    </vertex>+                    <vertex>+                        <position x="24.4876" y="-11.6108" z="7.39545" />+                        <normal x="0.769017" y="0.193867" z="0.609121" />+                        <texcoord u="2.95942" v="-3.02122" />+                    </vertex>+                    <vertex>+                        <position x="28.9367" y="-15.9503" z="-4.29955" />+                        <normal x="0.984726" y="-0.174098" z="0.00234977" />+                        <texcoord u="2.25791" v="-3.12934" />+                    </vertex>+                    <vertex>+                        <position x="28.5714" y="-15.1946" z="-7.36925" />+                        <normal x="0.944097" y="0.0123302" z="-0.329437" />+                        <texcoord u="2.0933" v="-3.07682" />+                    </vertex>+                    <vertex>+                        <position x="0" y="-19.6849" z="21.2506" />+                        <normal x="0" y="-0.560642" z="0.828058" />+                        <texcoord u="4.34458" v="-1.5" />+                    </vertex>+                    <vertex>+                        <position x="1.40103" y="-22.1197" z="18.8079" />+                        <normal x="0.295232" y="-0.732665" z="0.613221" />+                        <texcoord u="4.43281" v="-1.64398" />+                    </vertex>+                    <vertex>+                        <position x="1.53746" y="-19.5388" z="21.1275" />+                        <normal x="0.334381" y="-0.455164" z="0.825237" />+                        <texcoord u="4.33802" v="-1.63375" />+                    </vertex>+                    <vertex>+                        <position x="0" y="-22.3165" z="18.7575" />+                        <normal x="0" y="-0.802738" z="0.596332" />+                        <texcoord u="4.44378" v="-1.5" />+                    </vertex>+                    <vertex>+                        <position x="12.9949" y="-21.9924" z="14.8442" />+                        <normal x="0.435333" y="-0.770824" z="0.465098" />+                        <texcoord u="3.94324" v="-2.76345" />+                    </vertex>+                    <vertex>+                        <position x="3.53672" y="-21.2971" z="17.9361" />+                        <normal x="0.643121" y="-0.561446" z="0.520743" />+                        <texcoord u="4.39895" v="-1.87444" />+                    </vertex>+                    <vertex>+                        <position x="4.01478" y="-23.7838" z="13.7502" />+                        <normal x="0.609768" y="-0.704656" z="0.362826" />+                        <texcoord u="4.48571" v="-2.07979" />+                    </vertex>+                    <vertex>+                        <position x="13.8417" y="-23.4222" z="10.4444" />+                        <normal x="0.410188" y="-0.881419" z="0.234192" />+                        <texcoord u="3.70036" v="-3.09081" />+                    </vertex>+                    <vertex>+                        <position x="1.81685" y="-24.8292" z="14.2316" />+                        <normal x="0.278269" y="-0.879674" z="0.385667" />+                        <texcoord u="4.56628" v="-1.76379" />+                    </vertex>+                    <vertex>+                        <position x="0" y="-26.3755" z="9.65525" />+                        <normal x="0" y="-0.973659" z="0.228008" />+                        <texcoord u="4.72075" v="-1.5" />+                    </vertex>+                    <vertex>+                        <position x="2.16403" y="-26.1854" z="9.71525" />+                        <normal x="0.238342" y="-0.949088" z="0.205974" />+                        <texcoord u="4.65805" v="-1.9807" />+                    </vertex>+                    <vertex>+                        <position x="0" y="-25.2358" z="14.1167" />+                        <normal x="0" y="-0.918541" z="0.395325" />+                        <texcoord u="4.59414" v="-1.5" />+                    </vertex>+                    <vertex>+                        <position x="14.7588" y="-23.889" z="5.42255" />+                        <normal x="0.394635" y="-0.913201" z="0.101619" />+                        <texcoord u="3.20242" v="-3.41182" />+                    </vertex>+                    <vertex>+                        <position x="4.34429" y="-25.1015" z="9.45935" />+                        <normal x="0.585217" y="-0.778279" z="0.227604" />+                        <texcoord u="4.48759" v="-2.41282" />+                    </vertex>+                    <vertex>+                        <position x="4.83824" y="-25.708" z="5.26795" />+                        <normal x="0.530716" y="-0.84483" z="0.0678483" />+                        <texcoord u="4.18223" v="-3.045" />+                    </vertex>+                    <vertex>+                        <position x="2.59072" y="-26.7385" z="5.28625" />+                        <normal x="0.267609" y="-0.962654" z="0.0410229" />+                        <texcoord u="4.59004" v="-2.5243" />+                    </vertex>+                    <vertex>+                        <position x="0" y="-26.5784" z="0.764153" />+                        <normal x="0" y="-0.996012" z="-0.0892152" />+                        <texcoord u="4.97713" v="-1.5" />+                    </vertex>+                    <vertex>+                        <position x="2.98994" y="-26.3286" z="0.780052" />+                        <normal x="0.303699" y="-0.949601" z="-0.0776264" />+                        <texcoord u="3.10764" v="-3.82907" />+                    </vertex>+                    <vertex>+                        <position x="0" y="-27.0082" z="5.25805" />+                        <normal x="0" y="-0.998156" z="0.060704" />+                        <texcoord u="4.84699" v="-1.5" />+                    </vertex>+                    <vertex>+                        <position x="5.66096" y="-24.6048" z="-4.16385" />+                        <normal x="0.439871" y="-0.868524" z="-0.228428" />+                        <texcoord u="1.14988" v="-3.33556" />+                    </vertex>+                    <vertex>+                        <position x="5.31538" y="-25.4452" z="0.740852" />+                        <normal x="0.503516" y="-0.86239" z="-0.0524965" />+                        <texcoord u="2.82228" v="-3.81223" />+                    </vertex>+                    <vertex>+                        <position x="3.27495" y="-25.3085" z="-4.43005" />+                        <normal x="0.181603" y="-0.939011" z="-0.292026" />+                        <texcoord u="0.626837" v="-2.88475" />+                    </vertex>+                    <vertex>+                        <position x="0" y="-23.2387" z="-9.13575" />+                        <normal x="0" y="-0.897976" z="-0.440044" />+                        <texcoord u="0.29807" v="-1.5" />+                    </vertex>+                    <vertex>+                        <position x="3.74831" y="-23.0326" z="-9.27995" />+                        <normal x="0.143987" y="-0.893275" z="-0.425825" />+                        <texcoord u="0.48441" v="-2.31413" />+                    </vertex>+                    <vertex>+                        <position x="0" y="-25.5052" z="-4.32575" />+                        <normal x="0" y="-0.961205" z="-0.275836" />+                        <texcoord u="0.133693" v="-1.5" />+                    </vertex>+                    <vertex>+                        <position x="7.18417" y="-18.5195" z="-17.169" />+                        <normal x="0.21796" y="-0.789842" z="-0.573273" />+                        <texcoord u="0.772138" v="-2.223" />+                    </vertex>+                    <vertex>+                        <position x="6.17837" y="-22.5152" z="-8.96315" />+                        <normal x="0.337012" y="-0.871085" z="-0.357259" />+                        <texcoord u="0.736713" v="-2.71545" />+                    </vertex>+                    <vertex>+                        <position x="4.66407" y="-18.7644" z="-17.395" />+                        <normal x="0.0903899" y="-0.795529" z="-0.599135" />+                        <texcoord u="0.673192" v="-1.98982" />+                    </vertex>+                    <vertex>+                        <position x="0" y="-14.9387" z="-21.0137" />+                        <normal x="0" y="-0.554854" z="-0.831947" />+                        <texcoord u="0.758205" v="-1.5" />+                    </vertex>+                    <vertex>+                        <position x="0" y="-19.0234" z="-17.0234" />+                        <normal x="0" y="-0.83098" z="-0.556302" />+                        <texcoord u="0.580891" v="-1.5" />+                    </vertex>+                    <vertex>+                        <position x="15.4709" y="-7.12275" z="-20.3228" />+                        <normal x="0.419258" y="0.11582" z="-0.900449" />+                        <texcoord u="1.3332" v="-2.38824" />+                    </vertex>+                    <vertex>+                        <position x="10.6939" y="-3.10745" z="-21.1191" />+                        <normal x="0.274219" y="0.169362" z="-0.946636" />+                        <texcoord u="1.29215" v="-2.11161" />+                    </vertex>+                    <vertex>+                        <position x="0" y="-8.07915" z="-22.8741" />+                        <normal x="0" y="-0.076237" z="-0.99709" />+                        <texcoord u="0.979816" v="-1.5" />+                    </vertex>+                    <vertex>+                        <position x="5.33906" y="-3.10435" z="-22.234" />+                        <normal x="0.0820766" y="0.172275" z="-0.981623" />+                        <texcoord u="1.18014" v="-1.81694" />+                    </vertex>+                    <vertex>+                        <position x="0" y="-3.10675" z="-22.4127" />+                        <normal x="0" y="0.207262" z="-0.978285" />+                        <texcoord u="1.14039" v="-1.5" />+                    </vertex>+                    <vertex>+                        <position x="0" y="0.805252" z="-21.2391" />+                        <normal x="0" y="0.281716" z="-0.959498" />+                        <texcoord u="1.28016" v="-1.5" />+                    </vertex>+                    <vertex>+                        <position x="5.65998" y="19.7171" z="7.53315" />+                        <normal x="0.373044" y="0.525565" z="0.764604" />+                        <texcoord u="2.78362" v="-1.7131" />+                    </vertex>+                    <vertex>+                        <position x="7.85408" y="20.6227" z="5.48615" />+                        <normal x="0.4773" y="0.529737" z="0.701116" />+                        <texcoord u="2.69818" v="-1.78372" />+                    </vertex>+                    <vertex>+                        <position x="3.42773" y="10.9604" z="7.69525" />+                        <normal x="0.723395" y="0.475126" z="0.500954" />+                        <texcoord u="2.97635" v="-1.71218" />+                    </vertex>+                    <vertex>+                        <position x="8.1671" y="22.5536" z="1.94085" />+                        <normal x="0.227113" y="0.88739" z="0.401196" />+                        <texcoord u="2.56556" v="-1.77587" />+                    </vertex>+                    <vertex>+                        <position x="11.6841" y="12.5376" z="-1.65465" />+                        <normal x="0.970458" y="-0.11794" z="0.210477" />+                        <texcoord u="2.41574" v="-2.09497" />+                    </vertex>+                    <vertex>+                        <position x="11.9664" y="14.1723" z="-3.22785" />+                        <normal x="0.988679" y="-0.046412" z="0.142687" />+                        <texcoord u="2.35108" v="-2.05208" />+                    </vertex>+                    <vertex>+                        <position x="10.8338" y="11.3953" z="0.530151" />+                        <normal x="0.897813" y="-0.236529" z="0.371465" />+                        <texcoord u="2.52959" v="-2.10466" />+                    </vertex>+                    <vertex>+                        <position x="12.3001" y="21.8825" z="-3.16235" />+                        <normal x="0.301792" y="0.821908" z="-0.483103" />+                        <texcoord u="2.3958" v="-1.90529" />+                    </vertex>+                    <vertex>+                        <position x="13.0934" y="21.8336" z="-2.51785" />+                        <normal x="0.635069" y="0.755261" z="-0.162076" />+                        <texcoord u="2.41761" v="-1.92842" />+                    </vertex>+                    <vertex>+                        <position x="13.5706" y="18.2978" z="-4.45945" />+                        <normal x="0.813974" y="-0.153384" z="-0.560286" />+                        <texcoord u="2.33533" v="-2.00111" />+                    </vertex>+                    <vertex>+                        <position x="10.9108" y="12.0243" z="1.57785" />+                        <normal x="0.877349" y="-0.247886" z="0.410866" />+                        <texcoord u="2.58451" v="-2.08441" />+                    </vertex>+                    <vertex>+                        <position x="10.1022" y="13.7878" z="2.15505" />+                        <normal x="0.543895" y="0.583149" z="0.603419" />+                        <texcoord u="2.60675" v="-2.0004" />+                    </vertex>+                    <vertex>+                        <position x="10.6711" y="14.6185" z="0.875952" />+                        <normal x="0.523999" y="0.48969" z="0.696871" />+                        <texcoord u="2.54116" v="-2.00137" />+                    </vertex>+                    <vertex>+                        <position x="6.69781" y="13.4952" z="5.50875" />+                        <normal x="0.510277" y="0.61867" z="0.597381" />+                        <texcoord u="2.78872" v="-1.85104" />+                    </vertex>+                    <vertex>+                        <position x="7.92624" y="13.2468" z="4.72985" />+                        <normal x="0.537784" y="0.59213" z="0.600143" />+                        <texcoord u="2.74816" v="-1.91587" />+                    </vertex>+                    <vertex>+                        <position x="4.60796" y="14.4711" z="6.32125" />+                        <normal x="0.509418" y="0.619286" z="0.597476" />+                        <texcoord u="2.81868" v="-1.7323" />+                    </vertex>+                    <vertex>+                        <position x="3.00244" y="13.0751" z="10.4141" />+                        <normal x="0.839607" y="0.430043" z="0.331847" />+                        <texcoord u="3.02922" v="-1.65258" />+                    </vertex>+                    <vertex>+                        <position x="0" y="12.4092" z="12.2296" />+                        <normal x="0" y="-0.144407" z="0.989518" />+                        <texcoord u="3.1192" v="-1.5" />+                    </vertex>+                    <vertex>+                        <position x="0" y="11.5303" z="11.8918" />+                        <normal x="0" y="-0.49973" z="0.866181" />+                        <texcoord u="3.13728" v="-1.5" />+                    </vertex>+                    <vertex>+                        <position x="9.53412" y="16.7757" z="1.01385" />+                        <normal x="0.319243" y="-0.891459" z="0.321536" />+                        <texcoord u="2.54369" v="-1.91087" />+                    </vertex>+                    <vertex>+                        <position x="10.0021" y="17.5024" z="2.46485" />+                        <normal x="0.49429" y="-0.753313" z="0.433817" />+                        <texcoord u="2.60129" v="-1.91103" />+                    </vertex>+                    <vertex>+                        <position x="15.1167" y="18.2423" z="-10.5502" />+                        <normal x="0.666846" y="0.378352" z="0.642002" />+                        <texcoord u="2.13992" v="-2.01594" />+                    </vertex>+                    <vertex>+                        <position x="15.4708" y="9.19355" z="-14.4496" />+                        <normal x="0.858474" y="0.0680823" z="0.508318" />+                        <texcoord u="1.86933" v="-2.17525" />+                    </vertex>+                    <vertex>+                        <position x="17.3866" y="11.9973" z="-14.6442" />+                        <normal x="0.853825" y="-0.202326" z="-0.479633" />+                        <texcoord u="1.94369" v="-2.16049" />+                    </vertex>+                    <vertex>+                        <position x="16.4478" y="15.011" z="-14.9368" />+                        <normal x="0.799809" y="0.31609" z="-0.510286" />+                        <texcoord u="1.97752" v="-2.07533" />+                    </vertex>+                    <vertex>+                        <position x="15.9625" y="15.7145" z="-15.5146" />+                        <normal x="0.953157" y="-0.0414345" z="-0.299626" />+                        <texcoord u="1.96972" v="-2.04559" />+                    </vertex>+                    <vertex>+                        <position x="16.003" y="16.6395" z="-15.9925" />+                        <normal x="0.890042" y="-0.40842" z="-0.202531" />+                        <texcoord u="1.97312" v="-2.02723" />+                    </vertex>+                    <vertex>+                        <position x="18.4151" y="18.1279" z="-18.0864" />+                        <normal x="0.773925" y="0.184634" z="0.605764" />+                        <texcoord u="1.96552" v="-2.04419" />+                    </vertex>+                    <vertex>+                        <position x="9.24939" y="-3.10635" z="-21.529" />+                        <normal x="0.213774" y="0.162081" z="-0.963343" />+                        <texcoord u="1.25514" v="-2.03482" />+                    </vertex>+                    <vertex>+                        <position x="16.3135" y="15.7067" z="-14.9977" />+                        <normal x="0.85192" y="-0.0978558" z="-0.514448" />+                        <texcoord u="1.98609" v="-2.05899" />+                    </vertex>+                    <vertex>+                        <position x="15.9745" y="15.0008" z="-16.0002" />+                        <normal x="0.962673" y="0.162939" z="0.216128" />+                        <texcoord u="1.94529" v="-2.05382" />+                    </vertex>+                    <vertex>+                        <position x="16.0685" y="14.951" z="-15.4373" />+                        <normal x="0.899916" y="0.229555" z="-0.370751" />+                        <texcoord u="1.95982" v="-2.06227" />+                    </vertex>+                    <vertex>+                        <position x="17.0833" y="16.2137" z="-17.3458" />+                        <normal x="0.0383253" y="0.000404067" z="0.999265" />+                        <texcoord u="1.94251" v="-2.04905" />+                    </vertex>+                    <vertex>+                        <position x="16.5604" y="15.9643" z="-17.2178" />+                        <normal x="0.572097" y="0.0987877" z="0.814215" />+                        <texcoord u="1.93696" v="-2.04154" />+                    </vertex>+                    <vertex>+                        <position x="17.0841" y="11.0056" z="-16.1929" />+                        <normal x="0.370628" y="0.287791" z="0.883069" />+                        <texcoord u="1.87952" v="-2.15463" />+                    </vertex>+                    <vertex>+                        <position x="2.78302" y="-1.83705" z="22.4881" />+                        <normal x="0.198175" y="0.513138" z="0.835114" />+                        <texcoord u="3.80442" v="-1.66143" />+                    </vertex>+                    <vertex>+                        <position x="7.11177" y="-1.92525" z="21.1275" />+                        <normal x="0.409351" y="0.510503" z="0.756187" />+                        <texcoord u="3.74966" v="-1.92065" />+                    </vertex>+                    <vertex>+                        <position x="11.8163" y="-2.78545" z="17.9285" />+                        <normal x="0.68867" y="0.476001" z="0.546952" />+                        <texcoord u="3.62942" v="-2.24438" />+                    </vertex>+                    <vertex>+                        <position x="15.4148" y="-4.43635" z="12.2818" />+                        <normal x="0.770305" y="0.481899" z="0.417618" />+                        <texcoord u="3.38872" v="-2.61543" />+                    </vertex>+                    <vertex>+                        <position x="27.0348" y="-11.2325" z="-7.58755" />+                        <normal x="0.869684" y="0.483632" z="-0.0987381" />+                        <texcoord u="2.0804" v="-2.99505" />+                    </vertex>+                    <vertex>+                        <position x="1.95831" y="-0.688148" z="15.8656" />+                        <normal x="-0.0777439" y="0.949525" z="-0.303904" />+                        <texcoord u="3.77456" v="-1.65732" />+                    </vertex>+                    <vertex>+                        <position x="0" y="-0.83725" z="16.1556" />+                        <normal x="0" y="0.948644" z="-0.316346" />+                        <texcoord u="3.7912" v="-1.5" />+                    </vertex>+                    <vertex>+                        <position x="6.17356" y="-0.902851" z="14.7819" />+                        <normal x="-0.0598093" y="0.944428" z="-0.323231" />+                        <texcoord u="3.69479" v="-1.999" />+                    </vertex>+                    <vertex>+                        <position x="17.8235" y="-4.79515" z="4.29085" />+                        <normal x="-0.036091" y="0.881538" z="-0.470732" />+                        <texcoord u="2.84022" v="-2.91321" />+                    </vertex>+                    <vertex>+                        <position x="23.8901" y="-10.8517" z="-3.12125" />+                        <normal x="-0.318194" y="0.878383" z="-0.356646" />+                        <texcoord u="2.29444" v="-3.07339" />+                    </vertex>+                    <vertex>+                        <position x="25.5407" y="-10.2028" z="-3.08495" />+                        <normal x="0.140062" y="0.951634" z="-0.27345" />+                        <texcoord u="2.31408" v="-3.03927" />+                    </vertex>+                    <vertex>+                        <position x="23.6247" y="-11.4452" z="-5.74005" />+                        <normal x="-0.559302" y="0.8199" z="0.122248" />+                        <texcoord u="2.12221" v="-3.05489" />+                    </vertex>+                    <vertex>+                        <position x="0" y="-1.01595" z="15.586" />+                        <normal x="0" y="-0.0958253" z="0.995398" />+                        <texcoord u="3.8018" v="-1.5" />+                    </vertex>+                    <vertex>+                        <position x="2.05075" y="0.34375" z="15.3221" />+                        <normal x="0.21492" y="0.178228" z="0.960231" />+                        <texcoord u="3.72142" v="-1.66348" />+                    </vertex>+                    <vertex>+                        <position x="2.02895" y="-0.233551" z="15.3541" />+                        <normal x="0.237511" y="0.00823728" z="0.97135" />+                        <texcoord u="3.75112" v="-1.66533" />+                    </vertex>+                    <vertex>+                        <position x="3.97137" y="-0.480049" z="14.9158" />+                        <normal x="0.261197" y="-0.0998199" z="0.96011" />+                        <texcoord u="3.73183" v="-1.82798" />+                    </vertex>+                    <vertex>+                        <position x="6.69525" y="-0.774952" z="14.0331" />+                        <normal x="0.381138" y="-0.178308" z="0.90716" />+                        <texcoord u="3.66394" v="-2.05532" />+                    </vertex>+                    <vertex>+                        <position x="10.0191" y="-1.41905" z="12.2945" />+                        <normal x="0.551179" y="-0.208627" z="0.807884" />+                        <texcoord u="3.52404" v="-2.33452" />+                    </vertex>+                    <vertex>+                        <position x="13.9386" y="-2.82435" z="8.78115" />+                        <normal x="0.696771" y="-0.19376" z="0.690628" />+                        <texcoord u="3.23831" v="-2.67194" />+                    </vertex>+                    <vertex>+                        <position x="17.5134" y="-4.90095" z="4.16555" />+                        <normal x="0.814737" y="-0.202464" z="0.543334" />+                        <texcoord u="2.83819" v="-2.92185" />+                    </vertex>+                    <vertex>+                        <position x="18.6784" y="-6.51375" z="1.41545" />+                        <normal x="0.861373" y="-0.226458" z="0.454702" />+                        <texcoord u="2.61458" v="-3.01197" />+                    </vertex>+                    <vertex>+                        <position x="19.6491" y="-8.16315" z="-1.35965" />+                        <normal x="0.84128" y="-0.169881" z="0.513213" />+                        <texcoord u="2.39213" v="-3.05894" />+                    </vertex>+                    <vertex>+                        <position x="20.9089" y="-9.91055" z="-3.70925" />+                        <normal x="0.897926" y="-0.286787" z="0.333889" />+                        <texcoord u="2.22096" v="-3.07292" />+                    </vertex>+                    <vertex>+                        <position x="21.3559" y="-9.98005" z="-7.65665" />+                        <normal x="0.904309" y="-0.397319" z="-0.156086" />+                        <texcoord u="1.96684" v="-2.9871" />+                    </vertex>+                    <vertex>+                        <position x="21.2313" y="-10.3496" z="-5.89035" />+                        <normal x="0.916738" y="-0.386833" z="0.0997609" />+                        <texcoord u="2.0724" v="-3.04124" />+                    </vertex>+                    <vertex>+                        <position x="0" y="-0.287148" z="9.59945" />+                        <normal x="0" y="-0.962147" z="-0.272533" />+                        <texcoord u="3.7738" v="-1.5" />+                    </vertex>+                    <vertex>+                        <position x="-5.21765" y="-2.07885" z="12.4378" />+                        <normal x="0.163812" y="-0.93171" z="-0.324163" />+                        <texcoord u="3.7649" v="-0.969372" />+                    </vertex>+                    <vertex>+                        <position x="-8.46152" y="-2.20505" z="10.6194" />+                        <normal x="0.183318" y="-0.947703" z="-0.261252" />+                        <texcoord u="3.5778" v="-0.641204" />+                    </vertex>+                    <vertex>+                        <position x="-13.9049" y="-0.141548" z="8.22335" />+                        <normal x="-0.757257" y="0.271347" z="0.594081" />+                        <texcoord u="3.13985" v="-0.418072" />+                    </vertex>+                    <vertex>+                        <position x="-17.3346" y="-2.39765" z="3.87205" />+                        <normal x="-0.894093" y="0.232333" z="0.382909" />+                        <texcoord u="2.79578" v="-0.175856" />+                    </vertex>+                    <vertex>+                        <position x="-6.4207" y="2.12015" z="13.5261" />+                        <normal x="-0.410376" y="0.325735" z="0.851756" />+                        <texcoord u="3.52811" v="-1.01197" />+                    </vertex>+                    <vertex>+                        <position x="-9.81579" y="1.38935" z="11.7255" />+                        <normal x="-0.590613" y="0.32343" z="0.739304" />+                        <texcoord u="3.40319" v="-0.743904" />+                    </vertex>+                    <vertex>+                        <position x="-6.10291" y="4.35725" z="12.6581" />+                        <normal x="-0.413486" y="0.479053" z="0.774298" />+                        <texcoord u="3.41044" v="-1.06104" />+                    </vertex>+                    <vertex>+                        <position x="-2.02129" y="2.59845" z="14.7414" />+                        <normal x="-0.219709" y="0.32318" z="0.92048" />+                        <texcoord u="3.6021" v="-1.34888" />+                    </vertex>+                    <vertex>+                        <position x="-3.66215" y="4.53255" z="13.4945" />+                        <normal x="-0.280307" y="0.469277" z="0.837381" />+                        <texcoord u="3.46562" v="-1.23795" />+                    </vertex>+                    <vertex>+                        <position x="-3.8297" y="2.37355" z="14.361" />+                        <normal x="-0.274654" y="0.316152" z="0.908082" />+                        <texcoord u="3.58603" v="-1.21038" />+                    </vertex>+                    <vertex>+                        <position x="-1.99184" y="4.71255" z="13.8796" />+                        <normal x="-0.245041" y="0.442457" z="0.862663" />+                        <texcoord u="3.48193" v="-1.35908" />+                    </vertex>+                    <vertex>+                        <position x="-0.78819" y="4.74895" z="13.8808" />+                        <normal x="0.0476189" y="0.41997" z="0.906288" />+                        <texcoord u="3.48648" v="-1.44398" />+                    </vertex>+                    <vertex>+                        <position x="-1.55046" y="2.60805" z="14.8359" />+                        <normal x="-0.0687272" y="0.321681" z="0.944351" />+                        <texcoord u="3.60623" v="-1.38439" />+                    </vertex>+                    <vertex>+                        <position x="-0.73852" y="2.31895" z="14.8418" />+                        <normal x="0.0122493" y="0.311145" z="0.950284" />+                        <texcoord u="3.62542" v="-1.444" />+                    </vertex>+                    <vertex>+                        <position x="-1.57523" y="4.73345" z="13.9708" />+                        <normal x="-0.0973951" y="0.442612" z="0.891408" />+                        <texcoord u="3.48532" v="-1.3889" />+                    </vertex>+                    <vertex>+                        <position x="-20.9035" y="-3.94245" z="-8.74075" />+                        <normal x="-0.87972" y="0.114681" z="0.461455" />+                        <texcoord u="1.96489" v="-0.220279" />+                    </vertex>+                    <vertex>+                        <position x="-19.8663" y="-7.74265" z="-1.58155" />+                        <normal x="-0.925287" y="0.0343883" z="0.377705" />+                        <texcoord u="2.3774" v="0.0400107" />+                    </vertex>+                    <vertex>+                        <position x="-21.0955" y="-9.44295" z="-3.85875" />+                        <normal x="-0.948948" y="0.0382583" z="0.313104" />+                        <texcoord u="2.21569" v="0.0542809" />+                    </vertex>+                    <vertex>+                        <position x="-21.5627" y="-9.60805" z="-7.51505" />+                        <normal x="-0.992809" y="-0.0551143" z="-0.106266" />+                        <texcoord u="1.98431" v="-0.0203502" />+                    </vertex>+                    <vertex>+                        <position x="-21.4121" y="-9.90545" z="-5.82975" />+                        <normal x="-0.976711" y="-0.183119" z="0.111813" />+                        <texcoord u="2.08386" v="0.0284479" />+                    </vertex>+                    <vertex>+                        <position x="-21.229" y="-4.71865" z="-9.12885" />+                        <normal x="-0.612457" y="-0.0359145" z="0.789688" />+                        <texcoord u="1.94288" v="-0.204419" />+                    </vertex>+                    <vertex>+                        <position x="-17.4371" y="5.63315" z="-8.96295" />+                        <normal x="-0.844089" y="0.525813" z="-0.105046" />+                        <texcoord u="2.03034" v="-0.586286" />+                    </vertex>+                    <vertex>+                        <position x="-17.3084" y="6.05875" z="-7.95425" />+                        <normal x="-0.853873" y="0.511381" z="-0.0969037" />+                        <texcoord u="2.08036" v="-0.586867" />+                    </vertex>+                    <vertex>+                        <position x="-17.1797" y="6.48425" z="-6.94565" />+                        <normal x="-0.877763" y="0.477468" z="0.0394581" />+                        <texcoord u="2.13187" v="-0.589461" />+                    </vertex>+                    <vertex>+                        <position x="-6.97284" y="-16.406" z="20.2846" />+                        <normal x="0.342804" y="-0.0857365" z="0.935486" />+                        <texcoord u="4.17349" v="-0.924737" />+                    </vertex>+                    <vertex>+                        <position x="-9.18271" y="-14.148" z="19.7833" />+                        <normal x="-0.2822" y="-0.140695" z="0.948983" />+                        <texcoord u="4.04917" v="-0.780926" />+                    </vertex>+                    <vertex>+                        <position x="-9.36387" y="-16.4045" z="20.0778" />+                        <normal x="-0.271096" y="-0.0318736" z="0.962024" />+                        <texcoord u="4.09253" v="-0.757275" />+                    </vertex>+                    <vertex>+                        <position x="-7.40036" y="-20.7566" z="18.0848" />+                        <normal x="0.289532" y="-0.6821" z="0.671499" />+                        <texcoord u="4.25756" v="-0.780801" />+                    </vertex>+                    <vertex>+                        <position x="-9.57429" y="-18.405" z="19.6057" />+                        <normal x="-0.190781" y="-0.401721" z="0.895669" />+                        <texcoord u="4.12429" v="-0.706787" />+                    </vertex>+                    <vertex>+                        <position x="-9.94373" y="-20.6087" z="18.2036" />+                        <normal x="-0.167413" y="-0.70203" z="0.69219" />+                        <texcoord u="4.14324" v="-0.602375" />+                    </vertex>+                    <vertex>+                        <position x="-7.29345" y="-18.5333" z="19.6392" />+                        <normal x="0.29072" y="-0.428362" z="0.855563" />+                        <texcoord u="4.21211" v="-0.86417" />+                    </vertex>+                    <vertex>+                        <position x="-11.3406" y="-24.355" z="10.2756" />+                        <normal x="-0.186391" y="-0.959294" z="0.212162" />+                        <texcoord u="3.87887" v="0.0217912" />+                    </vertex>+                    <vertex>+                        <position x="-9.55086" y="-24.8116" z="5.31415" />+                        <normal x="0.0684624" y="-0.997588" z="-0.0114808" />+                        <texcoord u="3.55498" v="0.396067" />+                    </vertex>+                    <vertex>+                        <position x="-8.68575" y="-24.5094" z="9.93585" />+                        <normal x="0.14674" y="-0.976131" z="0.160114" />+                        <texcoord u="4.08628" v="-0.113304" />+                    </vertex>+                    <vertex>+                        <position x="-12.226" y="-24.7495" z="5.38365" />+                        <normal x="-0.174038" y="-0.984061" z="0.0365355" />+                        <texcoord u="3.34878" v="0.42753" />+                    </vertex>+                    <vertex>+                        <position x="-11.7308" y="-23.674" z="-4.33795" />+                        <normal x="0.137228" y="-0.955464" z="-0.26126" />+                        <texcoord u="1.76706" v="0.482046" />+                    </vertex>+                    <vertex>+                        <position x="-13.1627" y="-24.4201" z="0.753752" />+                        <normal x="-0.144213" y="-0.987596" z="-0.0621099" />+                        <texcoord u="2.6204" v="0.602607" />+                    </vertex>+                    <vertex>+                        <position x="-14.195" y="-23.9063" z="-4.40455" />+                        <normal x="-0.0692988" y="-0.981765" z="-0.177019" />+                        <texcoord u="1.8903" v="0.464952" />+                    </vertex>+                    <vertex>+                        <position x="-10.5286" y="-24.4338" z="0.771652" />+                        <normal x="0.0657313" y="-0.988331" z="-0.13741" />+                        <texcoord u="2.65902" v="0.669637" />+                    </vertex>+                    <vertex>+                        <position x="-2.9135" y="-12.2332" z="23.7479" />+                        <normal x="-0.111918" y="-0.682045" z="0.722695" />+                        <texcoord u="4.11401" v="-1.30198" />+                    </vertex>+                    <vertex>+                        <position x="-19.4948" y="-20.3601" z="5.33325" />+                        <normal x="-0.410441" y="-0.77579" z="0.479258" />+                        <texcoord u="2.99554" v="0.31136" />+                    </vertex>+                    <vertex>+                        <position x="0" y="-13.2769" z="22.2768" />+                        <normal x="0" y="-0.641308" z="0.767283" />+                        <texcoord u="4.17771" v="-1.5" />+                    </vertex>+                    <vertex>+                        <position x="-4.02227" y="4.38595" z="-20.3606" />+                        <normal x="0.00809178" y="0.175088" z="-0.984519" />+                        <texcoord u="1.43629" v="-1.28986" />+                    </vertex>+                    <vertex>+                        <position x="-4.68067" y="0.777252" z="-21.2973" />+                        <normal x="-0.041741" y="0.259472" z="-0.964848" />+                        <texcoord u="1.30683" v="-1.23777" />+                    </vertex>+                    <vertex>+                        <position x="0" y="4.42875" z="-20.0654" />+                        <normal x="0" y="0.146245" z="-0.989248" />+                        <texcoord u="1.42287" v="-1.5" />+                    </vertex>+                    <vertex>+                        <position x="-10.6939" y="-3.10745" z="-21.1191" />+                        <normal x="-0.274219" y="0.169362" z="-0.946636" />+                        <texcoord u="1.29215" v="-0.888394" />+                    </vertex>+                    <vertex>+                        <position x="-9.24939" y="-3.10635" z="-21.529" />+                        <normal x="-0.213774" y="0.162081" z="-0.963343" />+                        <texcoord u="1.25514" v="-0.965178" />+                    </vertex>+                    <vertex>+                        <position x="-10.56" y="-7.57685" z="-21.9535" />+                        <normal x="-0.250839" y="-0.00598981" z="-0.96801" />+                        <texcoord u="1.1573" v="-0.854141" />+                    </vertex>+                    <vertex>+                        <position x="-11.2366" y="-15.8944" z="-19.046" />+                        <normal x="-0.110345" y="-0.746644" z="-0.656008" />+                        <texcoord u="0.996264" v="-0.612841" />+                    </vertex>+                    <vertex>+                        <position x="-11.3734" y="-13.5648" z="-21.1156" />+                        <normal x="-0.197993" y="-0.403465" z="-0.893317" />+                        <texcoord u="1.03886" v="-0.712993" />+                    </vertex>+                    <vertex>+                        <position x="-10.6316" y="-15.9149" z="-19.1413" />+                        <normal x="-0.165258" y="-0.790499" z="-0.589747" />+                        <texcoord u="0.970002" v="-0.650196" />+                    </vertex>+                    <vertex>+                        <position x="-8.35899" y="-22.9726" z="-4.33235" />+                        <normal x="0.0205537" y="-0.95798" z="-0.286099" />+                        <texcoord u="1.49204" v="0.444793" />+                    </vertex>+                    <vertex>+                        <position x="-9.40831" y="-21.0859" z="-9.11965" />+                        <normal x="0.0794815" y="-0.897417" z="-0.433964" />+                        <texcoord u="1.06794" v="-0.022609" />+                    </vertex>+                    <vertex>+                        <position x="-6.69169" y="-24.2451" z="5.22155" />+                        <normal x="0.016584" y="-0.998633" z="0.0495679" />+                        <texcoord u="3.8731" v="0.259696" />+                    </vertex>+                    <vertex>+                        <position x="-6.8746" y="-24.1931" z="0.664953" />+                        <normal x="-0.43296" y="-0.900172" z="-0.0472821" />+                        <texcoord u="2.71939" v="0.768122" />+                    </vertex>+                    <vertex>+                        <position x="-6.16242" y="-24.373" z="5.21815" />+                        <normal x="-0.514013" y="-0.846166" z="0.140686" />+                        <texcoord u="3.95102" v="0.213596" />+                    </vertex>+                    <vertex>+                        <position x="-7.41918" y="-24.0673" z="0.732052" />+                        <normal x="-0.0321708" y="-0.990987" z="-0.13004" />+                        <texcoord u="2.72201" v="0.75003" />+                    </vertex>+                    <vertex>+                        <position x="-5.7748" y="-22.6999" z="12.944" />+                        <normal x="0.197161" y="-0.910337" z="0.363887" />+                        <texcoord u="4.37746" v="-0.662394" />+                    </vertex>+                    <vertex>+                        <position x="-5.65267" y="-23.6047" z="9.00585" />+                        <normal x="-0.470654" y="-0.849626" z="0.23795" />+                        <texcoord u="4.33219" v="-0.349995" />+                    </vertex>+                    <vertex>+                        <position x="-5.2759" y="-22.7348" z="12.9702" />+                        <normal x="-0.437105" y="-0.78721" z="0.435017" />+                        <texcoord u="4.40884" v="-0.723538" />+                    </vertex>+                    <vertex>+                        <position x="-6.13805" y="-23.5124" z="9.04235" />+                        <normal x="0.107812" y="-0.975895" z="0.189749" />+                        <texcoord u="4.28198" v="-0.290371" />+                    </vertex>+                    <vertex>+                        <position x="-5.39362" y="-20.2785" z="16.4967" />+                        <normal x="0.212356" y="-0.705695" z="0.675943" />+                        <texcoord u="4.34078" v="-0.898152" />+                    </vertex>+                    <vertex>+                        <position x="-5.31009" y="-18.0007" z="18.2954" />+                        <normal x="0.271055" y="-0.378077" z="0.885204" />+                        <texcoord u="4.27904" v="-0.983646" />+                    </vertex>+                    <vertex>+                        <position x="-4.93452" y="-20.2928" z="16.5204" />+                        <normal x="-0.541279" y="-0.593184" z="0.595944" />+                        <texcoord u="4.35842" v="-0.944903" />+                    </vertex>+                    <vertex>+                        <position x="-26.7256" y="-20.4958" z="-3.89405" />+                        <normal x="-0.713403" y="-0.698409" z="-0.0572785" />+                        <texcoord u="2.24529" v="0.248129" />+                    </vertex>+                    <vertex>+                        <position x="-24.0774" y="-22.1526" z="-4.06425" />+                        <normal x="-0.400362" y="-0.916155" z="-0.0192653" />+                        <texcoord u="2.19435" v="0.310706" />+                    </vertex>+                    <vertex>+                        <position x="-24.7654" y="-18.1081" z="4.65505" />+                        <normal x="-0.676334" y="-0.522768" z="0.518928" />+                        <texcoord u="2.82251" v="0.2158" />+                    </vertex>+                    <vertex>+                        <position x="-23.4234" y="-21.3806" z="0.957052" />+                        <normal x="-0.34726" y="-0.877405" z="0.331015" />+                        <texcoord u="2.57505" v="0.33688" />+                    </vertex>+                    <vertex>+                        <position x="-22.0111" y="-19.9794" z="4.62725" />+                        <normal x="-0.371492" y="-0.795927" z="0.47801" />+                        <texcoord u="2.87606" v="0.288873" />+                    </vertex>+                    <vertex>+                        <position x="-26.2076" y="-19.7829" z="0.781452" />+                        <normal x="-0.721588" y="-0.62686" z="0.293864" />+                        <texcoord u="2.55259" v="0.263595" />+                    </vertex>+                    <vertex>+                        <position x="-3.11768" y="-10.3144" z="24.5508" />+                        <normal x="-0.191448" y="-0.104476" z="0.975926" />+                        <texcoord u="4.05178" v="-1.30294" />+                    </vertex>+                    <vertex>+                        <position x="0" y="-12.292" z="24.1694" />+                        <normal x="0" y="-0.759942" z="0.649991" />+                        <texcoord u="4.1244" v="-1.5" />+                    </vertex>+                    <vertex>+                        <position x="-0.64821" y="6.83655" z="12.7677" />+                        <normal x="0.0155035" y="0.481017" z="0.876574" />+                        <texcoord u="3.35811" v="-1.45643" />+                    </vertex>+                    <vertex>+                        <position x="-0.95503" y="8.62545" z="11.8145" />+                        <normal x="-0.0589685" y="0.521723" z="0.851074" />+                        <texcoord u="3.24696" v="-1.43962" />+                    </vertex>+                    <vertex>+                        <position x="-1.29627" y="6.80885" z="12.8516" />+                        <normal x="-0.077987" y="0.494955" z="0.865412" />+                        <texcoord u="3.35959" v="-1.4133" />+                    </vertex>+                    <vertex>+                        <position x="-0.47708" y="8.66035" z="11.7117" />+                        <normal x="0.0450131" y="0.504395" z="0.862299" />+                        <texcoord u="3.24301" v="-1.46973" />+                    </vertex>+                    <vertex>+                        <position x="-5.4832" y="6.52745" z="11.3005" />+                        <normal x="-0.416864" y="0.588027" z="0.693144" />+                        <texcoord u="3.28147" v="-1.12081" />+                    </vertex>+                    <vertex>+                        <position x="-3.19399" y="6.64085" z="12.1653" />+                        <normal x="-0.323837" y="0.544392" z="0.7738" />+                        <texcoord u="3.33512" v="-1.28074" />+                    </vertex>+                    <vertex>+                        <position x="-17.9051" y="3.37275" z="-4.66805" />+                        <normal x="-0.911045" y="0.301766" z="0.280951" />+                        <texcoord u="2.22085" v="-0.429266" />+                    </vertex>+                    <vertex>+                        <position x="-1.29026" y="8.63075" z="11.7064" />+                        <normal x="-0.336148" y="0.547918" z="0.766022" />+                        <texcoord u="3.24224" v="-1.41819" />+                    </vertex>+                    <vertex>+                        <position x="-1.67964" y="6.79165" z="12.7504" />+                        <normal x="-0.298333" y="0.507673" z="0.808248" />+                        <texcoord u="3.35596" v="-1.38724" />+                    </vertex>+                    <vertex>+                        <position x="-2.70311" y="23.6027" z="4.81885" />+                        <normal x="-0.181993" y="0.741065" z="0.646298" />+                        <texcoord u="2.6596" v="-1.41048" />+                    </vertex>+                    <vertex>+                        <position x="-7.50541" y="24.4881" z="-0.237148" />+                        <normal x="-0.531709" y="0.78554" z="0.316565" />+                        <texcoord u="2.49252" v="-1.26334" />+                    </vertex>+                    <vertex>+                        <position x="-3.37184" y="11.0979" z="7.75465" />+                        <normal x="-0.947996" y="-0.170811" z="0.268564" />+                        <texcoord u="2.97516" v="-1.2934" />+                    </vertex>+                    <vertex>+                        <position x="-3.00244" y="13.0751" z="10.4141" />+                        <normal x="-0.839607" y="0.430043" z="0.331847" />+                        <texcoord u="3.02922" v="-1.34742" />+                    </vertex>+                    <vertex>+                        <position x="-12.3413" y="-19.9289" z="17.7268" />+                        <normal x="-0.426009" y="-0.549746" z="0.718537" />+                        <texcoord u="4.01254" v="-0.446972" />+                    </vertex>+                    <vertex>+                        <position x="-4.71459" y="25.8658" z="-7.36875" />+                        <normal x="-0.302289" y="0.935246" z="-0.184219" />+                        <texcoord u="2.28139" v="-1.36013" />+                    </vertex>+                    <vertex>+                        <position x="-8.43772" y="24.0153" z="-7.68635" />+                        <normal x="-0.531697" y="0.824823" z="-0.192265" />+                        <texcoord u="2.26224" v="-1.239" />+                    </vertex>+                    <vertex>+                        <position x="-3.55121" y="17.2766" z="-19.0169" />+                        <normal x="-0.038384" y="0.375707" z="-0.925943" />+                        <texcoord u="1.84147" v="-1.37703" />+                    </vertex>+                    <vertex>+                        <position x="-3.78424" y="12.2843" z="-19.7076" />+                        <normal x="0.0121079" y="0.10461" z="-0.99444" />+                        <texcoord u="1.70171" v="-1.34671" />+                    </vertex>+                    <vertex>+                        <position x="-3.34206" y="12.8508" z="8.86445" />+                        <normal x="-0.909101" y="0.413979" z="0.0464497" />+                        <texcoord u="2.97302" v="-1.32166" />+                    </vertex>+                    <vertex>+                        <position x="-3.71865" y="20.4664" z="7.00245" />+                        <normal x="-0.155346" y="0.807091" z="0.569624" />+                        <texcoord u="2.75976" v="-1.36206" />+                    </vertex>+                    <vertex>+                        <position x="-1.50704" y="19.6263" z="8.58915" />+                        <normal x="0.0285198" y="0.713344" z="0.700234" />+                        <texcoord u="2.82772" v="-1.4425" />+                    </vertex>+                    <vertex>+                        <position x="-4.84475" y="20.3264" z="7.06885" />+                        <normal x="-0.114611" y="0.820509" z="0.560026" />+                        <texcoord u="2.7619" v="-1.3205" />+                    </vertex>+                    <vertex>+                        <position x="-7.17561" y="21.25" z="5.04665" />+                        <normal x="-0.14035" y="0.847004" z="0.512724" />+                        <texcoord u="2.67923" v="-1.24516" />+                    </vertex>+                    <vertex>+                        <position x="-8.1671" y="22.5536" z="1.94085" />+                        <normal x="-0.227113" y="0.88739" z="0.401196" />+                        <texcoord u="2.56556" v="-1.22413" />+                    </vertex>+                    <vertex>+                        <position x="-9.37834" y="22.133" z="2.86215" />+                        <normal x="-0.254844" y="0.852934" z="0.455586" />+                        <texcoord u="2.59687" v="-1.18259" />+                    </vertex>+                    <vertex>+                        <position x="-6.20976" y="21.611" z="4.22995" />+                        <normal x="-0.170693" y="0.846685" z="0.503972" />+                        <texcoord u="2.6499" v="-1.27994" />+                    </vertex>+                    <vertex>+                        <position x="-12.9953" y="20.9437" z="-3.89745" />+                        <normal x="-0.385673" y="0.634817" z="-0.669524" />+                        <texcoord u="2.36859" v="-1.06185" />+                    </vertex>+                    <vertex>+                        <position x="-13.0934" y="21.8336" z="-2.51785" />+                        <normal x="-0.635069" y="0.755261" z="-0.162076" />+                        <texcoord u="2.41761" v="-1.07158" />+                    </vertex>+                    <vertex>+                        <position x="-12.3001" y="21.8825" z="-3.16235" />+                        <normal x="-0.301792" y="0.821908" z="-0.483103" />+                        <texcoord u="2.3958" v="-1.09471" />+                    </vertex>+                    <vertex>+                        <position x="-13.5653" y="19.8284" z="-4.35305" />+                        <normal x="-0.64532" y="0.292225" z="-0.705809" />+                        <texcoord u="2.34851" v="-1.02792" />+                    </vertex>+                    <vertex>+                        <position x="-13.5706" y="18.2978" z="-4.45945" />+                        <normal x="-0.813974" y="-0.153384" z="-0.560286" />+                        <texcoord u="2.33533" v="-0.998889" />+                    </vertex>+                    <vertex>+                        <position x="-10.0021" y="17.5024" z="2.46485" />+                        <normal x="-0.49429" y="-0.753313" z="0.433817" />+                        <texcoord u="2.60129" v="-1.08897" />+                    </vertex>+                    <vertex>+                        <position x="-9.53412" y="16.7757" z="1.01385" />+                        <normal x="-0.319243" y="-0.891459" z="0.321536" />+                        <texcoord u="2.54369" v="-1.08913" />+                    </vertex>+                    <vertex>+                        <position x="-11.3246" y="17.5281" z="1.01705" />+                        <normal x="-0.586929" y="-0.666922" z="0.459052" />+                        <texcoord u="2.54096" v="-1.04391" />+                    </vertex>+                    <vertex>+                        <position x="-7.85408" y="20.6227" z="5.48615" />+                        <normal x="-0.4773" y="0.529737" z="0.701116" />+                        <texcoord u="2.69818" v="-1.21628" />+                    </vertex>+                    <vertex>+                        <position x="-8.56776" y="19.3849" z="5.44905" />+                        <normal x="-0.692575" y="0.0382308" z="0.720332" />+                        <texcoord u="2.70606" v="-1.17601" />+                    </vertex>+                    <vertex>+                        <position x="-10.4657" y="19.7971" z="3.46045" />+                        <normal x="-0.733657" y="0.0567978" z="0.677142" />+                        <texcoord u="2.62692" v="-1.11615" />+                    </vertex>+                    <vertex>+                        <position x="-11.8518" y="20.0663" z="1.90665" />+                        <normal x="-0.797186" y="0.0350106" z="0.602717" />+                        <texcoord u="2.56814" v="-1.07643" />+                    </vertex>+                    <vertex>+                        <position x="-9.8397" y="21.3858" z="3.35525" />+                        <normal x="-0.574001" y="0.509254" z="0.641236" />+                        <texcoord u="2.61621" v="-1.1592" />+                    </vertex>+                    <vertex>+                        <position x="-11.6841" y="12.5376" z="-1.65465" />+                        <normal x="-0.970458" y="-0.11794" z="0.210477" />+                        <texcoord u="2.41574" v="-0.905025" />+                    </vertex>+                    <vertex>+                        <position x="-11.9664" y="14.1723" z="-3.22785" />+                        <normal x="-0.988679" y="-0.046412" z="0.142687" />+                        <texcoord u="2.35108" v="-0.947916" />+                    </vertex>+                    <vertex>+                        <position x="-6.20345" y="10.2255" z="5.88095" />+                        <normal x="-0.506675" y="0.62848" z="0.590164" />+                        <texcoord u="2.88121" v="-1.09789" />+                    </vertex>+                    <vertex>+                        <position x="-14.0877" y="17.9606" z="-8.98045" />+                        <normal x="-0.852479" y="0.339768" z="0.397288" />+                        <texcoord u="2.1795" v="-0.997236" />+                    </vertex>+                    <vertex>+                        <position x="-13.4995" y="18.7487" z="-6.99735" />+                        <normal x="-0.940834" y="0.293132" z="0.170016" />+                        <texcoord u="2.25046" v="-1.01858" />+                    </vertex>+                    <vertex>+                        <position x="-4.78013" y="26.3628" z="-2.73345" />+                        <normal x="-0.272872" y="0.960471" z="0.0551008" />+                        <texcoord u="2.41866" v="-1.35775" />+                    </vertex>+                    <vertex>+                        <position x="-4.31822" y="25.9086" z="0.00495338" />+                        <normal x="-0.259349" y="0.923869" z="0.281432" />+                        <texcoord u="2.50015" v="-1.36857" />+                    </vertex>+                    <vertex>+                        <position x="0" y="26.3434" z="0.111553" />+                        <normal x="0" y="0.947964" z="0.318377" />+                        <texcoord u="2.50337" v="-1.5" />+                    </vertex>+                    <vertex>+                        <position x="-3.79914" y="25.114" z="2.42425" />+                        <normal x="-0.217613" y="0.850964" z="0.478021" />+                        <texcoord u="2.57601" v="-1.38089" />+                    </vertex>+                    <vertex>+                        <position x="-6.62857" y="24.0002" z="2.17075" />+                        <normal x="-0.520252" y="0.68091" z="0.51546" />+                        <texcoord u="2.57005" v="-1.28611" />+                    </vertex>+                    <vertex>+                        <position x="-6.61811" y="9.55975" z="6.55265" />+                        <normal x="-0.467161" y="0.745038" z="0.476108" />+                        <texcoord u="2.93243" v="-1.06325" />+                    </vertex>+                    <vertex>+                        <position x="-7.11563" y="8.85725" z="7.22115" />+                        <normal x="-0.48118" y="0.717914" z="0.503056" />+                        <texcoord u="2.98334" v="-1.02372" />+                    </vertex>+                    <vertex>+                        <position x="-3.42773" y="10.9604" z="7.69525" />+                        <normal x="-0.723395" y="0.475126" z="0.500954" />+                        <texcoord u="2.97635" v="-1.28782" />+                    </vertex>+                    <vertex>+                        <position x="-16.4607" y="6.68075" z="-4.01315" />+                        <normal x="-0.847676" y="0.463096" z="0.25882" />+                        <texcoord u="2.27472" v="-0.575953" />+                    </vertex>+                    <vertex>+                        <position x="-14.5039" y="9.20425" z="-3.52585" />+                        <normal x="-0.773603" y="0.553881" z="0.307822" />+                        <texcoord u="2.3086" v="-0.712651" />+                    </vertex>+                    <vertex>+                        <position x="-17.4638" y="22.9962" z="-16.8983" />+                        <normal x="0.236277" y="0.912337" z="0.334385" />+                        <texcoord u="2.05013" v="-1.03507" />+                    </vertex>+                    <vertex>+                        <position x="-19.1229" y="22.3149" z="-16.0287" />+                        <normal x="-0.25287" y="0.689671" z="0.678535" />+                        <texcoord u="2.07002" v="-0.987016" />+                    </vertex>+                    <vertex>+                        <position x="-22.8037" y="25.9199" z="-21.9753" />+                        <normal x="0.180163" y="0.95476" z="0.236588" />+                        <texcoord u="2.01137" v="-0.992946" />+                    </vertex>+                    <vertex>+                        <position x="-21.6266" y="24.239" z="-18.836" />+                        <normal x="-0.228246" y="0.755065" z="0.614638" />+                        <texcoord u="2.04576" v="-0.978463" />+                    </vertex>+                    <vertex>+                        <position x="-20.3171" y="24.6977" z="-19.4055" />+                        <normal x="0.223087" y="0.927224" z="0.300812" />+                        <texcoord u="2.03299" v="-1.01105" />+                    </vertex>+                    <vertex>+                        <position x="-23.6962" y="25.6726" z="-21.6448" />+                        <normal x="-0.309744" y="0.786679" z="0.534036" />+                        <texcoord u="2.01907" v="-0.973491" />+                    </vertex>+                    <vertex>+                        <position x="-21.3814" y="16.9845" z="-21.5312" />+                        <normal x="-0.283958" y="-0.471791" z="-0.834734" />+                        <texcoord u="1.90117" v="-0.905339" />+                    </vertex>+                    <vertex>+                        <position x="-22.0851" y="16.5247" z="-20.8627" />+                        <normal x="-0.792198" y="-0.461265" z="-0.399572" />+                        <texcoord u="1.91385" v="-0.879501" />+                    </vertex>+                    <vertex>+                        <position x="-19.6801" y="13.1145" z="-20.0001" />+                        <normal x="-0.300395" y="-0.403832" z="-0.864108" />+                        <texcoord u="1.85702" v="-0.867303" />+                    </vertex>+                    <vertex>+                        <position x="-17.7963" y="1.08455" z="-13.5947" />+                        <normal x="-0.889398" y="-0.0629075" z="0.452784" />+                        <texcoord u="1.76456" v="-0.537271" />+                    </vertex>+                    <vertex>+                        <position x="-21.9545" y="16.3642" z="-19.9789" />+                        <normal x="-0.843951" y="-0.0495424" z="0.534128" />+                        <texcoord u="1.92854" v="-0.872026" />+                    </vertex>+                    <vertex>+                        <position x="-19.9068" y="21.2948" z="-15.8186" />+                        <normal x="-0.682053" y="0.218284" z="0.697966" />+                        <texcoord u="2.0675" v="-0.955727" />+                    </vertex>+                    <vertex>+                        <position x="-18.4151" y="18.1279" z="-18.0864" />+                        <normal x="-0.773925" y="0.184634" z="0.605764" />+                        <texcoord u="1.96552" v="-0.955812" />+                    </vertex>+                    <vertex>+                        <position x="-15.1167" y="18.2423" z="-10.5502" />+                        <normal x="-0.666846" y="0.378352" z="0.642002" />+                        <texcoord u="2.13992" v="-0.984063" />+                    </vertex>+                    <vertex>+                        <position x="-16.5077" y="17.3982" z="-16.8967" />+                        <normal x="-0.631314" y="-0.613832" z="0.473976" />+                        <texcoord u="1.96723" v="-0.979497" />+                    </vertex>+                    <vertex>+                        <position x="-16.003" y="16.6395" z="-15.9925" />+                        <normal x="-0.890042" y="-0.40842" z="-0.202531" />+                        <texcoord u="1.97312" v="-0.972771" />+                    </vertex>+                    <vertex>+                        <position x="-17.0833" y="16.2137" z="-17.3458" />+                        <normal x="-0.0383253" y="0.000404067" z="0.999265" />+                        <texcoord u="1.94251" v="-0.950952" />+                    </vertex>+                    <vertex>+                        <position x="-17.2679" y="14.303" z="-17.1803" />+                        <normal x="0.0788433" y="0.160615" z="0.983863" />+                        <texcoord u="1.91637" v="-0.91339" />+                    </vertex>+                    <vertex>+                        <position x="-17.3866" y="11.9973" z="-14.6442" />+                        <normal x="-0.853825" y="-0.202326" z="-0.479633" />+                        <texcoord u="1.94369" v="-0.839509" />+                    </vertex>+                    <vertex>+                        <position x="-16.4478" y="15.011" z="-14.9368" />+                        <normal x="-0.799809" y="0.31609" z="-0.510286" />+                        <texcoord u="1.97752" v="-0.924667" />+                    </vertex>+                    <vertex>+                        <position x="-16.3626" y="13.8125" z="-15.9512" />+                        <normal x="-0.837946" y="0.267116" z="-0.475915" />+                        <texcoord u="1.92945" v="-0.914739" />+                    </vertex>+                    <vertex>+                        <position x="-17.1639" y="14.0292" z="-14.9476" />+                        <normal x="-0.792506" y="0.339888" z="-0.50637" />+                        <texcoord u="1.96776" v="-0.888844" />+                    </vertex>+                    <vertex>+                        <position x="-16.0685" y="14.951" z="-15.4373" />+                        <normal x="-0.899916" y="0.229555" z="-0.370751" />+                        <texcoord u="1.95982" v="-0.937728" />+                    </vertex>+                    <vertex>+                        <position x="-15.9745" y="15.0008" z="-16.0002" />+                        <normal x="-0.962673" y="0.162939" z="0.216128" />+                        <texcoord u="1.94529" v="-0.946183" />+                    </vertex>+                    <vertex>+                        <position x="-16.5604" y="15.9643" z="-17.2178" />+                        <normal x="-0.572097" y="0.0987877" z="0.814215" />+                        <texcoord u="1.93696" v="-0.958459" />+                    </vertex>+                    <vertex>+                        <position x="-17.0841" y="11.0056" z="-16.1929" />+                        <normal x="-0.370628" y="0.287791" z="0.883069" />+                        <texcoord u="1.87952" v="-0.845367" />+                    </vertex>+                    <vertex>+                        <position x="-16.9818" y="9.73795" z="-15.7203" />+                        <normal x="-0.403167" y="0.329827" z="0.853622" />+                        <texcoord u="1.86617" v="-0.815307" />+                    </vertex>+                    <vertex>+                        <position x="-15.773" y="22.2099" z="-19.3545" />+                        <normal x="0.624646" y="0.693736" z="-0.358536" />+                        <texcoord u="1.97949" v="-1.07581" />+                    </vertex>+                    <vertex>+                        <position x="-13.452" y="20.5615" z="-17.9853" />+                        <normal x="0.618845" y="0.708163" z="-0.339907" />+                        <texcoord u="1.97141" v="-1.10464" />+                    </vertex>+                    <vertex>+                        <position x="-18.6872" y="23.8702" z="-21.0305" />+                        <normal x="0.617421" y="0.692343" z="-0.373434" />+                        <texcoord u="1.98414" v="-1.04162" />+                    </vertex>+                    <vertex>+                        <position x="-17.7226" y="20.3577" z="-21.842" />+                        <normal x="0.527501" y="0.168609" z="-0.832655" />+                        <texcoord u="1.91648" v="-1.02653" />+                    </vertex>+                    <vertex>+                        <position x="-11.2011" y="9.40545" z="-19.4446" />+                        <normal x="0.0286939" y="-0.029554" z="-0.999151" />+                        <texcoord u="1.69054" v="-1.03371" />+                    </vertex>+                    <vertex>+                        <position x="-13.3256" y="3.73565" z="-18.9894" />+                        <normal x="0.010698" y="-0.177894" z="-0.983992" />+                        <texcoord u="1.5808" v="-0.854959" />+                    </vertex>+                    <vertex>+                        <position x="-20.7536" y="18.4836" z="-22.5178" />+                        <normal x="-0.0894978" y="-0.424171" z="-0.901149" />+                        <texcoord u="1.89861" v="-0.945729" />+                    </vertex>+                    <vertex>+                        <position x="-12.9901" y="13.7092" z="-7.77125" />+                        <normal x="-0.949201" y="0.05144" z="0.310439" />+                        <texcoord u="2.15892" v="-0.929872" />+                    </vertex>+                    <vertex>+                        <position x="-2.05075" y="0.34375" z="15.3221" />+                        <normal x="-0.21492" y="0.178228" z="0.960231" />+                        <texcoord u="3.72142" v="-1.33652" />+                    </vertex>+                    <vertex>+                        <position x="-3.99725" y="0.0739517" z="14.9463" />+                        <normal x="-0.259386" y="0.117351" z="0.958618" />+                        <texcoord u="3.70389" v="-1.17803" />+                    </vertex>+                    <vertex>+                        <position x="-10.1626" y="-0.940052" z="12.3292" />+                        <normal x="-0.575693" y="0.0343424" z="0.816944" />+                        <texcoord u="3.50065" v="-0.675193" />+                    </vertex>+                    <vertex>+                        <position x="-14.1039" y="-2.32515" z="8.77535" />+                        <normal x="-0.735906" y="-0.00285397" z="0.677078" />+                        <texcoord u="3.21882" v="-0.344699" />+                    </vertex>+                    <vertex>+                        <position x="-18.6028" y="-4.50615" z="0.760151" />+                        <normal x="-0.94775" y="0.230859" z="0.22017" />+                        <texcoord u="2.55875" v="-0.0622342" />+                    </vertex>+                    <vertex>+                        <position x="-2.78302" y="-1.83705" z="22.4881" />+                        <normal x="-0.198175" y="0.513138" z="0.835114" />+                        <texcoord u="3.80442" v="-1.33857" />+                    </vertex>+                    <vertex>+                        <position x="-3.04538" y="-5.85195" z="24.0728" />+                        <normal x="-0.219835" y="0.270775" z="0.937205" />+                        <texcoord u="3.92695" v="-1.31948" />+                    </vertex>+                    <vertex>+                        <position x="0" y="-1.84735" z="22.9483" />+                        <normal x="0" y="0.561513" z="0.827468" />+                        <texcoord u="3.81392" v="-1.5" />+                    </vertex>+                    <vertex>+                        <position x="-7.11177" y="-1.92525" z="21.1275" />+                        <normal x="-0.409351" y="0.510503" z="0.756187" />+                        <texcoord u="3.74966" v="-1.07935" />+                    </vertex>+                    <vertex>+                        <position x="-7.31899" y="-6.05905" z="22.8601" />+                        <normal x="-0.423358" y="0.242026" z="0.873036" />+                        <texcoord u="3.87787" v="-1.05885" />+                    </vertex>+                    <vertex>+                        <position x="-11.8163" y="-2.78545" z="17.9285" />+                        <normal x="-0.68867" y="0.476001" z="0.546952" />+                        <texcoord u="3.62942" v="-0.755622" />+                    </vertex>+                    <vertex>+                        <position x="-12.3853" y="-6.88495" z="19.5729" />+                        <normal x="-0.705766" y="0.226795" z="0.671162" />+                        <texcoord u="3.75058" v="-0.708658" />+                    </vertex>+                    <vertex>+                        <position x="-15.4148" y="-4.43635" z="12.2818" />+                        <normal x="-0.770305" y="0.481899" z="0.417618" />+                        <texcoord u="3.38872" v="-0.384572" />+                    </vertex>+                    <vertex>+                        <position x="-16.2356" y="-8.53195" z="14.4059" />+                        <normal x="-0.770964" y="0.285612" z="0.569245" />+                        <texcoord u="3.52743" v="-0.342068" />+                    </vertex>+                    <vertex>+                        <position x="-20.2361" y="-10.073" z="10.6293" />+                        <normal x="-0.683215" y="0.31305" z="0.65971" />+                        <texcoord u="3.23487" v="-0.100949" />+                    </vertex>+                    <vertex>+                        <position x="-24.4876" y="-11.6108" z="7.39545" />+                        <normal x="-0.769017" y="0.193867" z="0.609121" />+                        <texcoord u="2.95942" v="0.0212155" />+                    </vertex>+                    <vertex>+                        <position x="-28.9367" y="-15.9503" z="-4.29955" />+                        <normal x="-0.984726" y="-0.174098" z="0.00234977" />+                        <texcoord u="2.25791" v="0.12934" />+                    </vertex>+                    <vertex>+                        <position x="-28.5714" y="-15.1946" z="-7.36925" />+                        <normal x="-0.944097" y="0.0123302" z="-0.329437" />+                        <texcoord u="2.0933" v="0.0768215" />+                    </vertex>+                    <vertex>+                        <position x="-27.0348" y="-11.2325" z="-7.58755" />+                        <normal x="-0.869684" y="0.483632" z="-0.0987381" />+                        <texcoord u="2.0804" v="-0.00494909" />+                    </vertex>+                    <vertex>+                        <position x="-5.05559" y="-16.053" z="18.6948" />+                        <normal x="0.296332" y="-0.0519146" z="0.953673" />+                        <texcoord u="4.23833" v="-1.0299" />+                    </vertex>+                    <vertex>+                        <position x="-1.53746" y="-19.5388" z="21.1275" />+                        <normal x="-0.334381" y="-0.455164" z="0.825237" />+                        <texcoord u="4.33802" v="-1.36625" />+                    </vertex>+                    <vertex>+                        <position x="-3.53672" y="-21.2971" z="17.9361" />+                        <normal x="-0.643121" y="-0.561446" z="0.520743" />+                        <texcoord u="4.39895" v="-1.12555" />+                    </vertex>+                    <vertex>+                        <position x="-12.9949" y="-21.9924" z="14.8442" />+                        <normal x="-0.435333" y="-0.770824" z="0.465098" />+                        <texcoord u="3.94324" v="-0.236552" />+                    </vertex>+                    <vertex>+                        <position x="-7.89984" y="-23.2787" z="14.6297" />+                        <normal x="0.212262" y="-0.89663" z="0.388587" />+                        <texcoord u="4.2655" v="-0.546652" />+                    </vertex>+                    <vertex>+                        <position x="-1.81685" y="-24.8292" z="14.2316" />+                        <normal x="-0.278269" y="-0.879674" z="0.385667" />+                        <texcoord u="4.56628" v="-1.23621" />+                    </vertex>+                    <vertex>+                        <position x="-1.40103" y="-22.1197" z="18.8079" />+                        <normal x="-0.295232" y="-0.732665" z="0.613221" />+                        <texcoord u="4.43281" v="-1.35602" />+                    </vertex>+                    <vertex>+                        <position x="-13.8417" y="-23.4222" z="10.4444" />+                        <normal x="-0.410188" y="-0.881419" z="0.234192" />+                        <texcoord u="3.70036" v="0.0908087" />+                    </vertex>+                    <vertex>+                        <position x="-10.5229" y="-22.9881" z="14.9232" />+                        <normal x="-0.164153" y="-0.891702" z="0.421808" />+                        <texcoord u="4.10657" v="-0.367142" />+                    </vertex>+                    <vertex>+                        <position x="-4.01478" y="-23.7838" z="13.7502" />+                        <normal x="-0.609768" y="-0.704656" z="0.362826" />+                        <texcoord u="4.48571" v="-0.920211" />+                    </vertex>+                    <vertex>+                        <position x="-4.34429" y="-25.1015" z="9.45935" />+                        <normal x="-0.585217" y="-0.778279" z="0.227604" />+                        <texcoord u="4.48759" v="-0.587182" />+                    </vertex>+                    <vertex>+                        <position x="-14.7588" y="-23.889" z="5.42255" />+                        <normal x="-0.394635" y="-0.913201" z="0.101619" />+                        <texcoord u="3.20242" v="0.411817" />+                    </vertex>+                    <vertex>+                        <position x="-2.16403" y="-26.1854" z="9.71525" />+                        <normal x="-0.238342" y="-0.949088" z="0.205974" />+                        <texcoord u="4.65805" v="-1.0193" />+                    </vertex>+                    <vertex>+                        <position x="-2.59072" y="-26.7385" z="5.28625" />+                        <normal x="-0.267609" y="-0.962654" z="0.0410229" />+                        <texcoord u="4.59004" v="-0.475698" />+                    </vertex>+                    <vertex>+                        <position x="-5.31538" y="-25.4452" z="0.740852" />+                        <normal x="-0.503516" y="-0.86239" z="-0.0524965" />+                        <texcoord u="2.82228" v="0.812233" />+                    </vertex>+                    <vertex>+                        <position x="-4.83824" y="-25.708" z="5.26795" />+                        <normal x="-0.530716" y="-0.84483" z="0.0678483" />+                        <texcoord u="4.18223" v="0.0450034" />+                    </vertex>+                    <vertex>+                        <position x="-2.98994" y="-26.3286" z="0.780052" />+                        <normal x="-0.0677273" y="-0.977985" z="-0.197378" />+                        <texcoord u="-1.89236" v="0.829071" />+                    </vertex>+                    <vertex>+                        <position x="-3.27495" y="-25.3085" z="-4.43005" />+                        <normal x="-0.181603" y="-0.939011" z="-0.292026" />+                        <texcoord u="0.626837" v="-0.115247" />+                    </vertex>+                    <vertex>+                        <position x="0" y="-26.5784" z="0.764153" />+                        <normal x="0" y="-0.978486" z="-0.206313" />+                        <texcoord u="-0.0228733" v="-1.5" />+                    </vertex>+                    <vertex>+                        <position x="-3.74831" y="-23.0326" z="-9.27995" />+                        <normal x="-0.143987" y="-0.893275" z="-0.425825" />+                        <texcoord u="0.484409" v="-0.685872" />+                    </vertex>+                    <vertex>+                        <position x="-4.66407" y="-18.7644" z="-17.395" />+                        <normal x="-0.0903899" y="-0.795529" z="-0.599135" />+                        <texcoord u="0.673192" v="-1.01018" />+                    </vertex>+                    <vertex>+                        <position x="-7.18417" y="-18.5195" z="-17.169" />+                        <normal x="-0.21796" y="-0.789842" z="-0.573273" />+                        <texcoord u="0.772138" v="-0.776997" />+                    </vertex>+                    <vertex>+                        <position x="-15.4709" y="-7.12275" z="-20.3228" />+                        <normal x="-0.419258" y="0.11582" z="-0.900449" />+                        <texcoord u="1.3332" v="-0.611762" />+                    </vertex>+                    <vertex>+                        <position x="-5.33906" y="-3.10435" z="-22.234" />+                        <normal x="-0.0820766" y="0.172275" z="-0.981623" />+                        <texcoord u="1.18014" v="-1.18306" />+                    </vertex>+                    <vertex>+                        <position x="-10.3164" y="18.5438" z="3.24125" />+                        <normal x="-0.713827" y="-0.367805" z="0.595962" />+                        <texcoord u="2.62592" v="-1.0992" />+                    </vertex>+                    <vertex>+                        <position x="-11.6313" y="18.7585" z="1.73775" />+                        <normal x="-0.760406" y="-0.350491" z="0.546753" />+                        <texcoord u="2.56585" v="-1.05926" />+                    </vertex>+                    <vertex>+                        <position x="-0.59864" y="19.0009" z="8.92435" />+                        <normal x="0.153102" y="0.434199" z="0.887711" />+                        <texcoord u="2.84933" v="-1.47657" />+                    </vertex>+                    <vertex>+                        <position x="-3.53867" y="11.3916" z="7.02325" />+                        <normal x="-0.753082" y="0.443003" z="0.486432" />+                        <texcoord u="2.92941" v="-1.28364" />+                    </vertex>+                    <vertex>+                        <position x="-10.7317" y="12.6844" z="1.88725" />+                        <normal x="-0.841107" y="0.0723755" z="0.536004" />+                        <texcoord u="2.59782" v="-0.943762" />+                    </vertex>+                    <vertex>+                        <position x="-10.6711" y="14.6185" z="0.875952" />+                        <normal x="-0.523999" y="0.48969" z="0.696871" />+                        <texcoord u="2.54116" v="-0.998628" />+                    </vertex>+                    <vertex>+                        <position x="-11.0436" y="15.7743" z="-0.0809479" />+                        <normal x="-0.666342" y="0.367226" z="0.648948" />+                        <texcoord u="2.49644" v="-1.01395" />+                    </vertex>+                    <vertex>+                        <position x="-10.8545" y="14.5302" z="0.800053" />+                        <normal x="-0.700557" y="0.388936" z="0.598288" />+                        <texcoord u="2.53761" v="-0.989781" />+                    </vertex>+                    <vertex>+                        <position x="-10.8396" y="15.7626" z="0.0694523" />+                        <normal x="-0.515518" y="0.442661" z="0.733684" />+                        <texcoord u="2.50307" v="-1.02062" />+                    </vertex>+                    <vertex>+                        <position x="-9.26515" y="13.4314" z="3.32625" />+                        <normal x="-0.568471" y="0.568906" z="0.594295" />+                        <texcoord u="2.67007" v="-1.02629" />+                    </vertex>+                    <vertex>+                        <position x="-10.2332" y="13.6222" z="2.19665" />+                        <normal x="-0.700963" y="0.412565" z="0.581757" />+                        <texcoord u="2.60942" v="-0.990276" />+                    </vertex>+                    <vertex>+                        <position x="-10.1022" y="13.7878" z="2.15505" />+                        <normal x="-0.543895" y="0.583149" z="0.603419" />+                        <texcoord u="2.60675" v="-0.999595" />+                    </vertex>+                    <vertex>+                        <position x="-4.60796" y="14.4711" z="6.32125" />+                        <normal x="-0.509418" y="0.619286" z="0.597476" />+                        <texcoord u="2.81868" v="-1.2677" />+                    </vertex>+                    <vertex>+                        <position x="-6.69781" y="13.4952" z="5.50875" />+                        <normal x="-0.510277" y="0.61867" z="0.597381" />+                        <texcoord u="2.78872" v="-1.14896" />+                    </vertex>+                    <vertex>+                        <position x="-8.03593" y="22.6632" z="1.85885" />+                        <normal x="-0.493706" y="0.699301" z="0.516946" />+                        <texcoord u="2.5626" v="-1.22939" />+                    </vertex>+                    <vertex>+                        <position x="-9.00143" y="18.3293" z="4.74485" />+                        <normal x="-0.672949" y="-0.461947" z="0.577706" />+                        <texcoord u="2.68806" v="-1.14324" />+                    </vertex>+                    <vertex>+                        <position x="-22.3096" y="23.5379" z="-18.7383" />+                        <normal x="-0.649446" y="0.32018" z="0.689713" />+                        <texcoord u="2.04385" v="-0.95691" />+                    </vertex>+                    <vertex>+                        <position x="-16.3135" y="15.7067" z="-14.9977" />+                        <normal x="-0.85192" y="-0.0978558" z="-0.514448" />+                        <texcoord u="1.98609" v="-0.941006" />+                    </vertex>+                    <vertex>+                        <position x="-15.9625" y="15.7145" z="-15.5146" />+                        <normal x="-0.953157" y="-0.0414345" z="-0.299626" />+                        <texcoord u="1.96972" v="-0.954412" />+                    </vertex>+                    <vertex>+                        <position x="-15.4708" y="9.19355" z="-14.4496" />+                        <normal x="-0.858474" y="0.0680823" z="0.508318" />+                        <texcoord u="1.86933" v="-0.824754" />+                    </vertex>+                    <vertex>+                        <position x="-17.3823" y="13.1018" z="-14.8318" />+                        <normal x="-0.838505" y="0.0150527" z="-0.544685" />+                        <texcoord u="1.95755" v="-0.864269" />+                    </vertex>+                    <vertex>+                        <position x="-16.1038" y="9.01485" z="-14.8898" />+                        <normal x="-0.491776" y="0.290588" z="0.820801" />+                        <texcoord u="1.86207" v="-0.810057" />+                    </vertex>+                    <vertex>+                        <position x="-15.6575" y="9.50015" z="-14.659" />+                        <normal x="-0.787359" y="-0.144537" z="0.599311" />+                        <texcoord u="1.87246" v="-0.829717" />+                    </vertex>+                    <vertex>+                        <position x="-18.5126" y="17.3629" z="-18.019" />+                        <normal x="-0.816509" y="0.151705" z="0.557044" />+                        <texcoord u="1.95658" v="-0.941699" />+                    </vertex>+                    <vertex>+                        <position x="-7.92624" y="13.2468" z="4.72985" />+                        <normal x="-0.537784" y="0.59213" z="0.600143" />+                        <texcoord u="2.74816" v="-1.08413" />+                    </vertex>+                    <vertex>+                        <position x="-16.7887" y="16.8111" z="-17.2532" />+                        <normal x="-0.251566" y="-0.243177" z="0.936792" />+                        <texcoord u="1.95181" v="-0.966568" />+                    </vertex>+                    <vertex>+                        <position x="-17.7201" y="-4.42425" z="4.03995" />+                        <normal x="-0.871252" y="0.00499211" z="0.490811" />+                        <texcoord u="2.82009" v="-0.0960083" />+                    </vertex>+                    <vertex>+                        <position x="-18.8906" y="-6.07695" z="1.24005" />+                        <normal x="-0.934316" y="0.0016293" z="0.356442" />+                        <texcoord u="2.59807" v="-0.00603926" />+                    </vertex>+                    <vertex>+                        <position x="-2.60947" y="-0.209148" z="21.1147" />+                        <normal x="-0.11181" y="0.879905" z="0.461807" />+                        <texcoord u="3.74833" v="-1.34572" />+                    </vertex>+                    <vertex>+                        <position x="-10.978" y="-1.02245" z="16.8235" />+                        <normal x="-0.570076" y="0.739366" z="0.358262" />+                        <texcoord u="3.58073" v="-0.79478" />+                    </vertex>+                    <vertex>+                        <position x="-6.62373" y="-0.285648" z="19.8155" />+                        <normal x="-0.268708" y="0.863954" z="0.425886" />+                        <texcoord u="3.69584" v="-1.10027" />+                    </vertex>+                    <vertex>+                        <position x="-6.17356" y="-0.902851" z="14.7819" />+                        <normal x="0.0598093" y="0.944428" z="-0.323231" />+                        <texcoord u="3.69479" v="-1.001" />+                    </vertex>+                    <vertex>+                        <position x="-2.26889" y="0.134449" z="18.4304" />+                        <normal x="0.0205818" y="0.994753" z="-0.100213" />+                        <texcoord u="3.73492" v="-1.34797" />+                    </vertex>+                    <vertex>+                        <position x="-1.95831" y="-0.688148" z="15.8656" />+                        <normal x="0.0777439" y="0.949525" z="-0.303904" />+                        <texcoord u="3.77456" v="-1.34268" />+                    </vertex>+                    <vertex>+                        <position x="-6.42022" y="-0.0116501" z="17.2365" />+                        <normal x="-0.016098" y="0.993173" z="-0.115531" />+                        <texcoord u="3.67185" v="-1.06351" />+                    </vertex>+                    <vertex>+                        <position x="-17.8235" y="-4.79515" z="4.29085" />+                        <normal x="0.036091" y="0.881538" z="-0.470732" />+                        <texcoord u="2.84022" v="-0.0867916" />+                    </vertex>+                    <vertex>+                        <position x="-2.02895" y="-0.233551" z="15.3541" />+                        <normal x="-0.237511" y="0.00823728" z="0.97135" />+                        <texcoord u="3.75112" v="-1.33467" />+                    </vertex>+                    <vertex>+                        <position x="-3.97137" y="-0.480049" z="14.9158" />+                        <normal x="-0.261197" y="-0.0998199" z="0.96011" />+                        <texcoord u="3.73183" v="-1.17202" />+                    </vertex>+                    <vertex>+                        <position x="-6.69525" y="-0.774952" z="14.0331" />+                        <normal x="-0.381138" y="-0.178308" z="0.90716" />+                        <texcoord u="3.66394" v="-0.944677" />+                    </vertex>+                    <vertex>+                        <position x="-6.73848" y="-0.257549" z="14.1129" />+                        <normal x="-0.392558" y="0.0711391" z="0.916972" />+                        <texcoord u="3.63984" v="-0.95576" />+                    </vertex>+                    <vertex>+                        <position x="-10.0191" y="-1.41905" z="12.2945" />+                        <normal x="-0.551179" y="-0.208627" z="0.807884" />+                        <texcoord u="3.52404" v="-0.665482" />+                    </vertex>+                    <vertex>+                        <position x="-13.9386" y="-2.82435" z="8.78115" />+                        <normal x="-0.696771" y="-0.19376" z="0.690628" />+                        <texcoord u="3.23831" v="-0.328059" />+                    </vertex>+                    <vertex>+                        <position x="-17.5134" y="-4.90095" z="4.16555" />+                        <normal x="-0.814737" y="-0.202464" z="0.543334" />+                        <texcoord u="2.83819" v="-0.0781462" />+                    </vertex>+                    <vertex>+                        <position x="-18.6784" y="-6.51375" z="1.41545" />+                        <normal x="-0.861373" y="-0.226458" z="0.454702" />+                        <texcoord u="2.61458" v="0.011975" />+                    </vertex>+                    <vertex>+                        <position x="-19.6491" y="-8.16315" z="-1.35965" />+                        <normal x="-0.84128" y="-0.169881" z="0.513213" />+                        <texcoord u="2.39213" v="0.0589365" />+                    </vertex>+                    <vertex>+                        <position x="-20.9089" y="-9.91055" z="-3.70925" />+                        <normal x="-0.897926" y="-0.286787" z="0.333889" />+                        <texcoord u="2.22096" v="0.07292" />+                    </vertex>+                    <vertex>+                        <position x="-21.2313" y="-10.3496" z="-5.89035" />+                        <normal x="-0.916738" y="-0.386833" z="0.0997609" />+                        <texcoord u="2.0724" v="0.0412364" />+                    </vertex>+                    <vertex>+                        <position x="-21.3559" y="-9.98005" z="-7.65665" />+                        <normal x="-0.904309" y="-0.397319" z="-0.156086" />+                        <texcoord u="1.96684" v="-0.0128993" />+                    </vertex>+                    <vertex>+                        <position x="-2.98994" y="-26.3286" z="0.780052" />+                        <normal x="-0.303699" y="-0.949601" z="-0.0776264" />+                        <texcoord u="3.10764" v="0.829071" />+                    </vertex>+                    <vertex>+                        <position x="-3.46299" y="-2.15565" z="13.1283" />+                        <normal x="0.140149" y="-0.897158" z="-0.418886" />+                        <texcoord u="3.82981" v="-1.14922" />+                    </vertex>+                    <vertex>+                        <position x="9.26515" y="13.4314" z="3.32625" />+                        <normal x="0.568471" y="0.568906" z="0.594295" />+                        <texcoord u="2.67007" v="-1.97371" />+                    </vertex>+                    <vertex>+                        <position x="14.0877" y="17.9606" z="-8.98045" />+                        <normal x="0.852479" y="0.339768" z="0.397288" />+                        <texcoord u="2.1795" v="-2.00276" />+                    </vertex>+                    <vertex>+                        <position x="9.37834" y="22.133" z="2.86215" />+                        <normal x="0.254844" y="0.852934" z="0.455586" />+                        <texcoord u="2.59687" v="-1.81741" />+                    </vertex>+                    <vertex>+                        <position x="9.8397" y="21.3858" z="3.35525" />+                        <normal x="0.574001" y="0.509254" z="0.641236" />+                        <texcoord u="2.61621" v="-1.8408" />+                    </vertex>+                    <vertex>+                        <position x="10.8396" y="15.7626" z="0.0694523" />+                        <normal x="0.515518" y="0.442661" z="0.733684" />+                        <texcoord u="2.50307" v="-1.97938" />+                    </vertex>+                    <vertex>+                        <position x="2.98994" y="-26.3286" z="0.780052" />+                        <normal x="0.0677273" y="-0.977985" z="-0.197378" />+                        <texcoord u="-1.89236" v="-3.82907" />+                    </vertex>+                    <vertex>+                        <position x="21.229" y="-4.71865" z="-9.12885" />+                        <normal x="0.612457" y="-0.0359145" z="0.789688" />+                        <texcoord u="1.94288" v="-2.79558" />+                    </vertex>+                    <vertex>+                        <position x="8.46152" y="-2.20505" z="10.6194" />+                        <normal x="-0.183318" y="-0.947703" z="-0.261252" />+                        <texcoord u="3.5778" v="-2.3588" />+                    </vertex>+                </vertexbuffer>+            </geometry>+        </submesh>+        <submesh material="Ogre/Earring" usesharedvertices="false" use32bitindexes="false" operationtype="triangle_list">+            <faces count="400">+                <face v1="0" v2="1" v3="2" />+                <face v1="0" v2="3" v3="1" />+                <face v1="4" v2="5" v3="6" />+                <face v1="4" v2="7" v3="5" />+                <face v1="8" v2="9" v3="10" />+                <face v1="8" v2="11" v3="9" />+                <face v1="12" v2="13" v3="14" />+                <face v1="12" v2="15" v3="13" />+                <face v1="16" v2="17" v3="18" />+                <face v1="16" v2="19" v3="17" />+                <face v1="20" v2="21" v3="22" />+                <face v1="20" v2="23" v3="21" />+                <face v1="24" v2="25" v3="26" />+                <face v1="24" v2="27" v3="25" />+                <face v1="28" v2="29" v3="30" />+                <face v1="28" v2="31" v3="29" />+                <face v1="32" v2="33" v3="34" />+                <face v1="32" v2="35" v3="33" />+                <face v1="36" v2="37" v3="38" />+                <face v1="36" v2="39" v3="37" />+                <face v1="40" v2="41" v3="42" />+                <face v1="40" v2="43" v3="41" />+                <face v1="44" v2="45" v3="46" />+                <face v1="44" v2="47" v3="45" />+                <face v1="48" v2="49" v3="50" />+                <face v1="48" v2="51" v3="49" />+                <face v1="52" v2="53" v3="54" />+                <face v1="52" v2="55" v3="53" />+                <face v1="56" v2="57" v3="58" />+                <face v1="56" v2="59" v3="57" />+                <face v1="60" v2="61" v3="62" />+                <face v1="60" v2="63" v3="61" />+                <face v1="64" v2="65" v3="66" />+                <face v1="64" v2="67" v3="65" />+                <face v1="68" v2="69" v3="70" />+                <face v1="68" v2="71" v3="69" />+                <face v1="72" v2="73" v3="74" />+                <face v1="72" v2="75" v3="73" />+                <face v1="76" v2="77" v3="78" />+                <face v1="76" v2="79" v3="77" />+                <face v1="11" v2="67" v3="64" />+                <face v1="67" v2="11" v3="8" />+                <face v1="15" v2="63" v3="60" />+                <face v1="63" v2="15" v3="12" />+                <face v1="19" v2="59" v3="56" />+                <face v1="59" v2="19" v3="16" />+                <face v1="20" v2="55" v3="23" />+                <face v1="53" v2="55" v3="20" />+                <face v1="27" v2="51" v3="25" />+                <face v1="49" v2="51" v3="27" />+                <face v1="47" v2="31" v3="45" />+                <face v1="47" v2="29" v3="31" />+                <face v1="35" v2="43" v3="33" />+                <face v1="41" v2="43" v3="35" />+                <face v1="79" v2="39" v3="77" />+                <face v1="79" v2="37" v3="39" />+                <face v1="75" v2="3" v3="0" />+                <face v1="75" v2="72" v3="3" />+                <face v1="7" v2="71" v3="68" />+                <face v1="71" v2="7" v3="4" />+                <face v1="80" v2="54" v3="81" />+                <face v1="80" v2="52" v3="54" />+                <face v1="58" v2="82" v3="83" />+                <face v1="58" v2="57" v3="82" />+                <face v1="62" v2="84" v3="85" />+                <face v1="62" v2="61" v3="84" />+                <face v1="66" v2="86" v3="87" />+                <face v1="66" v2="65" v3="86" />+                <face v1="88" v2="69" v3="89" />+                <face v1="88" v2="70" v3="69" />+                <face v1="90" v2="73" v3="91" />+                <face v1="90" v2="74" v3="73" />+                <face v1="76" v2="92" v3="93" />+                <face v1="76" v2="78" v3="92" />+                <face v1="40" v2="94" v3="95" />+                <face v1="40" v2="42" v3="94" />+                <face v1="44" v2="96" v3="97" />+                <face v1="44" v2="46" v3="96" />+                <face v1="98" v2="50" v3="99" />+                <face v1="98" v2="48" v3="50" />+                <face v1="100" v2="10" v3="101" />+                <face v1="100" v2="13" v3="10" />+                <face v1="102" v2="14" v3="103" />+                <face v1="102" v2="17" v3="14" />+                <face v1="21" v2="104" v3="105" />+                <face v1="21" v2="18" v3="104" />+                <face v1="26" v2="106" v3="107" />+                <face v1="26" v2="22" v3="106" />+                <face v1="30" v2="108" v3="109" />+                <face v1="30" v2="24" v3="108" />+                <face v1="110" v2="28" v3="111" />+                <face v1="110" v2="34" v3="28" />+                <face v1="112" v2="32" v3="113" />+                <face v1="112" v2="38" v3="32" />+                <face v1="1" v2="114" v3="115" />+                <face v1="1" v2="36" v3="114" />+                <face v1="5" v2="116" v3="117" />+                <face v1="5" v2="2" v3="116" />+                <face v1="9" v2="118" v3="119" />+                <face v1="9" v2="6" v3="118" />+                <face v1="120" v2="121" v3="122" />+                <face v1="121" v2="120" v3="123" />+                <face v1="124" v2="125" v3="126" />+                <face v1="124" v2="127" v3="125" />+                <face v1="128" v2="129" v3="130" />+                <face v1="131" v2="129" v3="128" />+                <face v1="132" v2="133" v3="134" />+                <face v1="132" v2="135" v3="133" />+                <face v1="136" v2="137" v3="138" />+                <face v1="139" v2="137" v3="136" />+                <face v1="108" v2="140" v3="141" />+                <face v1="107" v2="140" v3="108" />+                <face v1="106" v2="142" v3="143" />+                <face v1="105" v2="142" v3="106" />+                <face v1="144" v2="102" v3="145" />+                <face v1="102" v2="144" v3="104" />+                <face v1="146" v2="100" v3="147" />+                <face v1="100" v2="146" v3="103" />+                <face v1="148" v2="119" v3="149" />+                <face v1="119" v2="148" v3="101" />+                <face v1="150" v2="87" v3="151" />+                <face v1="87" v2="150" v3="89" />+                <face v1="86" v2="152" v3="153" />+                <face v1="85" v2="152" v3="86" />+                <face v1="84" v2="154" v3="155" />+                <face v1="83" v2="154" v3="84" />+                <face v1="156" v2="80" v3="157" />+                <face v1="80" v2="156" v3="82" />+                <face v1="158" v2="98" v3="159" />+                <face v1="98" v2="158" v3="81" />+                <face v1="141" v2="121" v3="160" />+                <face v1="140" v2="121" v3="141" />+                <face v1="143" v2="124" v3="122" />+                <face v1="142" v2="124" v3="143" />+                <face v1="127" v2="145" v3="131" />+                <face v1="145" v2="127" v3="144" />+                <face v1="129" v2="147" v3="134" />+                <face v1="147" v2="129" v3="146" />+                <face v1="132" v2="149" v3="139" />+                <face v1="149" v2="132" v3="148" />+                <face v1="138" v2="151" v3="136" />+                <face v1="151" v2="138" v3="150" />+                <face v1="135" v2="152" v3="133" />+                <face v1="152" v2="135" v3="153" />+                <face v1="130" v2="154" v3="128" />+                <face v1="154" v2="130" v3="155" />+                <face v1="125" v2="157" v3="126" />+                <face v1="157" v2="125" v3="156" />+                <face v1="158" v2="123" v3="120" />+                <face v1="159" v2="123" v3="158" />+                <face v1="161" v2="162" v3="163" />+                <face v1="164" v2="162" v3="161" />+                <face v1="165" v2="166" v3="167" />+                <face v1="168" v2="166" v3="165" />+                <face v1="169" v2="170" v3="171" />+                <face v1="170" v2="169" v3="172" />+                <face v1="173" v2="174" v3="175" />+                <face v1="174" v2="173" v3="176" />+                <face v1="137" v2="177" v3="178" />+                <face v1="177" v2="137" v3="179" />+                <face v1="180" v2="181" v3="182" />+                <face v1="181" v2="180" v3="183" />+                <face v1="184" v2="185" v3="186" />+                <face v1="185" v2="184" v3="187" />+                <face v1="188" v2="189" v3="190" />+                <face v1="189" v2="188" v3="191" />+                <face v1="192" v2="193" v3="194" />+                <face v1="195" v2="193" v3="192" />+                <face v1="196" v2="197" v3="198" />+                <face v1="199" v2="197" v3="196" />+                <face v1="96" v2="164" v3="161" />+                <face v1="95" v2="164" v3="96" />+                <face v1="94" v2="168" v3="165" />+                <face v1="93" v2="168" v3="94" />+                <face v1="172" v2="90" v3="170" />+                <face v1="90" v2="172" v3="92" />+                <face v1="176" v2="88" v3="174" />+                <face v1="88" v2="176" v3="91" />+                <face v1="118" v2="177" v3="179" />+                <face v1="117" v2="177" v3="118" />+                <face v1="116" v2="181" v3="183" />+                <face v1="115" v2="181" v3="116" />+                <face v1="187" v2="112" v3="185" />+                <face v1="112" v2="187" v3="114" />+                <face v1="191" v2="110" v3="189" />+                <face v1="110" v2="191" v3="113" />+                <face v1="111" v2="195" v3="192" />+                <face v1="109" v2="195" v3="111" />+                <face v1="99" v2="199" v3="196" />+                <face v1="97" v2="199" v3="99" />+                <face v1="180" v2="175" v3="178" />+                <face v1="173" v2="175" v3="180" />+                <face v1="171" v2="184" v3="169" />+                <face v1="171" v2="182" v3="184" />+                <face v1="167" v2="186" v3="188" />+                <face v1="167" v2="166" v3="186" />+                <face v1="163" v2="190" v3="194" />+                <face v1="163" v2="162" v3="190" />+                <face v1="193" v2="198" v3="197" />+                <face v1="198" v2="193" v3="160" />+                <face v1="194" v2="197" v3="163" />+                <face v1="197" v2="194" v3="193" />+                <face v1="188" v2="162" v3="167" />+                <face v1="162" v2="188" v3="190" />+                <face v1="169" v2="186" v3="166" />+                <face v1="169" v2="184" v3="186" />+                <face v1="182" v2="173" v3="180" />+                <face v1="171" v2="173" v3="182" />+                <face v1="138" v2="178" v3="175" />+                <face v1="138" v2="137" v3="178" />+                <face v1="109" v2="141" v3="195" />+                <face v1="108" v2="141" v3="109" />+                <face v1="189" v2="111" v3="192" />+                <face v1="111" v2="189" v3="110" />+                <face v1="185" v2="113" v3="191" />+                <face v1="113" v2="185" v3="112" />+                <face v1="115" v2="187" v3="181" />+                <face v1="114" v2="187" v3="115" />+                <face v1="117" v2="183" v3="177" />+                <face v1="116" v2="183" v3="117" />+                <face v1="174" v2="89" v3="150" />+                <face v1="89" v2="174" v3="88" />+                <face v1="170" v2="91" v3="176" />+                <face v1="91" v2="170" v3="90" />+                <face v1="93" v2="172" v3="168" />+                <face v1="92" v2="172" v3="93" />+                <face v1="95" v2="165" v3="164" />+                <face v1="94" v2="165" v3="95" />+                <face v1="97" v2="161" v3="199" />+                <face v1="96" v2="161" v3="97" />+                <face v1="195" v2="160" v3="193" />+                <face v1="141" v2="160" v3="195" />+                <face v1="189" v2="194" v3="190" />+                <face v1="192" v2="194" v3="189" />+                <face v1="186" v2="191" v3="188" />+                <face v1="191" v2="186" v3="185" />+                <face v1="182" v2="187" v3="184" />+                <face v1="187" v2="182" v3="181" />+                <face v1="178" v2="183" v3="180" />+                <face v1="183" v2="178" v3="177" />+                <face v1="175" v2="150" v3="138" />+                <face v1="150" v2="175" v3="174" />+                <face v1="171" v2="176" v3="173" />+                <face v1="176" v2="171" v3="170" />+                <face v1="168" v2="169" v3="166" />+                <face v1="172" v2="169" v3="168" />+                <face v1="164" v2="167" v3="162" />+                <face v1="165" v2="167" v3="164" />+                <face v1="199" v2="163" v3="197" />+                <face v1="161" v2="163" v3="199" />+                <face v1="157" v2="120" v3="126" />+                <face v1="158" v2="120" v3="157" />+                <face v1="128" v2="156" v3="125" />+                <face v1="156" v2="128" v3="154" />+                <face v1="133" v2="155" v3="130" />+                <face v1="155" v2="133" v3="152" />+                <face v1="136" v2="153" v3="135" />+                <face v1="153" v2="136" v3="151" />+                <face v1="139" v2="179" v3="137" />+                <face v1="179" v2="139" v3="149" />+                <face v1="134" v2="148" v3="132" />+                <face v1="148" v2="134" v3="147" />+                <face v1="131" v2="146" v3="129" />+                <face v1="146" v2="131" v3="145" />+                <face v1="142" v2="127" v3="124" />+                <face v1="144" v2="127" v3="142" />+                <face v1="140" v2="122" v3="121" />+                <face v1="143" v2="122" v3="140" />+                <face v1="159" v2="198" v3="123" />+                <face v1="196" v2="198" v3="159" />+                <face v1="157" v2="81" v3="158" />+                <face v1="81" v2="157" v3="80" />+                <face v1="154" v2="82" v3="156" />+                <face v1="82" v2="154" v3="83" />+                <face v1="85" v2="155" v3="152" />+                <face v1="84" v2="155" v3="85" />+                <face v1="151" v2="86" v3="153" />+                <face v1="86" v2="151" v3="87" />+                <face v1="149" v2="118" v3="179" />+                <face v1="118" v2="149" v3="119" />+                <face v1="147" v2="101" v3="148" />+                <face v1="101" v2="147" v3="100" />+                <face v1="145" v2="103" v3="146" />+                <face v1="103" v2="145" v3="102" />+                <face v1="105" v2="144" v3="142" />+                <face v1="104" v2="144" v3="105" />+                <face v1="107" v2="143" v3="140" />+                <face v1="106" v2="143" v3="107" />+                <face v1="159" v2="99" v3="196" />+                <face v1="99" v2="159" v3="98" />+                <face v1="135" v2="139" v3="136" />+                <face v1="132" v2="139" v3="135" />+                <face v1="130" v2="134" v3="133" />+                <face v1="129" v2="134" v3="130" />+                <face v1="125" v2="131" v3="128" />+                <face v1="127" v2="131" v3="125" />+                <face v1="126" v2="122" v3="124" />+                <face v1="122" v2="126" v3="120" />+                <face v1="123" v2="160" v3="121" />+                <face v1="160" v2="123" v3="198" />+                <face v1="6" v2="117" v3="118" />+                <face v1="6" v2="5" v3="117" />+                <face v1="2" v2="115" v3="116" />+                <face v1="2" v2="1" v3="115" />+                <face v1="114" v2="38" v3="112" />+                <face v1="114" v2="36" v3="38" />+                <face v1="113" v2="34" v3="110" />+                <face v1="113" v2="32" v3="34" />+                <face v1="111" v2="30" v3="109" />+                <face v1="111" v2="28" v3="30" />+                <face v1="24" v2="107" v3="108" />+                <face v1="24" v2="26" v3="107" />+                <face v1="22" v2="105" v3="106" />+                <face v1="22" v2="21" v3="105" />+                <face v1="18" v2="102" v3="104" />+                <face v1="18" v2="17" v3="102" />+                <face v1="103" v2="13" v3="100" />+                <face v1="103" v2="14" v3="13" />+                <face v1="10" v2="119" v3="101" />+                <face v1="10" v2="9" v3="119" />+                <face v1="99" v2="44" v3="97" />+                <face v1="99" v2="50" v3="44" />+                <face v1="46" v2="95" v3="96" />+                <face v1="46" v2="40" v3="95" />+                <face v1="42" v2="93" v3="94" />+                <face v1="42" v2="76" v3="93" />+                <face v1="92" v2="74" v3="90" />+                <face v1="92" v2="78" v3="74" />+                <face v1="91" v2="70" v3="88" />+                <face v1="91" v2="73" v3="70" />+                <face v1="69" v2="87" v3="89" />+                <face v1="69" v2="66" v3="87" />+                <face v1="65" v2="85" v3="86" />+                <face v1="65" v2="62" v3="85" />+                <face v1="61" v2="83" v3="84" />+                <face v1="61" v2="58" v3="83" />+                <face v1="82" v2="52" v3="80" />+                <face v1="82" v2="57" v3="52" />+                <face v1="81" v2="48" v3="98" />+                <face v1="81" v2="54" v3="48" />+                <face v1="68" v2="0" v3="7" />+                <face v1="68" v2="75" v3="0" />+                <face v1="39" v2="72" v3="77" />+                <face v1="72" v2="39" v3="3" />+                <face v1="41" v2="37" v3="79" />+                <face v1="41" v2="35" v3="37" />+                <face v1="45" v2="33" v3="43" />+                <face v1="45" v2="31" v3="33" />+                <face v1="49" v2="29" v3="47" />+                <face v1="49" v2="27" v3="29" />+                <face v1="53" v2="25" v3="51" />+                <face v1="53" v2="20" v3="25" />+                <face v1="59" v2="23" v3="55" />+                <face v1="59" v2="16" v3="23" />+                <face v1="12" v2="56" v3="63" />+                <face v1="56" v2="12" v3="19" />+                <face v1="60" v2="8" v3="15" />+                <face v1="60" v2="67" v3="8" />+                <face v1="64" v2="4" v3="11" />+                <face v1="64" v2="71" v3="4" />+                <face v1="78" v2="72" v3="74" />+                <face v1="78" v2="77" v3="72" />+                <face v1="75" v2="70" v3="73" />+                <face v1="75" v2="68" v3="70" />+                <face v1="71" v2="66" v3="69" />+                <face v1="71" v2="64" v3="66" />+                <face v1="67" v2="62" v3="65" />+                <face v1="67" v2="60" v3="62" />+                <face v1="63" v2="58" v3="61" />+                <face v1="63" v2="56" v3="58" />+                <face v1="57" v2="55" v3="52" />+                <face v1="57" v2="59" v3="55" />+                <face v1="54" v2="51" v3="48" />+                <face v1="54" v2="53" v3="51" />+                <face v1="50" v2="47" v3="44" />+                <face v1="50" v2="49" v3="47" />+                <face v1="46" v2="43" v3="40" />+                <face v1="46" v2="45" v3="43" />+                <face v1="41" v2="76" v3="42" />+                <face v1="41" v2="79" v3="76" />+                <face v1="38" v2="35" v3="32" />+                <face v1="38" v2="37" v3="35" />+                <face v1="34" v2="31" v3="28" />+                <face v1="34" v2="33" v3="31" />+                <face v1="30" v2="27" v3="24" />+                <face v1="30" v2="29" v3="27" />+                <face v1="26" v2="20" v3="22" />+                <face v1="26" v2="25" v3="20" />+                <face v1="21" v2="16" v3="18" />+                <face v1="21" v2="23" v3="16" />+                <face v1="17" v2="12" v3="14" />+                <face v1="17" v2="19" v3="12" />+                <face v1="15" v2="10" v3="13" />+                <face v1="15" v2="8" v3="10" />+                <face v1="11" v2="6" v3="9" />+                <face v1="11" v2="4" v3="6" />+                <face v1="7" v2="2" v3="5" />+                <face v1="7" v2="0" v3="2" />+                <face v1="3" v2="36" v3="1" />+                <face v1="3" v2="39" v3="36" />+            </faces>+            <geometry vertexcount="200">+                <vertexbuffer positions="true" normals="true" texture_coord_dimensions_0="2" texture_coords="1">+                    <vertex>+                        <position x="17.6603" y="3.25679" z="-15.6895" />+                        <normal x="0.857565" y="-0.163977" z="0.487539" />+                        <texcoord u="0.400053" v="0.60058" />+                    </vertex>+                    <vertex>+                        <position x="18.0169" y="2.90254" z="-16.7631" />+                        <normal x="0.950532" y="0.310027" z="0.0192607" />+                        <texcoord u="0.356673" v="0.583167" />+                    </vertex>+                    <vertex>+                        <position x="17.8169" y="3.69797" z="-16.3128" />+                        <normal x="0.978373" y="0.202292" z="-0.0431859" />+                        <texcoord u="0.388879" v="0.58202" />+                    </vertex>+                    <vertex>+                        <position x="17.8343" y="2.5568" z="-16.0888" />+                        <normal x="0.806211" y="0.0295866" z="0.590888" />+                        <texcoord u="0.368006" v="0.604665" />+                    </vertex>+                    <vertex>+                        <position x="17.6356" y="4.01355" z="-15.017" />+                        <normal x="0.836256" y="-0.539079" z="0.100352" />+                        <texcoord u="0.43654" v="0.59123" />+                    </vertex>+                    <vertex>+                        <position x="17.7463" y="4.2946" z="-15.858" />+                        <normal x="0.986763" y="0.0949842" z="-0.131439" />+                        <texcoord u="0.413126" v="0.578428" />+                    </vertex>+                    <vertex>+                        <position x="17.8021" y="4.63555" z="-15.4564" />+                        <normal x="0.960257" y="-0.0182057" z="-0.278525" />+                        <texcoord u="0.429663" v="0.573943" />+                    </vertex>+                    <vertex>+                        <position x="17.5978" y="3.76855" z="-15.3022" />+                        <normal x="0.874893" y="-0.336753" z="0.348081" />+                        <texcoord u="0.423235" v="0.595411" />+                    </vertex>+                    <vertex>+                        <position x="18.0891" y="4.23703" z="-14.1394" />+                        <normal x="0.62249" y="-0.69619" z="-0.357526" />+                        <texcoord u="0.469965" v="0.575585" />+                    </vertex>+                    <vertex>+                        <position x="17.9834" y="4.83656" z="-15.001" />+                        <normal x="0.897922" y="-0.0861756" z="-0.431636" />+                        <texcoord u="0.445371" v="0.567521" />+                    </vertex>+                    <vertex>+                        <position x="18.3584" y="4.93603" z="-14.355" />+                        <normal x="0.837622" y="-0.0518885" z="-0.54378" />+                        <texcoord u="0.466459" v="0.556175" />+                    </vertex>+                    <vertex>+                        <position x="17.7667" y="4.15458" z="-14.6918" />+                        <normal x="0.728957" y="-0.663064" z="-0.1702" />+                        <texcoord u="0.4493" v="0.585996" />+                    </vertex>+                    <vertex>+                        <position x="19.5559" y="3.77469" z="-12.4109" />+                        <normal x="0.316388" y="-0.556289" z="-0.768401" />+                        <texcoord u="0.547658" v="0.520339" />+                    </vertex>+                    <vertex>+                        <position x="18.895" y="4.90989" z="-13.5889" />+                        <normal x="0.743356" y="-0.093038" z="-0.662394" />+                        <texcoord u="0.492793" v="0.539189" />+                    </vertex>+                    <vertex>+                        <position x="19.9815" y="4.42709" z="-12.4398" />+                        <normal x="0.6789" y="0.027925" z="-0.733699" />+                        <texcoord u="0.538942" v="0.499688" />+                    </vertex>+                    <vertex>+                        <position x="18.5605" y="4.21704" z="-13.4634" />+                        <normal x="0.487806" y="-0.681453" z="-0.545588" />+                        <texcoord u="0.496924" v="0.559579" />+                    </vertex>+                    <vertex>+                        <position x="21.6644" y="1.96239" z="-11.0012" />+                        <normal x="0.0221289" y="-0.19355" z="-0.980841" />+                        <texcoord u="0.648208" v="0.395137" />+                    </vertex>+                    <vertex>+                        <position x="21.4225" y="3.31049" z="-11.3623" />+                        <normal x="0.501921" y="-0.053821" z="-0.863237" />+                        <texcoord u="0.596768" v="0.430886" />+                    </vertex>+                    <vertex>+                        <position x="22.2678" y="2.44972" z="-10.9229" />+                        <normal x="0.52224" y="0.221914" z="-0.823419" />+                        <texcoord u="0.625105" v="0.383702" />+                    </vertex>+                    <vertex>+                        <position x="20.9153" y="2.71952" z="-11.396" />+                        <normal x="0.0710282" y="-0.500773" z="-0.86266" />+                        <texcoord u="0.616578" v="0.444978" />+                    </vertex>+                    <vertex>+                        <position x="22.5494" y="0.190361" z="-11.357" />+                        <normal x="-0.344301" y="0.397648" z="-0.85049" />+                        <texcoord u="0.667759" v="0.287533" />+                    </vertex>+                    <vertex>+                        <position x="22.9494" y="1.35172" z="-10.947" />+                        <normal x="0.310351" y="0.337386" z="-0.888737" />+                        <texcoord u="0.639686" v="0.329903" />+                    </vertex>+                    <vertex>+                        <position x="23.3108" y="0.357052" z="-11.3461" />+                        <normal x="0.37995" y="0.533077" z="-0.755955" />+                        <texcoord u="0.636178" v="0.277727" />+                    </vertex>+                    <vertex>+                        <position x="22.2463" y="1.02369" z="-11.023" />+                        <normal x="-0.309788" y="0.00547277" z="-0.95079" />+                        <texcoord u="0.666302" v="0.340378" />+                    </vertex>+                    <vertex>+                        <position x="23.2156" y="-1.40306" z="-13.1351" />+                        <normal x="0.303406" y="0.749305" z="-0.588632" />+                        <texcoord u="0.526589" v="0.162473" />+                    </vertex>+                    <vertex>+                        <position x="22.6078" y="-0.668507" z="-12.0754" />+                        <normal x="-0.41918" y="0.657201" z="-0.626399" />+                        <texcoord u="0.641007" v="0.217591" />+                    </vertex>+                    <vertex>+                        <position x="23.3813" y="-0.623928" z="-12.161" />+                        <normal x="0.286022" y="0.659083" z="-0.695558" />+                        <texcoord u="0.602714" v="0.215323" />+                    </vertex>+                    <vertex>+                        <position x="22.4596" y="-1.36745" z="-12.9485" />+                        <normal x="-0.38371" y="0.822422" z="-0.419986" />+                        <texcoord u="0.562346" v="0.149365" />+                    </vertex>+                    <vertex>+                        <position x="22.2135" y="-2.15153" z="-15.313" />+                        <normal x="0.421592" y="0.849191" z="-0.318018" />+                        <texcoord u="0.259003" v="0.219261" />+                    </vertex>+                    <vertex>+                        <position x="22.0996" y="-1.83022" z="-13.9124" />+                        <normal x="-0.300787" y="0.934473" z="-0.190494" />+                        <texcoord u="0.408444" v="0.127123" />+                    </vertex>+                    <vertex>+                        <position x="22.8145" y="-1.91968" z="-14.21" />+                        <normal x="0.398044" y="0.786175" z="-0.472746" />+                        <texcoord u="0.399384" v="0.151276" />+                    </vertex>+                    <vertex>+                        <position x="21.5746" y="-2.0382" z="-14.881" />+                        <normal x="-0.144713" y="0.985888" z="0.0841605" />+                        <texcoord u="0.23393" v="0.214285" />+                    </vertex>+                    <vertex>+                        <position x="20.6241" y="-1.30795" z="-16.8649" />+                        <normal x="0.683207" y="0.729594" z="-0.0303311" />+                        <texcoord u="0.176158" v="0.439395" />+                    </vertex>+                    <vertex>+                        <position x="20.9803" y="-1.8706" z="-15.5998" />+                        <normal x="0.0932356" y="0.921951" z="0.375917" />+                        <texcoord u="0.15689" v="0.343708" />+                    </vertex>+                    <vertex>+                        <position x="21.5043" y="-1.95196" z="-16.1711" />+                        <normal x="0.543111" y="0.825476" z="-0.153689" />+                        <texcoord u="0.186027" v="0.327206" />+                    </vertex>+                    <vertex>+                        <position x="20.2281" y="-1.32124" z="-16.1936" />+                        <normal x="0.360039" y="0.727967" z="0.583468" />+                        <texcoord u="0.155327" v="0.468741" />+                    </vertex>+                    <vertex>+                        <position x="18.6747" y="1.43949" z="-17.1642" />+                        <normal x="0.872145" y="0.452212" z="0.186728" />+                        <texcoord u="0.294098" v="0.570887" />+                    </vertex>+                    <vertex>+                        <position x="19.5252" y="-0.458519" z="-16.4215" />+                        <normal x="0.556036" y="0.49966" z="0.664202" />+                        <texcoord u="0.199419" v="0.544505" />+                    </vertex>+                    <vertex>+                        <position x="19.8272" y="-0.336769" z="-17.1297" />+                        <normal x="0.800181" y="0.598148" z="0.0439204" />+                        <texcoord u="0.210391" v="0.511368" />+                    </vertex>+                    <vertex>+                        <position x="18.4369" y="1.21657" z="-16.4561" />+                        <normal x="0.626576" y="0.246088" z="0.739488" />+                        <texcoord u="0.301026" v="0.599758" />+                    </vertex>+                    <vertex>+                        <position x="19.8837" y="-2.98206" z="-15.0714" />+                        <normal x="-0.675044" y="0.0064191" z="0.73775" />+                        <texcoord u="0.0702022" v="0.523078" />+                    </vertex>+                    <vertex>+                        <position x="19.53" y="-1.76498" z="-15.7199" />+                        <normal x="-0.105179" y="0.38078" z="0.918664" />+                        <texcoord u="0.131185" v="0.57028" />+                    </vertex>+                    <vertex>+                        <position x="19.0035" y="-2.33805" z="-15.7652" />+                        <normal x="-0.586798" y="-0.149897" z="0.795738" />+                        <texcoord u="0.14241" v="0.646119" />+                    </vertex>+                    <vertex>+                        <position x="20.2822" y="-2.31434" z="-15.126" />+                        <normal x="-0.353366" y="0.628227" z="0.693154" />+                        <texcoord u="0.0924775" v="0.427619" />+                    </vertex>+                    <vertex>+                        <position x="21.1939" y="-2.94978" z="-13.1103" />+                        <normal x="-0.895547" y="-0.0337976" z="0.443681" />+                        <texcoord u="0.59988" v="0.0649962" />+                    </vertex>+                    <vertex>+                        <position x="20.8764" y="-2.48194" z="-14.4073" />+                        <normal x="-0.592845" y="0.695636" z="0.405741" />+                        <texcoord u="0.175222" v="0.21174" />+                    </vertex>+                    <vertex>+                        <position x="20.5929" y="-3.18164" z="-14.2133" />+                        <normal x="-0.806798" y="0.0475557" z="0.58891" />+                        <texcoord u="0.13407" v="0.224735" />+                    </vertex>+                    <vertex>+                        <position x="21.4015" y="-2.27396" z="-13.4387" />+                        <normal x="-0.75115" y="0.648273" z="0.124563" />+                        <texcoord u="0.485583" v="0.0732192" />+                    </vertex>+                    <vertex>+                        <position x="21.7607" y="-1.65403" z="-11.0613" />+                        <normal x="-0.974869" y="-0.116" z="0.190194" />+                        <texcoord u="0.781581" v="0.283987" />+                    </vertex>+                    <vertex>+                        <position x="21.7615" y="-1.81118" z="-12.4748" />+                        <normal x="-0.836303" y="0.538477" z="-0.103152" />+                        <texcoord u="0.677858" v="0.152799" />+                    </vertex>+                    <vertex>+                        <position x="21.595" y="-2.43317" z="-12.0354" />+                        <normal x="-0.95172" y="-0.0321488" z="0.305278" />+                        <texcoord u="0.758886" v="0.1903" />+                    </vertex>+                    <vertex>+                        <position x="21.9097" y="-1.11225" z="-11.6016" />+                        <normal x="-0.872821" y="0.37466" z="-0.312751" />+                        <texcoord u="0.73247" v="0.248433" />+                    </vertex>+                    <vertex>+                        <position x="21.3287" y="0.321621" z="-9.8473" />+                        <normal x="-0.908484" y="-0.417909" z="-0.00297968" />+                        <texcoord u="0.745175" v="0.406252" />+                    </vertex>+                    <vertex>+                        <position x="21.8512" y="-0.253368" z="-10.8832" />+                        <normal x="-0.850576" y="0.124336" z="-0.510941" />+                        <texcoord u="0.734757" v="0.324223" />+                    </vertex>+                    <vertex>+                        <position x="21.6901" y="-0.67305" z="-10.2464" />+                        <normal x="-0.966882" y="-0.240936" z="0.0842008" />+                        <texcoord u="0.767826" v="0.353804" />+                    </vertex>+                    <vertex>+                        <position x="21.5482" y="0.579952" z="-10.5493" />+                        <normal x="-0.730745" y="-0.210817" z="-0.649283" />+                        <texcoord u="0.720386" v="0.377888" />+                    </vertex>+                    <vertex>+                        <position x="20.2172" y="2.27579" z="-10.9223" />+                        <normal x="-0.317884" y="-0.763409" z="-0.562278" />+                        <texcoord u="0.655552" v="0.484671" />+                    </vertex>+                    <vertex>+                        <position x="20.6472" y="1.41961" z="-9.82317" />+                        <normal x="-0.763159" y="-0.628745" z="-0.149221" />+                        <texcoord u="0.71175" v="0.460035" />+                    </vertex>+                    <vertex>+                        <position x="19.8019" y="2.28038" z="-10.2626" />+                        <normal x="-0.66736" y="-0.744036" z="0.0322487" />+                        <texcoord u="0.672165" v="0.509468" />+                    </vertex>+                    <vertex>+                        <position x="20.9663" y="1.51865" z="-10.5274" />+                        <normal x="-0.452319" y="-0.511784" z="-0.7304" />+                        <texcoord u="0.69285" v="0.433152" />+                    </vertex>+                    <vertex>+                        <position x="17.8624" y="3.77329" z="-12.9897" />+                        <normal x="0.0393602" y="-0.972792" z="-0.228311" />+                        <texcoord u="0.517753" v="0.593543" />+                    </vertex>+                    <vertex>+                        <position x="18.3609" y="3.39699" z="-11.3401" />+                        <normal x="-0.554365" y="-0.827382" z="0.0901038" />+                        <texcoord u="0.594332" v="0.574212" />+                    </vertex>+                    <vertex>+                        <position x="17.2743" y="3.8798" z="-12.4892" />+                        <normal x="-0.445654" y="-0.873207" z="0.197237" />+                        <texcoord u="0.536173" v="0.608349" />+                    </vertex>+                    <vertex>+                        <position x="18.8578" y="3.33096" z="-11.9372" />+                        <normal x="-0.150896" y="-0.889951" z="-0.430369" />+                        <texcoord u="0.575023" v="0.557619" />+                    </vertex>+                    <vertex>+                        <position x="17.0686" y="3.71084" z="-14.2181" />+                        <normal x="0.278078" y="-0.949351" z="0.146303" />+                        <texcoord u="0.466255" v="0.618464" />+                    </vertex>+                    <vertex>+                        <position x="16.7378" y="3.90593" z="-13.2553" />+                        <normal x="-0.373634" y="-0.876867" z="0.302492" />+                        <texcoord u="0.505167" v="0.623742" />+                    </vertex>+                    <vertex>+                        <position x="16.3628" y="3.80646" z="-13.9013" />+                        <normal x="-0.307693" y="-0.852474" z="0.422627" />+                        <texcoord u="0.480992" v="0.634371" />+                    </vertex>+                    <vertex>+                        <position x="17.3909" y="3.79329" z="-13.6657" />+                        <normal x="0.171639" y="-0.984075" z="-0.0462226" />+                        <texcoord u="0.488431" v="0.608557" />+                    </vertex>+                    <vertex>+                        <position x="16.8997" y="3.3248" z="-14.8285" />+                        <normal x="0.420561" y="-0.61921" z="0.663104" />+                        <texcoord u="0.43945" v="0.629442" />+                    </vertex>+                    <vertex>+                        <position x="16.1815" y="3.60544" z="-14.3567" />+                        <normal x="-0.298954" y="-0.752143" z="0.587288" />+                        <texcoord u="0.463885" v="0.641751" />+                    </vertex>+                    <vertex>+                        <position x="16.1257" y="3.2645" z="-14.7583" />+                        <normal x="-0.232943" y="-0.649147" z="0.724117" />+                        <texcoord u="0.446902" v="0.649386" />+                    </vertex>+                    <vertex>+                        <position x="16.9375" y="3.56981" z="-14.5433" />+                        <normal x="0.383294" y="-0.821281" z="0.422591" />+                        <texcoord u="0.452919" v="0.624007" />+                    </vertex>+                    <vertex>+                        <position x="17.1362" y="2.11307" z="-15.615" />+                        <normal x="0.300281" y="-0.252871" z="0.919722" />+                        <texcoord u="0.384313" v="0.647573" />+                    </vertex>+                    <vertex>+                        <position x="16.1963" y="2.66786" z="-15.2131" />+                        <normal x="-0.244216" y="-0.551892" z="0.797354" />+                        <texcoord u="0.422777" v="0.660052" />+                    </vertex>+                    <vertex>+                        <position x="16.3963" y="1.87245" z="-15.6634" />+                        <normal x="-0.338686" y="-0.453167" z="0.824579" />+                        <texcoord u="0.39046" v="0.672413" />+                    </vertex>+                    <vertex>+                        <position x="16.9622" y="2.81305" z="-15.2158" />+                        <normal x="0.403612" y="-0.448399" z="0.797518" />+                        <texcoord u="0.416369" v="0.637987" />+                    </vertex>+                    <vertex>+                        <position x="18.2065" y="-1.36688" z="-16.03" />+                        <normal x="-0.386405" y="-0.166022" z="0.907264" />+                        <texcoord u="0.218354" v="0.688583" />+                    </vertex>+                    <vertex>+                        <position x="17.7388" y="0.772842" z="-15.9824" />+                        <normal x="0.16641" y="-0.00834939" z="0.986021" />+                        <texcoord u="0.316057" v="0.658621" />+                    </vertex>+                    <vertex>+                        <position x="17.0541" y="0.409389" z="-16.0645" />+                        <normal x="-0.262975" y="-0.294285" z="0.918826" />+                        <texcoord u="0.325445" v="0.690599" />+                    </vertex>+                    <vertex>+                        <position x="18.827" y="-0.902248" z="-15.9477" />+                        <normal x="0.169164" y="0.226068" z="0.959311" />+                        <texcoord u="0.199641" v="0.634704" />+                    </vertex>+                    <vertex>+                        <position x="21.9193" y="0.121368" z="-8.84361" />+                        <normal x="-0.6566" y="-0.432541" z="0.617887" />+                        <texcoord u="0.744545" v="0.395372" />+                    </vertex>+                    <vertex>+                        <position x="22.4238" y="-1.22663" z="-9.36276" />+                        <normal x="-0.629718" y="-0.483576" z="0.607956" />+                        <texcoord u="0.764352" v="0.339204" />+                    </vertex>+                    <vertex>+                        <position x="21.0085" y="1.58113" z="-8.81852" />+                        <normal x="-0.705736" y="-0.414517" z="0.574555" />+                        <texcoord u="0.712437" v="0.451931" />+                    </vertex>+                    <vertex>+                        <position x="19.9162" y="2.70318" z="-9.37708" />+                        <normal x="-0.724762" y="-0.426444" z="0.541171" />+                        <texcoord u="0.673784" v="0.502499" />+                    </vertex>+                    <vertex>+                        <position x="18.2164" y="3.80004" z="-10.8546" />+                        <normal x="-0.731645" y="-0.388492" z="0.560152" />+                        <texcoord u="0.600756" v="0.569833" />+                    </vertex>+                    <vertex>+                        <position x="16.9687" y="4.37745" z="-12.1524" />+                        <normal x="-0.742974" y="-0.381015" z="0.550288" />+                        <texcoord u="0.543231" v="0.604941" />+                    </vertex>+                    <vertex>+                        <position x="16.3137" y="4.42589" z="-13.0724" />+                        <normal x="-0.784661" y="-0.329651" z="0.525012" />+                        <texcoord u="0.510579" v="0.621733" />+                    </vertex>+                    <vertex>+                        <position x="15.8772" y="4.27263" z="-13.8592" />+                        <normal x="-0.783391" y="-0.383706" z="0.488946" />+                        <texcoord u="0.484695" v="0.63375" />+                    </vertex>+                    <vertex>+                        <position x="15.5642" y="3.55719" z="-14.9906" />+                        <normal x="-0.794452" y="-0.424005" z="0.434817" />+                        <texcoord u="0.445096" v="0.65131" />+                    </vertex>+                    <vertex>+                        <position x="15.6384" y="4.00667" z="-14.4602" />+                        <normal x="-0.831992" y="-0.347997" z="0.432073" />+                        <texcoord u="0.464851" v="0.642455" />+                    </vertex>+                    <vertex>+                        <position x="15.8782" y="1.88446" z="-16.0947" />+                        <normal x="-0.781878" y="-0.469954" z="0.409646" />+                        <texcoord u="0.384367" v="0.675134" />+                    </vertex>+                    <vertex>+                        <position x="15.6243" y="2.84992" z="-15.5645" />+                        <normal x="-0.792599" y="-0.441339" z="0.420722" />+                        <texcoord u="0.418825" v="0.662408" />+                    </vertex>+                    <vertex>+                        <position x="16.6471" y="0.21244" z="-16.5278" />+                        <normal x="-0.728267" y="-0.461039" z="0.507021" />+                        <texcoord u="0.318777" v="0.69217" />+                    </vertex>+                    <vertex>+                        <position x="17.877" y="-1.95875" z="-16.7491" />+                        <normal x="-0.785751" y="-0.491771" z="0.375175" />+                        <texcoord u="0.210006" v="0.681054" />+                    </vertex>+                    <vertex>+                        <position x="18.9126" y="-3.21026" z="-16.3952" />+                        <normal x="-0.757173" y="-0.534121" z="0.376037" />+                        <texcoord u="0.132685" v="0.629738" />+                    </vertex>+                    <vertex>+                        <position x="20.0844" y="-4.07355" z="-15.4771" />+                        <normal x="-0.717575" y="-0.571943" z="0.39745" />+                        <texcoord u="0.0672704" v="0.477097" />+                    </vertex>+                    <vertex>+                        <position x="21.0506" y="-4.36614" z="-14.3273" />+                        <normal x="-0.677668" y="-0.593189" z="0.434617" />+                        <texcoord u="0.200904" v="0.156284" />+                    </vertex>+                    <vertex>+                        <position x="21.817" y="-4.09705" z="-12.9458" />+                        <normal x="-0.60651" y="-0.634954" z="0.478517" />+                        <texcoord u="0.603002" v="0.073076" />+                    </vertex>+                    <vertex>+                        <position x="22.5294" y="-2.4684" z="-10.3704" />+                        <normal x="-0.617541" y="-0.531978" z="0.579347" />+                        <texcoord u="0.771376" v="0.270374" />+                    </vertex>+                    <vertex>+                        <position x="22.3463" y="-3.47581" z="-11.5839" />+                        <normal x="-0.589147" y="-0.59747" z="0.543999" />+                        <texcoord u="0.742244" v="0.181895" />+                    </vertex>+                    <vertex>+                        <position x="18.823" y="5.55606" z="-13.4107" />+                        <normal x="0.714337" y="0.545293" z="-0.438609" />+                        <texcoord u="0.499359" v="0.536458" />+                    </vertex>+                    <vertex>+                        <position x="18.1679" y="5.60451" z="-14.3306" />+                        <normal x="0.656476" y="0.608799" z="-0.445424" />+                        <texcoord u="0.471501" v="0.554744" />+                    </vertex>+                    <vertex>+                        <position x="21.7705" y="3.88179" z="-10.6353" />+                        <normal x="0.742969" y="0.513995" z="-0.428727" />+                        <texcoord u="0.605259" v="0.431364" />+                    </vertex>+                    <vertex>+                        <position x="20.0706" y="4.97865" z="-12.1129" />+                        <normal x="0.725791" y="0.537896" z="-0.428829" />+                        <texcoord u="0.54537" v="0.496566" />+                    </vertex>+                    <vertex>+                        <position x="22.8627" y="2.75974" z="-10.0768" />+                        <normal x="0.751172" y="0.503997" z="-0.426296" />+                        <texcoord u="0.634099" v="0.383097" />+                    </vertex>+                    <vertex>+                        <position x="23.7735" y="1.29998" z="-10.1019" />+                        <normal x="0.792399" y="0.488478" z="-0.365366" />+                        <texcoord u="0.649596" v="0.327159" />+                    </vertex>+                    <vertex>+                        <position x="24.2781" y="-0.0480194" z="-10.621" />+                        <normal x="0.818012" y="0.43664" z="-0.374435" />+                        <texcoord u="0.64645" v="0.272394" />+                    </vertex>+                    <vertex>+                        <position x="24.3836" y="-1.28978" z="-11.6286" />+                        <normal x="0.829303" y="0.387677" z="-0.402446" />+                        <texcoord u="0.615332" v="0.211334" />+                    </vertex>+                    <vertex>+                        <position x="24.2005" y="-2.29719" z="-12.8421" />+                        <normal x="0.828958" y="0.352386" z="-0.434342" />+                        <texcoord u="0.544455" v="0.157347" />+                    </vertex>+                    <vertex>+                        <position x="23.6712" y="-2.91844" z="-14.204" />+                        <normal x="0.836726" y="0.280162" z="-0.470531" />+                        <texcoord u="0.420566" v="0.139012" />+                    </vertex>+                    <vertex>+                        <position x="21.9386" y="-2.89493" z="-16.7353" />+                        <normal x="0.73142" y="0.349083" z="-0.585804" />+                        <texcoord u="0.183411" v="0.314045" />+                    </vertex>+                    <vertex>+                        <position x="22.9048" y="-3.18753" z="-15.5856" />+                        <normal x="0.788379" y="0.289114" z="-0.543021" />+                        <texcoord u="0.273341" v="0.197367" />+                    </vertex>+                    <vertex>+                        <position x="19.7313" y="-0.78014" z="-18.0073" />+                        <normal x="0.665499" y="0.430683" z="-0.609609" />+                        <texcoord u="0.203612" v="0.515578" />+                    </vertex>+                    <vertex>+                        <position x="20.7669" y="-2.03165" z="-17.6535" />+                        <normal x="0.692924" y="0.387601" z="-0.607965" />+                        <texcoord u="0.168341" v="0.438308" />+                    </vertex>+                    <vertex>+                        <position x="18.5014" y="1.39106" z="-17.786" />+                        <normal x="0.73634" y="0.469904" z="-0.48682" />+                        <texcoord u="0.287827" v="0.57108" />+                    </vertex>+                    <vertex>+                        <position x="17.7325" y="3.06307" z="-17.3529" />+                        <normal x="0.675439" y="0.456354" z="-0.579244" />+                        <texcoord u="0.350635" v="0.584492" />+                    </vertex>+                    <vertex>+                        <position x="17.4786" y="4.02854" z="-16.8227" />+                        <normal x="0.664762" y="0.485002" z="-0.568211" />+                        <texcoord u="0.384908" v="0.583675" />+                    </vertex>+                    <vertex>+                        <position x="17.4185" y="4.73581" z="-16.2488" />+                        <normal x="0.663339" y="0.502606" z="-0.554408" />+                        <texcoord u="0.411017" v="0.579554" />+                    </vertex>+                    <vertex>+                        <position x="17.4927" y="5.18528" z="-15.7184" />+                        <normal x="0.629472" y="0.56142" z="-0.53719" />+                        <texcoord u="0.430257" v="0.574336" />+                    </vertex>+                    <vertex>+                        <position x="17.7314" y="5.45123" z="-15.1175" />+                        <normal x="0.677534" y="0.545744" z="-0.493063" />+                        <texcoord u="0.448537" v="0.566824" />+                    </vertex>+                    <vertex>+                        <position x="23.6959" y="-1.06179" z="-9.00207" />+                        <normal x="0.396296" y="-0.393889" z="0.829338" />+                        <texcoord u="0.72517" v="0.309023" />+                    </vertex>+                    <vertex>+                        <position x="24.4759" y="-2.12873" z="-10.6102" />+                        <normal x="0.861483" y="-0.371531" z="0.346137" />+                        <texcoord u="0.671426" v="0.222418" />+                    </vertex>+                    <vertex>+                        <position x="24.3358" y="-0.655067" z="-9.43626" />+                        <normal x="0.839468" y="-0.10138" z="0.533869" />+                        <texcoord u="0.690705" v="0.289634" />+                    </vertex>+                    <vertex>+                        <position x="23.836" y="-2.53545" z="-10.176" />+                        <normal x="0.435946" y="-0.647036" z="0.625536" />+                        <texcoord u="0.71702" v="0.239257" />+                    </vertex>+                    <vertex>+                        <position x="23.7319" y="0.971519" z="-8.80246" />+                        <normal x="0.724584" y="0.222127" z="0.652409" />+                        <texcoord u="0.68611" v="0.347558" />+                    </vertex>+                    <vertex>+                        <position x="22.0467" y="2.27077" z="-8.31089" />+                        <normal x="0.132154" y="0.242886" z="0.961011" />+                        <texcoord u="0.688397" v="0.423124" />+                    </vertex>+                    <vertex>+                        <position x="23.0921" y="0.5648" z="-8.36826" />+                        <normal x="0.344909" y="-0.0766363" z="0.935502" />+                        <texcoord u="0.713651" v="0.367349" />+                    </vertex>+                    <vertex>+                        <position x="22.6865" y="2.67749" z="-8.74509" />+                        <normal x="0.600055" y="0.559839" z="0.571414" />+                        <texcoord u="0.665677" v="0.403256" />+                    </vertex>+                    <vertex>+                        <position x="20.7649" y="3.64262" z="-8.9147" />+                        <normal x="-0.15112" y="0.490559" z="0.858205" />+                        <texcoord u="0.654204" v="0.472747" />+                    </vertex>+                    <vertex>+                        <position x="19.4932" y="5.34411" z="-10.9532" />+                        <normal x="0.135573" y="0.897935" z="0.418727" />+                        <texcoord u="0.575593" v="0.51491" />+                    </vertex>+                    <vertex>+                        <position x="18.8533" y="4.9374" z="-10.519" />+                        <normal x="-0.318495" y="0.615667" z="0.720774" />+                        <texcoord u="0.591925" v="0.535874" />+                    </vertex>+                    <vertex>+                        <position x="21.4048" y="4.04934" z="-9.3489" />+                        <normal x="0.311517" y="0.771761" z="0.554385" />+                        <texcoord u="0.634444" v="0.452401" />+                    </vertex>+                    <vertex>+                        <position x="17.1824" y="6.1407" z="-13.6123" />+                        <normal x="-0.17529" y="0.982732" z="0.0592531" />+                        <texcoord u="0.494081" v="0.574474" />+                    </vertex>+                    <vertex>+                        <position x="17.3921" y="5.64185" z="-12.0125" />+                        <normal x="-0.469003" y="0.680397" z="0.563113" />+                        <texcoord u="0.539539" v="0.574085" />+                    </vertex>+                    <vertex>+                        <position x="18.0319" y="6.04856" z="-12.4467" />+                        <normal x="-0.0140267" y="0.964025" z="0.26544" />+                        <texcoord u="0.526333" v="0.554188" />+                    </vertex>+                    <vertex>+                        <position x="16.5426" y="5.73399" z="-13.1781" />+                        <normal x="-0.619245" y="0.702715" z="0.350324" />+                        <texcoord u="0.505818" v="0.594016" />+                    </vertex>+                    <vertex>+                        <position x="15.9484" y="5.53596" z="-14.2392" />+                        <normal x="-0.738763" y="0.662441" z="0.124101" />+                        <texcoord u="0.47712" v="0.608515" />+                    </vertex>+                    <vertex>+                        <position x="16.2436" y="5.51537" z="-15.5816" />+                        <normal x="-0.407325" y="0.819716" z="-0.402681" />+                        <texcoord u="0.441659" v="0.599321" />+                    </vertex>+                    <vertex>+                        <position x="15.6037" y="5.10865" z="-15.1474" />+                        <normal x="-0.823542" y="0.553287" z="-0.125112" />+                        <texcoord u="0.451944" v="0.619531" />+                    </vertex>+                    <vertex>+                        <position x="16.5883" y="5.94268" z="-14.6734" />+                        <normal x="-0.307961" y="0.938402" z="-0.156719" />+                        <texcoord u="0.466313" v="0.588897" />+                    </vertex>+                    <vertex>+                        <position x="24.6168" y="-1.75635" z="-11.0985" />+                        <normal x="0.998964" y="0.0191388" z="-0.0412789" />+                        <texcoord u="0.640973" v="0.214423" />+                    </vertex>+                    <vertex>+                        <position x="24.3904" y="-2.90633" z="-12.5094" />+                        <normal x="0.975797" y="-0.120854" z="-0.182248" />+                        <texcoord u="0.569593" v="0.15115" />+                    </vertex>+                    <vertex>+                        <position x="23.917" y="1.17635" z="-9.38275" />+                        <normal x="0.894067" y="0.421813" z="0.150726" />+                        <texcoord u="0.667015" v="0.335679" />+                    </vertex>+                    <vertex>+                        <position x="24.4882" y="-0.358608" z="-9.97881" />+                        <normal x="0.975808" y="0.204841" z="0.0764151" />+                        <texcoord u="0.667164" v="0.278811" />+                    </vertex>+                    <vertex>+                        <position x="22.9166" y="2.79998" z="-9.33615" />+                        <normal x="0.784053" y="0.616734" z="0.0700033" />+                        <texcoord u="0.649455" v="0.391524" />+                    </vertex>+                    <vertex>+                        <position x="21.6974" y="4.08939" z="-9.92498" />+                        <normal x="0.621569" y="0.777904" z="0.0922897" />+                        <texcoord u="0.619697" v="0.44047" />+                    </vertex>+                    <vertex>+                        <position x="19.856" y="5.31856" z="-11.4873" />+                        <normal x="0.502672" y="0.864475" z="0.00210929" />+                        <texcoord u="0.561239" v="0.503794" />+                    </vertex>+                    <vertex>+                        <position x="18.4655" y="5.98089" z="-12.9159" />+                        <normal x="0.407913" y="0.90727" z="-0.102314" />+                        <texcoord u="0.513699" v="0.543545" />+                    </vertex>+                    <vertex>+                        <position x="17.6805" y="6.05858" z="-14.0001" />+                        <normal x="0.299189" y="0.923889" z="-0.238567" />+                        <texcoord u="0.483179" v="0.563283" />+                    </vertex>+                    <vertex>+                        <position x="17.1381" y="5.87505" z="-14.9713" />+                        <normal x="0.212616" y="0.900632" z="-0.37902" />+                        <texcoord u="0.457114" v="0.576932" />+                    </vertex>+                    <vertex>+                        <position x="15.4362" y="4.62961" z="-14.7982" />+                        <normal x="-0.975775" y="0.11134" z="0.188326" />+                        <texcoord u="0.458982" v="0.632219" />+                    </vertex>+                    <vertex>+                        <position x="15.7377" y="4.98492" z="-14.021" />+                        <normal x="-0.914687" y="0.188403" z="0.357565" />+                        <texcoord u="0.481818" v="0.622142" />+                    </vertex>+                    <vertex>+                        <position x="17.0651" y="5.09076" z="-11.9657" />+                        <normal x="-0.748781" y="0.196274" z="0.63309" />+                        <texcoord u="0.543893" v="0.58961" />+                    </vertex>+                    <vertex>+                        <position x="16.2801" y="5.16845" z="-13.0498" />+                        <normal x="-0.831985" y="0.26116" z="0.489485" />+                        <texcoord u="0.509999" v="0.608423" />+                    </vertex>+                    <vertex>+                        <position x="20.297" y="3.19925" z="-8.97471" />+                        <normal x="-0.55089" y="0.0489221" z="0.833143" />+                        <texcoord u="0.665601" v="0.487883" />+                    </vertex>+                    <vertex>+                        <position x="18.4556" y="4.42843" z="-10.537" />+                        <normal x="-0.642975" y="0.153425" z="0.750362" />+                        <texcoord u="0.598876" v="0.552611" />+                    </vertex>+                    <vertex>+                        <position x="21.5162" y="1.90984" z="-8.38588" />+                        <normal x="-0.373704" y="-0.0942492" z="0.922747" />+                        <texcoord u="0.702178" v="0.437695" />+                    </vertex>+                    <vertex>+                        <position x="22.5166" y="0.286221" z="-8.43247" />+                        <normal x="-0.198689" y="-0.308738" z="0.930163" />+                        <texcoord u="0.730922" v="0.381574" />+                    </vertex>+                    <vertex>+                        <position x="23.0878" y="-1.24874" z="-9.02854" />+                        <normal x="-0.14062" y="-0.560103" z="0.816401" />+                        <texcoord u="0.74693" v="0.323724" />+                    </vertex>+                    <vertex>+                        <position x="23.2164" y="-2.64647" z="-10.1483" />+                        <normal x="-0.109395" y="-0.720855" z="0.684398" />+                        <texcoord u="0.746423" v="0.253555" />+                    </vertex>+                    <vertex>+                        <position x="24.2161" y="-3.37781" z="-12.163" />+                        <normal x="0.820274" y="-0.557243" z="0.12896" />+                        <texcoord u="0.602027" v="0.147373" />+                    </vertex>+                    <vertex>+                        <position x="21.5257" y="-4.81991" z="-14.6757" />+                        <normal x="-0.333278" y="-0.921567" z="0.199098" />+                        <texcoord u="0.217078" v="0.158408" />+                    </vertex>+                    <vertex>+                        <position x="20.8524" y="-4.55545" z="-16.465" />+                        <normal x="-0.101421" y="-0.917241" z="-0.385206" />+                        <texcoord u="0.103934" v="0.386832" />+                    </vertex>+                    <vertex>+                        <position x="22.0166" y="-4.90101" z="-15.0731" />+                        <normal x="0.133681" y="-0.984142" z="-0.11659" />+                        <texcoord u="0.227327" v="0.168988" />+                    </vertex>+                    <vertex>+                        <position x="20.4266" y="-4.49175" z="-15.9879" />+                        <normal x="-0.491982" y="-0.870335" z="0.0216946" />+                        <texcoord u="0.0820928" v="0.427164" />+                    </vertex>+                    <vertex>+                        <position x="19.1277" y="-3.55053" z="-17.0205" />+                        <normal x="-0.658394" y="-0.745106" z="-0.106462" />+                        <texcoord u="0.126105" v="0.587158" />+                    </vertex>+                    <vertex>+                        <position x="18.2419" y="-2.12544" z="-18.0358" />+                        <normal x="-0.588768" y="-0.524185" z="-0.615291" />+                        <texcoord u="0.190338" v="0.615457" />+                    </vertex>+                    <vertex>+                        <position x="19.4896" y="-3.57508" z="-17.555" />+                        <normal x="-0.351143" y="-0.736433" z="-0.578243" />+                        <texcoord u="0.127468" v="0.543325" />+                    </vertex>+                    <vertex>+                        <position x="17.9501" y="-2.16634" z="-17.4594" />+                        <normal x="-0.805223" y="-0.568695" z="-0.167931" />+                        <texcoord u="0.197787" v="0.650319" />+                    </vertex>+                    <vertex>+                        <position x="16.8228" y="0.295193" z="-17.8598" />+                        <normal x="-0.719069" y="-0.29258" z="-0.630346" />+                        <texcoord u="0.287966" v="0.649498" />+                    </vertex>+                    <vertex>+                        <position x="15.7257" y="2.02849" z="-16.8081" />+                        <normal x="-0.94165" y="-0.311894" z="-0.126562" />+                        <texcoord u="0.368518" v="0.663438" />+                    </vertex>+                    <vertex>+                        <position x="15.9057" y="2.24373" z="-17.386" />+                        <normal x="-0.789504" y="-0.0676971" z="-0.610001" />+                        <texcoord u="0.355764" v="0.64686" />+                    </vertex>+                    <vertex>+                        <position x="16.5936" y="0.171619" z="-17.2683" />+                        <normal x="-0.889659" y="-0.449655" z="-0.079486" />+                        <texcoord u="0.30112" v="0.673361" />+                    </vertex>+                    <vertex>+                        <position x="15.5591" y="3.48573" z="-16.7333" />+                        <normal x="-0.851084" y="0.16216" z="-0.499359" />+                        <texcoord u="0.394967" v="0.638713" />+                    </vertex>+                    <vertex>+                        <position x="15.3311" y="4.05526" z="-15.4911" />+                        <normal x="-0.998843" y="-0.0236083" z="0.04189" />+                        <texcoord u="0.435861" v="0.641761" />+                    </vertex>+                    <vertex>+                        <position x="15.4711" y="4.44478" z="-15.9647" />+                        <normal x="-0.86324" y="0.368044" z="-0.345487" />+                        <texcoord u="0.426113" v="0.629241" />+                    </vertex>+                    <vertex>+                        <position x="15.4098" y="3.17883" z="-16.196" />+                        <normal x="-0.985871" y="-0.157911" z="-0.0558833" />+                        <texcoord u="0.406221" v="0.652561" />+                    </vertex>+                    <vertex>+                        <position x="16.7315" y="4.9454" z="-16.4414" />+                        <normal x="0.114355" y="0.717249" z="-0.68737" />+                        <texcoord u="0.412768" v="0.592708" />+                    </vertex>+                    <vertex>+                        <position x="16.111" y="4.8515" z="-16.3989" />+                        <normal x="-0.434539" y="0.646359" z="-0.627213" />+                        <texcoord u="0.416087" v="0.607747" />+                    </vertex>+                    <vertex>+                        <position x="16.8366" y="5.51975" z="-15.7485" />+                        <normal x="0.0835404" y="0.846677" z="-0.525509" />+                        <texcoord u="0.435423" v="0.58592" />+                    </vertex>+                    <vertex>+                        <position x="16.199" y="3.89245" z="-17.1675" />+                        <normal x="-0.412724" y="0.448419" z="-0.79283" />+                        <texcoord u="0.385066" v="0.614869" />+                    </vertex>+                    <vertex>+                        <position x="17.1261" y="2.91863" z="-17.7584" />+                        <normal x="0.175294" y="0.44343" z="-0.879" />+                        <texcoord u="0.345939" v="0.600447" />+                    </vertex>+                    <vertex>+                        <position x="16.5455" y="2.65044" z="-17.8202" />+                        <normal x="-0.343569" y="0.225979" z="-0.911534" />+                        <texcoord u="0.346067" v="0.619135" />+                    </vertex>+                    <vertex>+                        <position x="16.8102" y="4.06896" z="-17.1463" />+                        <normal x="0.132238" y="0.586521" z="-0.799066" />+                        <texcoord u="0.383328" v="0.598278" />+                    </vertex>+                    <vertex>+                        <position x="17.4626" y="0.701908" z="-18.294" />+                        <normal x="-0.254948" y="0.0239813" z="-0.966657" />+                        <texcoord u="0.279594" v="0.612879" />+                    </vertex>+                    <vertex>+                        <position x="19.3505" y="-1.27621" z="-18.4097" />+                        <normal x="0.324044" y="0.149098" z="-0.934219" />+                        <texcoord u="0.195259" v="0.537854" />+                    </vertex>+                    <vertex>+                        <position x="18.8818" y="-1.71872" z="-18.47" />+                        <normal x="-0.14188" y="-0.23514" z="-0.96155" />+                        <texcoord u="0.189777" v="0.566701" />+                    </vertex>+                    <vertex>+                        <position x="17.994" y="1.06175" z="-18.2186" />+                        <normal x="0.268795" y="0.305392" z="-0.913501" />+                        <texcoord u="0.281133" v="0.589752" />+                    </vertex>+                    <vertex>+                        <position x="20.1295" y="-3.16837" z="-17.9892" />+                        <normal x="0.153128" y="-0.487996" z="-0.859309" />+                        <texcoord u="0.140584" v="0.487844" />+                    </vertex>+                    <vertex>+                        <position x="21.827" y="-3.60162" z="-16.9382" />+                        <normal x="0.647219" y="-0.191588" z="-0.737836" />+                        <texcoord u="0.163858" v="0.324423" />+                    </vertex>+                    <vertex>+                        <position x="21.4923" y="-4.14873" z="-16.8992" />+                        <normal x="0.339995" y="-0.687373" z="-0.641811" />+                        <texcoord u="0.139834" v="0.344143" />+                    </vertex>+                    <vertex>+                        <position x="20.5281" y="-2.66041" z="-17.9707" />+                        <normal x="0.478395" y="-0.0225278" z="-0.877856" />+                        <texcoord u="0.154155" v="0.458153" />+                    </vertex>+                    <vertex>+                        <position x="22.9261" y="-3.92977" z="-15.626" />+                        <normal x="0.811747" y="-0.259956" z="-0.522962" />+                        <texcoord u="0.263794" v="0.188073" />+                    </vertex>+                    <vertex>+                        <position x="23.5711" y="-4.19719" z="-13.8811" />+                        <normal x="0.738545" y="-0.663091" z="-0.121913" />+                        <texcoord u="0.446321" v="0.106434" />+                    </vertex>+                    <vertex>+                        <position x="22.6565" y="-4.4943" z="-15.5073" />+                        <normal x="0.584927" y="-0.700653" z="-0.40859" />+                        <texcoord u="0.248339" v="0.181087" />+                    </vertex>+                    <vertex>+                        <position x="23.7922" y="-3.64159" z="-14.0797" />+                        <normal x="0.915727" y="-0.191094" z="-0.353449" />+                        <texcoord u="0.432059" v="0.123631" />+                    </vertex>+                    <vertex>+                        <position x="22.99" y="-3.79647" z="-11.5591" />+                        <normal x="-0.0712962" y="-0.848469" z="0.52442" />+                        <texcoord u="0.70382" v="0.164322" />+                    </vertex>+                    <vertex>+                        <position x="22.9312" y="-4.6039" z="-13.4469" />+                        <normal x="0.311695" y="-0.937134" z="0.156924" />+                        <texcoord u="0.492026" v="0.0820755" />+                    </vertex>+                    <vertex>+                        <position x="23.5762" y="-3.78452" z="-11.7288" />+                        <normal x="0.412893" y="-0.818329" z="0.399822" />+                        <texcoord u="0.660548" v="0.151937" />+                    </vertex>+                    <vertex>+                        <position x="22.3918" y="-4.53172" z="-13.1294" />+                        <normal x="-0.208312" y="-0.901095" z="0.380308" />+                        <texcoord u="0.546131" v="0.0726784" />+                    </vertex>+                </vertexbuffer>+            </geometry>+        </submesh>+        <submesh material="Ogre/Tusks" usesharedvertices="false" use32bitindexes="false" operationtype="triangle_list">+            <faces count="676">+                <face v1="0" v2="1" v3="2" />+                <face v1="2" v2="3" v3="0" />+                <face v1="4" v2="5" v3="2" />+                <face v1="2" v2="1" v3="4" />+                <face v1="6" v2="3" v3="2" />+                <face v1="2" v2="5" v3="6" />+                <face v1="7" v2="8" v3="9" />+                <face v1="9" v2="10" v3="7" />+                <face v1="0" v2="3" v3="9" />+                <face v1="9" v2="8" v3="0" />+                <face v1="6" v2="10" v3="9" />+                <face v1="9" v2="3" v3="6" />+                <face v1="11" v2="12" v3="13" />+                <face v1="13" v2="14" v3="11" />+                <face v1="7" v2="10" v3="13" />+                <face v1="13" v2="12" v3="7" />+                <face v1="6" v2="14" v3="13" />+                <face v1="13" v2="10" v3="6" />+                <face v1="15" v2="16" v3="17" />+                <face v1="17" v2="18" v3="15" />+                <face v1="11" v2="14" v3="17" />+                <face v1="17" v2="16" v3="11" />+                <face v1="6" v2="18" v3="17" />+                <face v1="17" v2="14" v3="6" />+                <face v1="19" v2="20" v3="21" />+                <face v1="21" v2="22" v3="19" />+                <face v1="15" v2="18" v3="21" />+                <face v1="21" v2="20" v3="15" />+                <face v1="6" v2="22" v3="21" />+                <face v1="21" v2="18" v3="6" />+                <face v1="23" v2="24" v3="25" />+                <face v1="25" v2="26" v3="23" />+                <face v1="19" v2="22" v3="25" />+                <face v1="25" v2="24" v3="19" />+                <face v1="6" v2="26" v3="25" />+                <face v1="25" v2="22" v3="6" />+                <face v1="27" v2="28" v3="29" />+                <face v1="29" v2="30" v3="27" />+                <face v1="23" v2="26" v3="29" />+                <face v1="29" v2="28" v3="23" />+                <face v1="6" v2="30" v3="29" />+                <face v1="29" v2="26" v3="6" />+                <face v1="31" v2="32" v3="33" />+                <face v1="33" v2="34" v3="31" />+                <face v1="27" v2="30" v3="33" />+                <face v1="33" v2="32" v3="27" />+                <face v1="6" v2="34" v3="33" />+                <face v1="33" v2="30" v3="6" />+                <face v1="35" v2="36" v3="37" />+                <face v1="37" v2="38" v3="35" />+                <face v1="31" v2="34" v3="37" />+                <face v1="37" v2="36" v3="31" />+                <face v1="6" v2="38" v3="37" />+                <face v1="37" v2="34" v3="6" />+                <face v1="4" v2="39" v3="40" />+                <face v1="40" v2="5" v3="4" />+                <face v1="35" v2="38" v3="40" />+                <face v1="40" v2="39" v3="35" />+                <face v1="6" v2="5" v3="40" />+                <face v1="40" v2="38" v3="6" />+                <face v1="41" v2="42" v3="43" />+                <face v1="43" v2="44" v3="41" />+                <face v1="45" v2="46" v3="43" />+                <face v1="43" v2="42" v3="45" />+                <face v1="47" v2="44" v3="43" />+                <face v1="43" v2="46" v3="47" />+                <face v1="45" v2="48" v3="49" />+                <face v1="49" v2="46" v3="45" />+                <face v1="50" v2="51" v3="49" />+                <face v1="49" v2="48" v3="50" />+                <face v1="47" v2="46" v3="49" />+                <face v1="49" v2="51" v3="47" />+                <face v1="52" v2="53" v3="54" />+                <face v1="54" v2="55" v3="52" />+                <face v1="56" v2="57" v3="54" />+                <face v1="54" v2="53" v3="56" />+                <face v1="58" v2="55" v3="54" />+                <face v1="54" v2="57" v3="58" />+                <face v1="52" v2="59" v3="60" />+                <face v1="60" v2="53" v3="52" />+                <face v1="61" v2="62" v3="60" />+                <face v1="60" v2="59" v3="61" />+                <face v1="56" v2="53" v3="60" />+                <face v1="60" v2="62" v3="56" />+                <face v1="63" v2="64" v3="65" />+                <face v1="65" v2="66" v3="63" />+                <face v1="67" v2="68" v3="65" />+                <face v1="65" v2="64" v3="67" />+                <face v1="69" v2="66" v3="65" />+                <face v1="65" v2="68" v3="69" />+                <face v1="63" v2="70" v3="71" />+                <face v1="71" v2="64" v3="63" />+                <face v1="72" v2="73" v3="71" />+                <face v1="71" v2="70" v3="72" />+                <face v1="67" v2="64" v3="71" />+                <face v1="71" v2="73" v3="67" />+                <face v1="74" v2="75" v3="76" />+                <face v1="76" v2="77" v3="74" />+                <face v1="78" v2="79" v3="76" />+                <face v1="76" v2="75" v3="78" />+                <face v1="80" v2="77" v3="76" />+                <face v1="76" v2="79" v3="80" />+                <face v1="74" v2="81" v3="82" />+                <face v1="82" v2="75" v3="74" />+                <face v1="83" v2="84" v3="82" />+                <face v1="82" v2="81" v3="83" />+                <face v1="78" v2="75" v3="82" />+                <face v1="82" v2="84" v3="78" />+                <face v1="74" v2="85" v3="86" />+                <face v1="86" v2="81" v3="74" />+                <face v1="87" v2="88" v3="86" />+                <face v1="86" v2="85" v3="87" />+                <face v1="83" v2="81" v3="86" />+                <face v1="86" v2="88" v3="83" />+                <face v1="74" v2="89" v3="90" />+                <face v1="90" v2="85" v3="74" />+                <face v1="91" v2="92" v3="90" />+                <face v1="90" v2="89" v3="91" />+                <face v1="87" v2="85" v3="90" />+                <face v1="90" v2="92" v3="87" />+                <face v1="74" v2="93" v3="94" />+                <face v1="94" v2="89" v3="74" />+                <face v1="95" v2="96" v3="94" />+                <face v1="94" v2="93" v3="95" />+                <face v1="91" v2="89" v3="94" />+                <face v1="94" v2="96" v3="91" />+                <face v1="74" v2="97" v3="98" />+                <face v1="98" v2="93" v3="74" />+                <face v1="99" v2="100" v3="98" />+                <face v1="98" v2="97" v3="99" />+                <face v1="95" v2="93" v3="98" />+                <face v1="98" v2="100" v3="95" />+                <face v1="74" v2="101" v3="102" />+                <face v1="102" v2="97" v3="74" />+                <face v1="103" v2="104" v3="102" />+                <face v1="102" v2="101" v3="103" />+                <face v1="99" v2="97" v3="102" />+                <face v1="102" v2="104" v3="99" />+                <face v1="74" v2="105" v3="106" />+                <face v1="106" v2="101" v3="74" />+                <face v1="107" v2="108" v3="106" />+                <face v1="106" v2="105" v3="107" />+                <face v1="103" v2="101" v3="106" />+                <face v1="106" v2="108" v3="103" />+                <face v1="74" v2="109" v3="110" />+                <face v1="110" v2="105" v3="74" />+                <face v1="111" v2="112" v3="110" />+                <face v1="110" v2="109" v3="111" />+                <face v1="107" v2="105" v3="110" />+                <face v1="110" v2="112" v3="107" />+                <face v1="74" v2="77" v3="113" />+                <face v1="113" v2="109" v3="74" />+                <face v1="80" v2="114" v3="113" />+                <face v1="113" v2="77" v3="80" />+                <face v1="111" v2="109" v3="113" />+                <face v1="113" v2="114" v3="111" />+                <face v1="115" v2="116" v3="117" />+                <face v1="117" v2="118" v3="115" />+                <face v1="119" v2="120" v3="117" />+                <face v1="117" v2="116" v3="119" />+                <face v1="121" v2="118" v3="117" />+                <face v1="117" v2="120" v3="121" />+                <face v1="119" v2="122" v3="123" />+                <face v1="123" v2="120" v3="119" />+                <face v1="124" v2="125" v3="123" />+                <face v1="123" v2="122" v3="124" />+                <face v1="121" v2="120" v3="123" />+                <face v1="123" v2="125" v3="121" />+                <face v1="126" v2="127" v3="128" />+                <face v1="128" v2="129" v3="126" />+                <face v1="130" v2="131" v3="128" />+                <face v1="128" v2="127" v3="130" />+                <face v1="132" v2="129" v3="128" />+                <face v1="128" v2="131" v3="132" />+                <face v1="132" v2="133" v3="134" />+                <face v1="134" v2="129" v3="132" />+                <face v1="135" v2="136" v3="134" />+                <face v1="134" v2="133" v3="135" />+                <face v1="126" v2="129" v3="134" />+                <face v1="134" v2="136" v3="126" />+                <face v1="137" v2="138" v3="139" />+                <face v1="139" v2="140" v3="137" />+                <face v1="141" v2="142" v3="139" />+                <face v1="139" v2="138" v3="141" />+                <face v1="143" v2="140" v3="139" />+                <face v1="139" v2="142" v3="143" />+                <face v1="143" v2="144" v3="145" />+                <face v1="145" v2="140" v3="143" />+                <face v1="146" v2="147" v3="145" />+                <face v1="145" v2="144" v3="146" />+                <face v1="137" v2="140" v3="145" />+                <face v1="145" v2="147" v3="137" />+                <face v1="148" v2="149" v3="150" />+                <face v1="150" v2="151" v3="148" />+                <face v1="146" v2="144" v3="150" />+                <face v1="150" v2="149" v3="146" />+                <face v1="143" v2="152" v3="150" />+                <face v1="150" v2="144" v3="143" />+                <face v1="153" v2="151" v3="150" />+                <face v1="150" v2="152" v3="153" />+                <face v1="146" v2="149" v3="154" />+                <face v1="154" v2="155" v3="146" />+                <face v1="148" v2="156" v3="154" />+                <face v1="154" v2="149" v3="148" />+                <face v1="157" v2="158" v3="154" />+                <face v1="154" v2="156" v3="157" />+                <face v1="130" v2="155" v3="154" />+                <face v1="154" v2="158" v3="130" />+                <face v1="130" v2="158" v3="159" />+                <face v1="159" v2="131" v3="130" />+                <face v1="157" v2="160" v3="159" />+                <face v1="159" v2="158" v3="157" />+                <face v1="161" v2="162" v3="159" />+                <face v1="159" v2="160" v3="161" />+                <face v1="132" v2="131" v3="159" />+                <face v1="159" v2="162" v3="132" />+                <face v1="163" v2="164" v3="165" />+                <face v1="165" v2="166" v3="163" />+                <face v1="132" v2="162" v3="165" />+                <face v1="165" v2="164" v3="132" />+                <face v1="161" v2="167" v3="165" />+                <face v1="165" v2="162" v3="161" />+                <face v1="168" v2="166" v3="165" />+                <face v1="165" v2="167" v3="168" />+                <face v1="169" v2="170" v3="171" />+                <face v1="171" v2="172" v3="169" />+                <face v1="163" v2="166" v3="171" />+                <face v1="171" v2="170" v3="163" />+                <face v1="168" v2="173" v3="171" />+                <face v1="171" v2="166" v3="168" />+                <face v1="174" v2="172" v3="171" />+                <face v1="171" v2="173" v3="174" />+                <face v1="175" v2="176" v3="177" />+                <face v1="177" v2="178" v3="175" />+                <face v1="169" v2="172" v3="177" />+                <face v1="177" v2="176" v3="169" />+                <face v1="174" v2="179" v3="177" />+                <face v1="177" v2="172" v3="174" />+                <face v1="180" v2="178" v3="177" />+                <face v1="177" v2="179" v3="180" />+                <face v1="175" v2="178" v3="181" />+                <face v1="181" v2="182" v3="175" />+                <face v1="180" v2="183" v3="181" />+                <face v1="181" v2="178" v3="180" />+                <face v1="184" v2="185" v3="181" />+                <face v1="181" v2="183" v3="184" />+                <face v1="186" v2="182" v3="181" />+                <face v1="181" v2="185" v3="186" />+                <face v1="187" v2="188" v3="189" />+                <face v1="189" v2="190" v3="187" />+                <face v1="124" v2="191" v3="189" />+                <face v1="189" v2="188" v3="124" />+                <face v1="186" v2="185" v3="189" />+                <face v1="189" v2="191" v3="186" />+                <face v1="184" v2="190" v3="189" />+                <face v1="189" v2="185" v3="184" />+                <face v1="192" v2="193" v3="194" />+                <face v1="194" v2="195" v3="192" />+                <face v1="121" v2="125" v3="194" />+                <face v1="194" v2="193" v3="121" />+                <face v1="124" v2="188" v3="194" />+                <face v1="194" v2="125" v3="124" />+                <face v1="187" v2="195" v3="194" />+                <face v1="194" v2="188" v3="187" />+                <face v1="153" v2="152" v3="196" />+                <face v1="196" v2="197" v3="153" />+                <face v1="143" v2="198" v3="196" />+                <face v1="196" v2="152" v3="143" />+                <face v1="121" v2="193" v3="196" />+                <face v1="196" v2="198" v3="121" />+                <face v1="192" v2="197" v3="196" />+                <face v1="196" v2="193" v3="192" />+                <face v1="111" v2="114" v3="199" />+                <face v1="199" v2="200" v3="111" />+                <face v1="80" v2="201" v3="199" />+                <face v1="199" v2="114" v3="80" />+                <face v1="202" v2="203" v3="199" />+                <face v1="199" v2="201" v3="202" />+                <face v1="204" v2="200" v3="199" />+                <face v1="199" v2="203" v3="204" />+                <face v1="47" v2="205" v3="206" />+                <face v1="206" v2="44" v3="47" />+                <face v1="56" v2="62" v3="206" />+                <face v1="206" v2="205" v3="56" />+                <face v1="61" v2="207" v3="206" />+                <face v1="206" v2="62" v3="61" />+                <face v1="41" v2="44" v3="206" />+                <face v1="206" v2="207" v3="41" />+                <face v1="111" v2="200" v3="208" />+                <face v1="208" v2="112" v3="111" />+                <face v1="204" v2="209" v3="208" />+                <face v1="208" v2="200" v3="204" />+                <face v1="210" v2="211" v3="208" />+                <face v1="208" v2="209" v3="210" />+                <face v1="107" v2="112" v3="208" />+                <face v1="208" v2="211" v3="107" />+                <face v1="107" v2="211" v3="212" />+                <face v1="212" v2="108" v3="107" />+                <face v1="210" v2="213" v3="212" />+                <face v1="212" v2="211" v3="210" />+                <face v1="214" v2="215" v3="212" />+                <face v1="212" v2="213" v3="214" />+                <face v1="103" v2="108" v3="212" />+                <face v1="212" v2="215" v3="103" />+                <face v1="216" v2="217" v3="218" />+                <face v1="218" v2="219" v3="216" />+                <face v1="52" v2="55" v3="218" />+                <face v1="218" v2="217" v3="52" />+                <face v1="58" v2="220" v3="218" />+                <face v1="218" v2="55" v3="58" />+                <face v1="221" v2="219" v3="218" />+                <face v1="218" v2="220" v3="221" />+                <face v1="222" v2="223" v3="224" />+                <face v1="224" v2="225" v3="222" />+                <face v1="99" v2="104" v3="224" />+                <face v1="224" v2="223" v3="99" />+                <face v1="103" v2="215" v3="224" />+                <face v1="224" v2="104" v3="103" />+                <face v1="214" v2="225" v3="224" />+                <face v1="224" v2="215" v3="214" />+                <face v1="216" v2="219" v3="226" />+                <face v1="226" v2="227" v3="216" />+                <face v1="221" v2="228" v3="226" />+                <face v1="226" v2="219" v3="221" />+                <face v1="229" v2="230" v3="226" />+                <face v1="226" v2="228" v3="229" />+                <face v1="231" v2="227" v3="226" />+                <face v1="226" v2="230" v3="231" />+                <face v1="232" v2="233" v3="234" />+                <face v1="234" v2="235" v3="232" />+                <face v1="95" v2="100" v3="234" />+                <face v1="234" v2="233" v3="95" />+                <face v1="99" v2="223" v3="234" />+                <face v1="234" v2="100" v3="99" />+                <face v1="222" v2="235" v3="234" />+                <face v1="234" v2="223" v3="222" />+                <face v1="231" v2="230" v3="236" />+                <face v1="236" v2="237" v3="231" />+                <face v1="229" v2="238" v3="236" />+                <face v1="236" v2="230" v3="229" />+                <face v1="239" v2="240" v3="236" />+                <face v1="236" v2="238" v3="239" />+                <face v1="241" v2="237" v3="236" />+                <face v1="236" v2="240" v3="241" />+                <face v1="242" v2="243" v3="244" />+                <face v1="244" v2="245" v3="242" />+                <face v1="91" v2="96" v3="244" />+                <face v1="244" v2="243" v3="91" />+                <face v1="95" v2="233" v3="244" />+                <face v1="244" v2="96" v3="95" />+                <face v1="232" v2="245" v3="244" />+                <face v1="244" v2="233" v3="232" />+                <face v1="241" v2="240" v3="246" />+                <face v1="246" v2="247" v3="241" />+                <face v1="239" v2="248" v3="246" />+                <face v1="246" v2="240" v3="239" />+                <face v1="249" v2="250" v3="246" />+                <face v1="246" v2="248" v3="249" />+                <face v1="251" v2="247" v3="246" />+                <face v1="246" v2="250" v3="251" />+                <face v1="87" v2="92" v3="252" />+                <face v1="252" v2="253" v3="87" />+                <face v1="91" v2="243" v3="252" />+                <face v1="252" v2="92" v3="91" />+                <face v1="242" v2="254" v3="252" />+                <face v1="252" v2="243" v3="242" />+                <face v1="255" v2="253" v3="252" />+                <face v1="252" v2="254" v3="255" />+                <face v1="67" v2="73" v3="256" />+                <face v1="256" v2="257" v3="67" />+                <face v1="72" v2="258" v3="256" />+                <face v1="256" v2="73" v3="72" />+                <face v1="251" v2="250" v3="256" />+                <face v1="256" v2="258" v3="251" />+                <face v1="249" v2="257" v3="256" />+                <face v1="256" v2="250" v3="249" />+                <face v1="83" v2="88" v3="259" />+                <face v1="259" v2="260" v3="83" />+                <face v1="87" v2="253" v3="259" />+                <face v1="259" v2="88" v3="87" />+                <face v1="255" v2="261" v3="259" />+                <face v1="259" v2="253" v3="255" />+                <face v1="262" v2="260" v3="259" />+                <face v1="259" v2="261" v3="262" />+                <face v1="262" v2="263" v3="264" />+                <face v1="264" v2="260" v3="262" />+                <face v1="265" v2="266" v3="264" />+                <face v1="264" v2="263" v3="265" />+                <face v1="78" v2="84" v3="264" />+                <face v1="264" v2="266" v3="78" />+                <face v1="83" v2="260" v3="264" />+                <face v1="264" v2="84" v3="83" />+                <face v1="50" v2="48" v3="267" />+                <face v1="267" v2="268" v3="50" />+                <face v1="45" v2="269" v3="267" />+                <face v1="267" v2="48" v3="45" />+                <face v1="63" v2="66" v3="267" />+                <face v1="267" v2="269" v3="63" />+                <face v1="69" v2="268" v3="267" />+                <face v1="267" v2="66" v3="69" />+                <face v1="80" v2="79" v3="270" />+                <face v1="270" v2="201" v3="80" />+                <face v1="78" v2="266" v3="270" />+                <face v1="270" v2="79" v3="78" />+                <face v1="265" v2="271" v3="270" />+                <face v1="270" v2="266" v3="265" />+                <face v1="202" v2="201" v3="270" />+                <face v1="270" v2="271" v3="202" />+                <face v1="63" v2="269" v3="272" />+                <face v1="272" v2="273" v3="63" />+                <face v1="45" v2="274" v3="272" />+                <face v1="272" v2="269" v3="45" />+                <face v1="202" v2="271" v3="272" />+                <face v1="272" v2="274" v3="202" />+                <face v1="265" v2="273" v3="272" />+                <face v1="272" v2="271" v3="265" />+                <face v1="72" v2="70" v3="275" />+                <face v1="275" v2="276" v3="72" />+                <face v1="63" v2="273" v3="275" />+                <face v1="275" v2="70" v3="63" />+                <face v1="265" v2="263" v3="275" />+                <face v1="275" v2="273" v3="265" />+                <face v1="262" v2="276" v3="275" />+                <face v1="275" v2="263" v3="262" />+                <face v1="251" v2="258" v3="277" />+                <face v1="277" v2="278" v3="251" />+                <face v1="72" v2="276" v3="277" />+                <face v1="277" v2="258" v3="72" />+                <face v1="262" v2="261" v3="277" />+                <face v1="277" v2="276" v3="262" />+                <face v1="255" v2="278" v3="277" />+                <face v1="277" v2="261" v3="255" />+                <face v1="255" v2="254" v3="279" />+                <face v1="279" v2="278" v3="255" />+                <face v1="242" v2="280" v3="279" />+                <face v1="279" v2="254" v3="242" />+                <face v1="241" v2="247" v3="279" />+                <face v1="279" v2="280" v3="241" />+                <face v1="251" v2="278" v3="279" />+                <face v1="279" v2="247" v3="251" />+                <face v1="232" v2="281" v3="282" />+                <face v1="282" v2="245" v3="232" />+                <face v1="231" v2="237" v3="282" />+                <face v1="282" v2="281" v3="231" />+                <face v1="241" v2="280" v3="282" />+                <face v1="282" v2="237" v3="241" />+                <face v1="242" v2="245" v3="282" />+                <face v1="282" v2="280" v3="242" />+                <face v1="222" v2="283" v3="284" />+                <face v1="284" v2="235" v3="222" />+                <face v1="216" v2="227" v3="284" />+                <face v1="284" v2="283" v3="216" />+                <face v1="231" v2="281" v3="284" />+                <face v1="284" v2="227" v3="231" />+                <face v1="232" v2="235" v3="284" />+                <face v1="284" v2="281" v3="232" />+                <face v1="214" v2="285" v3="286" />+                <face v1="286" v2="225" v3="214" />+                <face v1="52" v2="217" v3="286" />+                <face v1="286" v2="285" v3="52" />+                <face v1="216" v2="283" v3="286" />+                <face v1="286" v2="217" v3="216" />+                <face v1="222" v2="225" v3="286" />+                <face v1="286" v2="283" v3="222" />+                <face v1="214" v2="213" v3="287" />+                <face v1="287" v2="285" v3="214" />+                <face v1="210" v2="288" v3="287" />+                <face v1="287" v2="213" v3="210" />+                <face v1="61" v2="59" v3="287" />+                <face v1="287" v2="288" v3="61" />+                <face v1="52" v2="285" v3="287" />+                <face v1="287" v2="59" v3="52" />+                <face v1="210" v2="209" v3="289" />+                <face v1="289" v2="288" v3="210" />+                <face v1="204" v2="290" v3="289" />+                <face v1="289" v2="209" v3="204" />+                <face v1="41" v2="207" v3="289" />+                <face v1="289" v2="290" v3="41" />+                <face v1="61" v2="288" v3="289" />+                <face v1="289" v2="207" v3="61" />+                <face v1="45" v2="42" v3="291" />+                <face v1="291" v2="274" v3="45" />+                <face v1="41" v2="290" v3="291" />+                <face v1="291" v2="42" v3="41" />+                <face v1="204" v2="203" v3="291" />+                <face v1="291" v2="290" v3="204" />+                <face v1="202" v2="274" v3="291" />+                <face v1="291" v2="203" v3="202" />+                <face v1="192" v2="292" v3="293" />+                <face v1="293" v2="197" v3="192" />+                <face v1="35" v2="39" v3="293" />+                <face v1="293" v2="292" v3="35" />+                <face v1="4" v2="294" v3="293" />+                <face v1="293" v2="39" v3="4" />+                <face v1="153" v2="197" v3="293" />+                <face v1="293" v2="294" v3="153" />+                <face v1="121" v2="198" v3="295" />+                <face v1="295" v2="118" v3="121" />+                <face v1="143" v2="142" v3="295" />+                <face v1="295" v2="198" v3="143" />+                <face v1="141" v2="296" v3="295" />+                <face v1="295" v2="142" v3="141" />+                <face v1="115" v2="118" v3="295" />+                <face v1="295" v2="296" v3="115" />+                <face v1="35" v2="292" v3="297" />+                <face v1="297" v2="36" v3="35" />+                <face v1="192" v2="195" v3="297" />+                <face v1="297" v2="292" v3="192" />+                <face v1="187" v2="298" v3="297" />+                <face v1="297" v2="195" v3="187" />+                <face v1="31" v2="36" v3="297" />+                <face v1="297" v2="298" v3="31" />+                <face v1="184" v2="299" v3="300" />+                <face v1="300" v2="190" v3="184" />+                <face v1="27" v2="32" v3="300" />+                <face v1="300" v2="299" v3="27" />+                <face v1="31" v2="298" v3="300" />+                <face v1="300" v2="32" v3="31" />+                <face v1="187" v2="190" v3="300" />+                <face v1="300" v2="298" v3="187" />+                <face v1="186" v2="191" v3="301" />+                <face v1="301" v2="302" v3="186" />+                <face v1="124" v2="122" v3="301" />+                <face v1="301" v2="191" v3="124" />+                <face v1="119" v2="303" v3="301" />+                <face v1="301" v2="122" v3="119" />+                <face v1="304" v2="302" v3="301" />+                <face v1="301" v2="303" v3="304" />+                <face v1="180" v2="305" v3="306" />+                <face v1="306" v2="183" v3="180" />+                <face v1="23" v2="28" v3="306" />+                <face v1="306" v2="305" v3="23" />+                <face v1="27" v2="299" v3="306" />+                <face v1="306" v2="28" v3="27" />+                <face v1="184" v2="183" v3="306" />+                <face v1="306" v2="299" v3="184" />+                <face v1="304" v2="307" v3="308" />+                <face v1="308" v2="302" v3="304" />+                <face v1="309" v2="310" v3="308" />+                <face v1="308" v2="307" v3="309" />+                <face v1="175" v2="182" v3="308" />+                <face v1="308" v2="310" v3="175" />+                <face v1="186" v2="302" v3="308" />+                <face v1="308" v2="182" v3="186" />+                <face v1="19" v2="24" v3="311" />+                <face v1="311" v2="312" v3="19" />+                <face v1="23" v2="305" v3="311" />+                <face v1="311" v2="24" v3="23" />+                <face v1="180" v2="179" v3="311" />+                <face v1="311" v2="305" v3="180" />+                <face v1="174" v2="312" v3="311" />+                <face v1="311" v2="179" v3="174" />+                <face v1="309" v2="313" v3="314" />+                <face v1="314" v2="310" v3="309" />+                <face v1="315" v2="316" v3="314" />+                <face v1="314" v2="313" v3="315" />+                <face v1="169" v2="176" v3="314" />+                <face v1="314" v2="316" v3="169" />+                <face v1="175" v2="310" v3="314" />+                <face v1="314" v2="176" v3="175" />+                <face v1="15" v2="20" v3="317" />+                <face v1="317" v2="318" v3="15" />+                <face v1="19" v2="312" v3="317" />+                <face v1="317" v2="20" v3="19" />+                <face v1="174" v2="173" v3="317" />+                <face v1="317" v2="312" v3="174" />+                <face v1="168" v2="318" v3="317" />+                <face v1="317" v2="173" v3="168" />+                <face v1="315" v2="319" v3="320" />+                <face v1="320" v2="316" v3="315" />+                <face v1="321" v2="322" v3="320" />+                <face v1="320" v2="319" v3="321" />+                <face v1="163" v2="170" v3="320" />+                <face v1="320" v2="322" v3="163" />+                <face v1="169" v2="316" v3="320" />+                <face v1="320" v2="170" v3="169" />+                <face v1="11" v2="16" v3="323" />+                <face v1="323" v2="324" v3="11" />+                <face v1="15" v2="318" v3="323" />+                <face v1="323" v2="16" v3="15" />+                <face v1="168" v2="167" v3="323" />+                <face v1="323" v2="318" v3="168" />+                <face v1="161" v2="324" v3="323" />+                <face v1="323" v2="167" v3="161" />+                <face v1="135" v2="133" v3="325" />+                <face v1="325" v2="326" v3="135" />+                <face v1="132" v2="164" v3="325" />+                <face v1="325" v2="133" v3="132" />+                <face v1="163" v2="322" v3="325" />+                <face v1="325" v2="164" v3="163" />+                <face v1="321" v2="326" v3="325" />+                <face v1="325" v2="322" v3="321" />+                <face v1="161" v2="160" v3="327" />+                <face v1="327" v2="324" v3="161" />+                <face v1="157" v2="328" v3="327" />+                <face v1="327" v2="160" v3="157" />+                <face v1="7" v2="12" v3="327" />+                <face v1="327" v2="328" v3="7" />+                <face v1="11" v2="324" v3="327" />+                <face v1="327" v2="12" v3="11" />+                <face v1="157" v2="156" v3="329" />+                <face v1="329" v2="328" v3="157" />+                <face v1="148" v2="330" v3="329" />+                <face v1="329" v2="156" v3="148" />+                <face v1="0" v2="8" v3="329" />+                <face v1="329" v2="330" v3="0" />+                <face v1="7" v2="328" v3="329" />+                <face v1="329" v2="8" v3="7" />+                <face v1="130" v2="127" v3="331" />+                <face v1="331" v2="155" v3="130" />+                <face v1="126" v2="332" v3="331" />+                <face v1="331" v2="127" v3="126" />+                <face v1="137" v2="147" v3="331" />+                <face v1="331" v2="332" v3="137" />+                <face v1="146" v2="155" v3="331" />+                <face v1="331" v2="147" v3="146" />+                <face v1="153" v2="294" v3="333" />+                <face v1="333" v2="151" v3="153" />+                <face v1="4" v2="1" v3="333" />+                <face v1="333" v2="294" v3="4" />+                <face v1="0" v2="330" v3="333" />+                <face v1="333" v2="1" v3="0" />+                <face v1="148" v2="151" v3="333" />+                <face v1="333" v2="330" v3="148" />+                <face v1="115" v2="296" v3="334" />+                <face v1="334" v2="116" v3="115" />+                <face v1="141" v2="138" v3="334" />+                <face v1="334" v2="296" v3="141" />+                <face v1="137" v2="332" v3="334" />+                <face v1="334" v2="138" v3="137" />+                <face v1="126" v2="136" v3="334" />+                <face v1="334" v2="332" v3="126" />+                <face v1="135" v2="326" v3="334" />+                <face v1="334" v2="136" v3="135" />+                <face v1="321" v2="335" v3="334" />+                <face v1="334" v2="326" v3="321" />+                <face v1="119" v2="116" v3="334" />+                <face v1="334" v2="335" v3="119" />+                <face v1="315" v2="313" v3="336" />+                <face v1="336" v2="319" v3="315" />+                <face v1="309" v2="307" v3="336" />+                <face v1="336" v2="313" v3="309" />+                <face v1="304" v2="303" v3="336" />+                <face v1="336" v2="307" v3="304" />+                <face v1="119" v2="335" v3="336" />+                <face v1="336" v2="303" v3="119" />+                <face v1="321" v2="319" v3="336" />+                <face v1="336" v2="335" v3="321" />+                <face v1="56" v2="205" v3="337" />+                <face v1="337" v2="57" v3="56" />+                <face v1="47" v2="51" v3="337" />+                <face v1="337" v2="205" v3="47" />+                <face v1="50" v2="268" v3="337" />+                <face v1="337" v2="51" v3="50" />+                <face v1="69" v2="68" v3="337" />+                <face v1="337" v2="268" v3="69" />+                <face v1="67" v2="338" v3="337" />+                <face v1="337" v2="68" v3="67" />+                <face v1="58" v2="57" v3="337" />+                <face v1="337" v2="338" v3="58" />+                <face v1="249" v2="339" v3="340" />+                <face v1="340" v2="257" v3="249" />+                <face v1="221" v2="220" v3="340" />+                <face v1="340" v2="339" v3="221" />+                <face v1="58" v2="338" v3="340" />+                <face v1="340" v2="220" v3="58" />+                <face v1="67" v2="257" v3="340" />+                <face v1="340" v2="338" v3="67" />+                <face v1="239" v2="238" v3="341" />+                <face v1="341" v2="248" v3="239" />+                <face v1="229" v2="228" v3="341" />+                <face v1="341" v2="238" v3="229" />+                <face v1="221" v2="339" v3="341" />+                <face v1="341" v2="228" v3="221" />+                <face v1="249" v2="248" v3="341" />+                <face v1="341" v2="339" v3="249" />+            </faces>+            <geometry vertexcount="342">+                <vertexbuffer positions="true" normals="true" texture_coord_dimensions_0="2" texture_coords="1">+                    <vertex>+                        <position x="20.9628" y="1.59116" z="-1.58712" />+                        <normal x="0.0987719" y="0.0256437" z="0.99478" />+                        <texcoord u="0.518397" v="0.294559" />+                    </vertex>+                    <vertex>+                        <position x="21.3618" y="1.63277" z="-1.71953" />+                        <normal x="0.467176" y="0.175259" z="0.866621" />+                        <texcoord u="0.516829" v="0.29396" />+                    </vertex>+                    <vertex>+                        <position x="20.765" y="2.86816" z="-1.6614" />+                        <normal x="0.450366" y="0.2455" z="0.858429" />+                        <texcoord u="0.517039" v="0.303748" />+                    </vertex>+                    <vertex>+                        <position x="20.4107" y="3.05931" z="-1.57305" />+                        <normal x="0.0842457" y="0.126276" z="0.988411" />+                        <texcoord u="0.517977" v="0.305984" />+                    </vertex>+                    <vertex>+                        <position x="21.6305" y="1.82929" z="-2.00194" />+                        <normal x="0.696226" y="0.306684" z="0.64901" />+                        <texcoord u="0.513885" v="0.294611" />+                    </vertex>+                    <vertex>+                        <position x="20.8076" y="3.1902" z="-1.82375" />+                        <normal x="0.639143" y="0.406348" z="0.652976" />+                        <texcoord u="0.515317" v="0.305727" />+                    </vertex>+                    <vertex>+                        <position x="19.8503" y="4.38511" z="-1.84644" />+                        <normal x="-0.236961" y="0.910458" z="0.338992" />+                        <texcoord u="0.514968" v="0.316344" />+                    </vertex>+                    <vertex>+                        <position x="20.1937" y="1.51587" z="-1.84308" />+                        <normal x="-0.618424" y="-0.159225" z="0.769544" />+                        <texcoord u="0.516421" v="0.295462" />+                    </vertex>+                    <vertex>+                        <position x="20.5886" y="1.46761" z="-1.63314" />+                        <normal x="-0.298043" y="-0.0979443" z="0.949514" />+                        <texcoord u="0.518284" v="0.294425" />+                    </vertex>+                    <vertex>+                        <position x="20.2464" y="2.77707" z="-1.59895" />+                        <normal x="-0.301488" y="-0.0424754" z="0.952523" />+                        <texcoord u="0.518018" v="0.304437" />+                    </vertex>+                    <vertex>+                        <position x="19.951" y="3.03511" z="-1.72198" />+                        <normal x="-0.6126" y="-0.0676345" z="0.787494" />+                        <texcoord u="0.516862" v="0.306912" />+                    </vertex>+                    <vertex>+                        <position x="19.6303" y="1.60744" z="-2.67852" />+                        <normal x="-0.935953" y="-0.134612" z="0.325378" />+                        <texcoord u="0.508127" v="0.296968" />+                    </vertex>+                    <vertex>+                        <position x="19.8721" y="1.47975" z="-2.21846" />+                        <normal x="-0.823188" y="-0.166783" z="0.54272" />+                        <texcoord u="0.512809" v="0.295679" />+                    </vertex>+                    <vertex>+                        <position x="19.7618" y="2.80753" z="-1.98916" />+                        <normal x="-0.826878" y="-0.107516" z="0.552008" />+                        <texcoord u="0.514507" v="0.305653" />+                    </vertex>+                    <vertex>+                        <position x="19.6105" y="3.10408" z="-2.21999" />+                        <normal x="-0.935108" y="-0.025489" z="0.353445" />+                        <texcoord u="0.51218" v="0.30804" />+                    </vertex>+                    <vertex>+                        <position x="19.487" y="1.82664" z="-3.77422" />+                        <normal x="-0.996139" y="0.0100997" z="-0.087212" />+                        <texcoord u="0.4968" v="0.298817" />+                    </vertex>+                    <vertex>+                        <position x="19.4933" y="1.64481" z="-3.2561" />+                        <normal x="-0.990765" y="-0.0772716" z="0.111415" />+                        <texcoord u="0.502163" v="0.297439" />+                    </vertex>+                    <vertex>+                        <position x="19.5026" y="2.9254" z="-2.6883" />+                        <normal x="-0.991009" y="0.0242522" z="0.131578" />+                        <texcoord u="0.507684" v="0.306887" />+                    </vertex>+                    <vertex>+                        <position x="19.5219" y="3.23273" z="-2.87766" />+                        <normal x="-0.98318" y="0.177632" z="-0.0424739" />+                        <texcoord u="0.50574" v="0.308975" />+                    </vertex>+                    <vertex>+                        <position x="19.8103" y="2.11676" z="-4.70312" />+                        <normal x="-0.822073" y="0.280059" z="-0.495746" />+                        <texcoord u="0.487522" v="0.300463" />+                    </vertex>+                    <vertex>+                        <position x="19.5911" y="1.91488" z="-4.34428" />+                        <normal x="-0.944924" y="0.125687" z="-0.302195" />+                        <texcoord u="0.490988" v="0.299362" />+                    </vertex>+                    <vertex>+                        <position x="19.5669" y="3.09608" z="-3.42511" />+                        <normal x="-0.923869" y="0.290084" z="-0.249635" />+                        <texcoord u="0.500385" v="0.307821" />+                    </vertex>+                    <vertex>+                        <position x="19.7151" y="3.39238" z="-3.43729" />+                        <normal x="-0.777539" y="0.496597" z="-0.385777" />+                        <texcoord u="0.500261" v="0.309506" />+                    </vertex>+                    <vertex>+                        <position x="20.4694" y="2.37479" z="-5.10763" />+                        <normal x="-0.237629" y="0.617135" z="-0.750118" />+                        <texcoord u="0.48402" v="0.300957" />+                    </vertex>+                    <vertex>+                        <position x="20.1191" y="2.20932" z="-5.06014" />+                        <normal x="-0.576471" y="0.455304" z="-0.678513" />+                        <texcoord u="0.484182" v="0.300586" />+                    </vertex>+                    <vertex>+                        <position x="19.9232" y="3.27804" z="-3.91114" />+                        <normal x="-0.552619" y="0.6354" z="-0.539333" />+                        <texcoord u="0.495698" v="0.30818" />+                    </vertex>+                    <vertex>+                        <position x="20.1104" y="3.53421" z="-3.68188" />+                        <normal x="-0.253993" y="0.796584" z="-0.548582" />+                        <texcoord u="0.497938" v="0.309423" />+                    </vertex>+                    <vertex>+                        <position x="21.2142" y="2.48841" z="-4.83847" />+                        <normal x="0.443662" y="0.709602" z="-0.547384" />+                        <texcoord u="0.487038" v="0.299903" />+                    </vertex>+                    <vertex>+                        <position x="20.8719" y="2.41072" z="-5.13194" />+                        <normal x="0.13442" y="0.696316" z="-0.705036" />+                        <texcoord u="0.484043" v="0.300293" />+                    </vertex>+                    <vertex>+                        <position x="20.4313" y="3.40342" z="-3.96106" />+                        <normal x="0.0637308" y="0.835816" z="-0.545298" />+                        <texcoord u="0.495325" v="0.307717" />+                    </vertex>+                    <vertex>+                        <position x="20.5568" y="3.59583" z="-3.52137" />+                        <normal x="0.323767" y="0.856954" z="-0.401004" />+                        <texcoord u="0.499469" v="0.308654" />+                    </vertex>+                    <vertex>+                        <position x="21.7712" y="2.40098" z="-4.00455" />+                        <normal x="0.767055" y="0.616247" z="-0.178512" />+                        <texcoord u="0.494984" v="0.297855" />+                    </vertex>+                    <vertex>+                        <position x="21.5694" y="2.42581" z="-4.53917" />+                        <normal x="0.643805" y="0.667644" z="-0.373854" />+                        <texcoord u="0.489963" v="0.298588" />+                    </vertex>+                    <vertex>+                        <position x="20.9016" y="3.40839" z="-3.56175" />+                        <normal x="0.541173" y="0.789717" z="-0.288926" />+                        <texcoord u="0.499098" v="0.30652" />+                    </vertex>+                    <vertex>+                        <position x="20.8906" y="3.53898" z="-3.02223" />+                        <normal x="0.655113" y="0.748125" z="-0.105523" />+                        <texcoord u="0.504074" v="0.30745" />+                    </vertex>+                    <vertex>+                        <position x="21.9342" y="2.14414" z="-2.92399" />+                        <normal x="0.848903" y="0.48822" z="0.202496" />+                        <texcoord u="0.50503" v="0.295813" />+                    </vertex>+                    <vertex>+                        <position x="21.9564" y="2.23989" z="-3.51187" />+                        <normal x="0.833385" y="0.552686" z="0.00278779" />+                        <texcoord u="0.499559" v="0.296359" />+                    </vertex>+                    <vertex>+                        <position x="21.1625" y="3.2772" z="-2.8698" />+                        <normal x="0.756088" y="0.653241" z="0.0400897" />+                        <texcoord u="0.505476" v="0.305063" />+                    </vertex>+                    <vertex>+                        <position x="20.9884" y="3.37965" z="-2.37576" />+                        <normal x="0.76518" y="0.598586" z="0.237055" />+                        <texcoord u="0.510046" v="0.306303" />+                    </vertex>+                    <vertex>+                        <position x="21.8828" y="1.93046" z="-2.43754" />+                        <normal x="0.814896" y="0.40768" z="0.411996" />+                        <texcoord u="0.509637" v="0.294613" />+                    </vertex>+                    <vertex>+                        <position x="21.1137" y="3.06348" z="-2.1464" />+                        <normal x="0.765366" y="0.487658" z="0.420005" />+                        <texcoord u="0.512235" v="0.303978" />+                    </vertex>+                    <vertex>+                        <position x="-22.7524" y="-6.67335" z="-0.313286" />+                        <normal x="0.00979437" y="0.370921" z="0.928613" />+                        <texcoord u="0.536503" v="0.763578" />+                    </vertex>+                    <vertex>+                        <position x="-23.5449" y="-6.3463" z="-0.632006" />+                        <normal x="-0.405674" y="0.324997" z="0.854287" />+                        <texcoord u="0.53146" v="0.761529" />+                    </vertex>+                    <vertex>+                        <position x="-23.1879" y="-8.24229" z="0.279764" />+                        <normal x="-0.345779" y="0.326108" z="0.879824" />+                        <texcoord u="0.544024" v="0.772653" />+                    </vertex>+                    <vertex>+                        <position x="-22.4192" y="-9.00331" z="0.758957" />+                        <normal x="-0.00184283" y="0.367383" z="0.930068" />+                        <texcoord u="0.552217" v="0.777197" />+                    </vertex>+                    <vertex>+                        <position x="-24.2459" y="-6.74753" z="-1.01146" />+                        <normal x="-0.733902" y="0.223904" z="0.641291" />+                        <texcoord u="0.526738" v="0.764306" />+                    </vertex>+                    <vertex>+                        <position x="-23.292" y="-9.12938" z="0.536583" />+                        <normal x="-0.453277" y="0.268134" z="0.850085" />+                        <texcoord u="0.547707" v="0.777738" />+                    </vertex>+                    <vertex>+                        <position x="-22.3362" y="-10.747" z="1.3324" />+                        <normal x="-0.0588684" y="-0.00717267" z="0.99824" />+                        <texcoord u="0.561624" v="0.786957" />+                    </vertex>+                    <vertex>+                        <position x="-24.1005" y="-9.51187" z="-0.171354" />+                        <normal x="-0.856949" y="-0.00589749" z="0.515368" />+                        <texcoord u="0.538355" v="0.780718" />+                    </vertex>+                    <vertex>+                        <position x="-23.4194" y="-10.138" z="0.748037" />+                        <normal x="-0.656388" y="0.0463105" z="0.753001" />+                        <texcoord u="0.550986" v="0.783473" />+                    </vertex>+                    <vertex>+                        <position x="-23.6579" y="-11.0688" z="0.202328" />+                        <normal x="-0.79015" y="-0.358693" z="0.496993" />+                        <texcoord u="0.544965" v="0.790127" />+                    </vertex>+                    <vertex>+                        <position x="-22.8608" y="-11.6607" z="0.95129" />+                        <normal x="-0.433323" y="-0.528547" z="0.729979" />+                        <texcoord u="0.556603" v="0.79305" />+                    </vertex>+                    <vertex>+                        <position x="-20.0957" y="-7.50777" z="-2.59706" />+                        <normal x="0.941418" y="0.188208" z="0.27984" />+                        <texcoord u="0.511849" v="0.774584" />+                    </vertex>+                    <vertex>+                        <position x="-20.139" y="-9.52298" z="-0.737431" />+                        <normal x="0.820998" y="0.327884" z="0.46739" />+                        <texcoord u="0.538874" v="0.787103" />+                    </vertex>+                    <vertex>+                        <position x="-19.8004" y="-10.4053" z="-0.787621" />+                        <normal x="0.953941" y="0.0150761" z="0.299615" />+                        <texcoord u="0.539772" v="0.79421" />+                    </vertex>+                    <vertex>+                        <position x="-19.6597" y="-9.90245" z="-2.02944" />+                        <normal x="0.996675" y="0.000352503" z="0.0814737" />+                        <texcoord u="0.521382" v="0.792974" />+                    </vertex>+                    <vertex>+                        <position x="-20.4961" y="-10.8416" z="0.537533" />+                        <normal x="0.712948" y="-0.0336017" z="0.700411" />+                        <texcoord u="0.557109" v="0.792494" />+                    </vertex>+                    <vertex>+                        <position x="-20.3798" y="-11.6918" z="-0.160542" />+                        <normal x="0.654276" y="-0.61887" z="0.434653" />+                        <texcoord u="0.548714" v="0.800504" />+                    </vertex>+                    <vertex>+                        <position x="-20.0575" y="-11.7454" z="-1.71664" />+                        <normal x="0.747329" y="-0.650825" z="0.133889" />+                        <texcoord u="0.526568" v="0.804921" />+                    </vertex>+                    <vertex>+                        <position x="-20.6016" y="-6.94941" z="-1.74121" />+                        <normal x="0.84795" y="0.218128" z="0.483116" />+                        <texcoord u="0.5225" v="0.769023" />+                    </vertex>+                    <vertex>+                        <position x="-20.4993" y="-8.66584" z="-0.775131" />+                        <normal x="0.807959" y="0.330683" z="0.4877" />+                        <texcoord u="0.536784" v="0.780404" />+                    </vertex>+                    <vertex>+                        <position x="-21.1632" y="-6.98897" z="-0.919159" />+                        <normal x="0.671255" y="0.301301" z="0.677226" />+                        <texcoord u="0.532197" v="0.767729" />+                    </vertex>+                    <vertex>+                        <position x="-20.8686" y="-9.19068" z="0.12789" />+                        <normal x="0.670018" y="0.356479" z="0.651151" />+                        <texcoord u="0.548486" v="0.781677" />+                    </vertex>+                    <vertex>+                        <position x="-25.1016" y="-6.70947" z="-3.46629" />+                        <normal x="-0.991891" y="0.0805126" z="0.0983395" />+                        <texcoord u="0.499979" v="0.764962" />+                    </vertex>+                    <vertex>+                        <position x="-25.061" y="-9.62994" z="-4.16138" />+                        <normal x="-0.98237" y="-0.122769" z="-0.140986" />+                        <texcoord u="0.492129" v="0.78297" />+                    </vertex>+                    <vertex>+                        <position x="-24.994" y="-10.7085" z="-3.37095" />+                        <normal x="-0.974985" y="-0.21633" z="0.0510461" />+                        <texcoord u="0.501082" v="0.78969" />+                    </vertex>+                    <vertex>+                        <position x="-24.9519" y="-9.74812" z="-2.45844" />+                        <normal x="-0.970052" y="-0.0887129" z="0.226118" />+                        <texcoord u="0.511436" v="0.783696" />+                    </vertex>+                    <vertex>+                        <position x="-24.3414" y="-12.1076" z="-4.5554" />+                        <normal x="-0.735809" y="-0.656382" z="-0.166578" />+                        <texcoord u="0.486606" v="0.7988" />+                    </vertex>+                    <vertex>+                        <position x="-24.2527" y="-12.266" z="-2.61083" />+                        <normal x="-0.707578" y="-0.684132" z="0.176912" />+                        <texcoord u="0.510558" v="0.800041" />+                    </vertex>+                    <vertex>+                        <position x="-24.48" y="-11.3795" z="-1.93965" />+                        <normal x="-0.858784" y="-0.427436" z="0.282468" />+                        <texcoord u="0.518304" v="0.793897" />+                    </vertex>+                    <vertex>+                        <position x="-24.9941" y="-6.08465" z="-4.77693" />+                        <normal x="-0.98238" y="0.11434" z="-0.147837" />+                        <texcoord u="0.486308" v="0.7607" />+                    </vertex>+                    <vertex>+                        <position x="-25.0662" y="-8.47606" z="-4.83808" />+                        <normal x="-0.980724" y="-0.059649" z="-0.186071" />+                        <texcoord u="0.484897" v="0.775558" />+                    </vertex>+                    <vertex>+                        <position x="-24.7193" y="-6.27908" z="-5.85018" />+                        <normal x="-0.932591" y="0.0899567" z="-0.349545" />+                        <texcoord u="0.474792" v="0.761171" />+                    </vertex>+                    <vertex>+                        <position x="-24.8016" y="-9.36272" z="-5.63194" />+                        <normal x="-0.946119" y="-0.12385" z="-0.299199" />+                        <texcoord u="0.475476" v="0.780597" />+                    </vertex>+                    <vertex>+                        <position x="-19.8503" y="4.38511" z="-1.84644" />+                        <normal x="0.236961" y="0.910458" z="0.338992" />+                        <texcoord u="0.514968" v="0.683656" />+                    </vertex>+                    <vertex>+                        <position x="-20.9884" y="3.37965" z="-2.37576" />+                        <normal x="-0.765179" y="0.598586" z="0.237055" />+                        <texcoord u="0.510046" v="0.693697" />+                    </vertex>+                    <vertex>+                        <position x="-21.1137" y="3.06348" z="-2.1464" />+                        <normal x="-0.765366" y="0.487658" z="0.420006" />+                        <texcoord u="0.512235" v="0.696022" />+                    </vertex>+                    <vertex>+                        <position x="-20.8076" y="3.1902" z="-1.82375" />+                        <normal x="-0.639144" y="0.406349" z="0.652974" />+                        <texcoord u="0.515317" v="0.694273" />+                    </vertex>+                    <vertex>+                        <position x="-21.9342" y="2.14415" z="-2.92399" />+                        <normal x="-0.848903" y="0.48822" z="0.202496" />+                        <texcoord u="0.505029" v="0.704187" />+                    </vertex>+                    <vertex>+                        <position x="-21.8828" y="1.93046" z="-2.43754" />+                        <normal x="-0.814896" y="0.40768" z="0.411998" />+                        <texcoord u="0.509637" v="0.705387" />+                    </vertex>+                    <vertex>+                        <position x="-21.6305" y="1.8293" z="-2.00194" />+                        <normal x="-0.696227" y="0.306684" z="0.649009" />+                        <texcoord u="0.513885" v="0.705389" />+                    </vertex>+                    <vertex>+                        <position x="-20.8906" y="3.53898" z="-3.02223" />+                        <normal x="-0.655114" y="0.748125" z="-0.105524" />+                        <texcoord u="0.504074" v="0.69255" />+                    </vertex>+                    <vertex>+                        <position x="-21.1625" y="3.2772" z="-2.8698" />+                        <normal x="-0.756087" y="0.653242" z="0.0400873" />+                        <texcoord u="0.505476" v="0.694937" />+                    </vertex>+                    <vertex>+                        <position x="-21.7712" y="2.40098" z="-4.00454" />+                        <normal x="-0.767055" y="0.616246" z="-0.178512" />+                        <texcoord u="0.494984" v="0.702145" />+                    </vertex>+                    <vertex>+                        <position x="-21.9564" y="2.23989" z="-3.51187" />+                        <normal x="-0.833384" y="0.552688" z="0.00278242" />+                        <texcoord u="0.499559" v="0.703641" />+                    </vertex>+                    <vertex>+                        <position x="-20.5568" y="3.59583" z="-3.52137" />+                        <normal x="-0.323767" y="0.856954" z="-0.401004" />+                        <texcoord u="0.499468" v="0.691346" />+                    </vertex>+                    <vertex>+                        <position x="-20.9016" y="3.40839" z="-3.56175" />+                        <normal x="-0.541174" y="0.789717" z="-0.288925" />+                        <texcoord u="0.499098" v="0.69348" />+                    </vertex>+                    <vertex>+                        <position x="-21.2142" y="2.48841" z="-4.83847" />+                        <normal x="-0.443662" y="0.709602" z="-0.547384" />+                        <texcoord u="0.487038" v="0.700097" />+                    </vertex>+                    <vertex>+                        <position x="-21.5694" y="2.42581" z="-4.53917" />+                        <normal x="-0.643807" y="0.667643" z="-0.373852" />+                        <texcoord u="0.489963" v="0.701412" />+                    </vertex>+                    <vertex>+                        <position x="-20.1104" y="3.53421" z="-3.68188" />+                        <normal x="0.253993" y="0.796584" z="-0.548582" />+                        <texcoord u="0.497938" v="0.690577" />+                    </vertex>+                    <vertex>+                        <position x="-20.4313" y="3.40342" z="-3.96106" />+                        <normal x="-0.0637301" y="0.835816" z="-0.545298" />+                        <texcoord u="0.495325" v="0.692283" />+                    </vertex>+                    <vertex>+                        <position x="-20.4694" y="2.37479" z="-5.10763" />+                        <normal x="0.237628" y="0.617136" z="-0.750118" />+                        <texcoord u="0.48402" v="0.699043" />+                    </vertex>+                    <vertex>+                        <position x="-20.8719" y="2.41072" z="-5.13194" />+                        <normal x="-0.134418" y="0.696315" z="-0.705037" />+                        <texcoord u="0.484043" v="0.699707" />+                    </vertex>+                    <vertex>+                        <position x="-19.7151" y="3.39238" z="-3.43729" />+                        <normal x="0.777539" y="0.496597" z="-0.385777" />+                        <texcoord u="0.500261" v="0.690493" />+                    </vertex>+                    <vertex>+                        <position x="-19.9232" y="3.27804" z="-3.91114" />+                        <normal x="0.552618" y="0.6354" z="-0.539333" />+                        <texcoord u="0.495698" v="0.69182" />+                    </vertex>+                    <vertex>+                        <position x="-19.8103" y="2.11676" z="-4.70312" />+                        <normal x="0.822073" y="0.280058" z="-0.495745" />+                        <texcoord u="0.487522" v="0.699537" />+                    </vertex>+                    <vertex>+                        <position x="-20.1191" y="2.20932" z="-5.06014" />+                        <normal x="0.576469" y="0.455305" z="-0.678513" />+                        <texcoord u="0.484182" v="0.699414" />+                    </vertex>+                    <vertex>+                        <position x="-19.5219" y="3.23273" z="-2.87766" />+                        <normal x="0.98318" y="0.177632" z="-0.0424739" />+                        <texcoord u="0.50574" v="0.691025" />+                    </vertex>+                    <vertex>+                        <position x="-19.5669" y="3.09608" z="-3.42511" />+                        <normal x="0.923869" y="0.290084" z="-0.249635" />+                        <texcoord u="0.500385" v="0.692179" />+                    </vertex>+                    <vertex>+                        <position x="-19.487" y="1.82664" z="-3.77422" />+                        <normal x="0.996139" y="0.0100998" z="-0.0872122" />+                        <texcoord u="0.4968" v="0.701183" />+                    </vertex>+                    <vertex>+                        <position x="-19.5911" y="1.91488" z="-4.34428" />+                        <normal x="0.944924" y="0.125687" z="-0.302195" />+                        <texcoord u="0.490988" v="0.700638" />+                    </vertex>+                    <vertex>+                        <position x="-19.6105" y="3.10408" z="-2.21999" />+                        <normal x="0.935108" y="-0.0254889" z="0.353445" />+                        <texcoord u="0.51218" v="0.69196" />+                    </vertex>+                    <vertex>+                        <position x="-19.5026" y="2.9254" z="-2.6883" />+                        <normal x="0.991009" y="0.0242524" z="0.131578" />+                        <texcoord u="0.507684" v="0.693113" />+                    </vertex>+                    <vertex>+                        <position x="-19.6303" y="1.60744" z="-2.67852" />+                        <normal x="0.935953" y="-0.134612" z="0.325379" />+                        <texcoord u="0.508127" v="0.703032" />+                    </vertex>+                    <vertex>+                        <position x="-19.4933" y="1.64481" z="-3.2561" />+                        <normal x="0.990765" y="-0.0772714" z="0.111414" />+                        <texcoord u="0.502163" v="0.702561" />+                    </vertex>+                    <vertex>+                        <position x="-19.951" y="3.03511" z="-1.72198" />+                        <normal x="0.612602" y="-0.0676353" z="0.787492" />+                        <texcoord u="0.516862" v="0.693088" />+                    </vertex>+                    <vertex>+                        <position x="-19.7618" y="2.80753" z="-1.98916" />+                        <normal x="0.826878" y="-0.107516" z="0.552009" />+                        <texcoord u="0.514507" v="0.694347" />+                    </vertex>+                    <vertex>+                        <position x="-20.1937" y="1.51587" z="-1.84308" />+                        <normal x="0.618426" y="-0.159225" z="0.769543" />+                        <texcoord u="0.516421" v="0.704538" />+                    </vertex>+                    <vertex>+                        <position x="-19.8721" y="1.47975" z="-2.21846" />+                        <normal x="0.823187" y="-0.166783" z="0.542722" />+                        <texcoord u="0.512809" v="0.704321" />+                    </vertex>+                    <vertex>+                        <position x="-20.4107" y="3.05931" z="-1.57305" />+                        <normal x="-0.0842468" y="0.126276" z="0.988411" />+                        <texcoord u="0.517977" v="0.694016" />+                    </vertex>+                    <vertex>+                        <position x="-20.2464" y="2.77707" z="-1.59895" />+                        <normal x="0.301489" y="-0.0424746" z="0.952523" />+                        <texcoord u="0.518018" v="0.695563" />+                    </vertex>+                    <vertex>+                        <position x="-20.9627" y="1.59116" z="-1.58712" />+                        <normal x="-0.0987741" y="0.0256443" z="0.994779" />+                        <texcoord u="0.518397" v="0.705441" />+                    </vertex>+                    <vertex>+                        <position x="-20.5886" y="1.46761" z="-1.63314" />+                        <normal x="0.298045" y="-0.0979452" z="0.949514" />+                        <texcoord u="0.518284" v="0.705575" />+                    </vertex>+                    <vertex>+                        <position x="-20.765" y="2.86816" z="-1.6614" />+                        <normal x="-0.450367" y="0.2455" z="0.858428" />+                        <texcoord u="0.517039" v="0.696252" />+                    </vertex>+                    <vertex>+                        <position x="-21.3618" y="1.63277" z="-1.71953" />+                        <normal x="-0.467176" y="0.175258" z="0.86662" />+                        <texcoord u="0.516828" v="0.70604" />+                    </vertex>+                    <vertex>+                        <position x="24.4287" y="-11.3852" z="-2.00032" />+                        <normal x="0.820913" y="-0.481816" z="0.306521" />+                        <texcoord u="0.517623" v="0.205932" />+                    </vertex>+                    <vertex>+                        <position x="24.1374" y="-12.279" z="-2.74733" />+                        <normal x="0.656558" y="-0.725481" z="0.206418" />+                        <texcoord u="0.508923" v="0.199596" />+                    </vertex>+                    <vertex>+                        <position x="24.994" y="-10.7085" z="-3.37095" />+                        <normal x="0.969434" y="-0.236015" z="0.0670391" />+                        <texcoord u="0.501082" v="0.21031" />+                    </vertex>+                    <vertex>+                        <position x="24.9519" y="-9.74812" z="-2.45844" />+                        <normal x="0.966209" y="-0.104346" z="0.235694" />+                        <texcoord u="0.511436" v="0.216304" />+                    </vertex>+                    <vertex>+                        <position x="24.3346" y="-12.1393" z="-4.78774" />+                        <normal x="0.767005" y="-0.626606" z="-0.138091" />+                        <texcoord u="0.483747" v="0.201163" />+                    </vertex>+                    <vertex>+                        <position x="25.061" y="-9.62994" z="-4.16138" />+                        <normal x="0.98542" y="-0.113603" z="-0.126659" />+                        <texcoord u="0.492129" v="0.21703" />+                    </vertex>+                    <vertex>+                        <position x="25.1016" y="-6.70947" z="-3.46629" />+                        <normal x="0.991891" y="0.0805126" z="0.0983396" />+                        <texcoord u="0.499979" v="0.235038" />+                    </vertex>+                    <vertex>+                        <position x="24.8016" y="-9.36272" z="-5.63194" />+                        <normal x="0.945945" y="-0.115686" z="-0.302994" />+                        <texcoord u="0.475476" v="0.219403" />+                    </vertex>+                    <vertex>+                        <position x="25.0662" y="-8.47606" z="-4.83808" />+                        <normal x="0.98188" y="-0.0552356" z="-0.181274" />+                        <texcoord u="0.484898" v="0.224442" />+                    </vertex>+                    <vertex>+                        <position x="24.7193" y="-6.27908" z="-5.85018" />+                        <normal x="0.932591" y="0.0899567" z="-0.349545" />+                        <texcoord u="0.474792" v="0.238829" />+                    </vertex>+                    <vertex>+                        <position x="24.9941" y="-6.08465" z="-4.77693" />+                        <normal x="0.98238" y="0.11434" z="-0.147837" />+                        <texcoord u="0.486308" v="0.2393" />+                    </vertex>+                    <vertex>+                        <position x="20.4673" y="-10.8448" z="0.503408" />+                        <normal x="-0.703438" y="-0.0392838" z="0.709671" />+                        <texcoord u="0.556735" v="0.207333" />+                    </vertex>+                    <vertex>+                        <position x="20.8686" y="-9.19068" z="0.12789" />+                        <normal x="-0.670056" y="0.355523" z="0.651635" />+                        <texcoord u="0.548486" v="0.218323" />+                    </vertex>+                    <vertex>+                        <position x="20.4993" y="-8.66584" z="-0.775131" />+                        <normal x="-0.807751" y="0.331167" z="0.487716" />+                        <texcoord u="0.536784" v="0.219596" />+                    </vertex>+                    <vertex>+                        <position x="20.139" y="-9.52298" z="-0.737431" />+                        <normal x="-0.821432" y="0.328084" z="0.466488" />+                        <texcoord u="0.538874" v="0.212897" />+                    </vertex>+                    <vertex>+                        <position x="21.1632" y="-6.98896" z="-0.919163" />+                        <normal x="-0.671255" y="0.301301" z="0.677226" />+                        <texcoord u="0.532197" v="0.232271" />+                    </vertex>+                    <vertex>+                        <position x="20.6016" y="-6.94941" z="-1.74121" />+                        <normal x="-0.84795" y="0.218127" z="0.483116" />+                        <texcoord u="0.5225" v="0.230977" />+                    </vertex>+                    <vertex>+                        <position x="20.0957" y="-7.50777" z="-2.59706" />+                        <normal x="-0.941418" y="0.188208" z="0.279839" />+                        <texcoord u="0.51185" v="0.225416" />+                    </vertex>+                    <vertex>+                        <position x="19.6597" y="-9.90245" z="-2.02944" />+                        <normal x="-0.993429" y="0.0614504" z="0.0965559" />+                        <texcoord u="0.521382" v="0.207026" />+                    </vertex>+                    <vertex>+                        <position x="19.8004" y="-10.4053" z="-0.787621" />+                        <normal x="-0.947302" y="0.0581164" z="0.315027" />+                        <texcoord u="0.539772" v="0.20579" />+                    </vertex>+                    <vertex>+                        <position x="19.8034" y="-11.2154" z="-1.52736" />+                        <normal x="-0.902486" y="-0.41919" z="0.0989845" />+                        <texcoord u="0.529488" v="0.198509" />+                    </vertex>+                    <vertex>+                        <position x="20.2645" y="-11.7048" z="-0.297045" />+                        <normal x="-0.700535" y="-0.607749" z="0.374022" />+                        <texcoord u="0.547075" v="0.198809" />+                    </vertex>+                    <vertex>+                        <position x="22.3074" y="-10.7502" z="1.29828" />+                        <normal x="0.0560905" y="-0.0505318" z="0.997146" />+                        <texcoord u="0.561298" v="0.212886" />+                    </vertex>+                    <vertex>+                        <position x="22.7455" y="-11.6736" z="0.814787" />+                        <normal x="0.394628" y="-0.61161" z="0.685713" />+                        <texcoord u="0.555247" v="0.206331" />+                    </vertex>+                    <vertex>+                        <position x="23.4194" y="-10.138" z="0.748037" />+                        <normal x="0.655966" y="-0.0011607" z="0.754789" />+                        <texcoord u="0.550987" v="0.216527" />+                    </vertex>+                    <vertex>+                        <position x="23.292" y="-9.12938" z="0.536583" />+                        <normal x="0.438593" y="0.268223" z="0.857725" />+                        <texcoord u="0.547707" v="0.222262" />+                    </vertex>+                    <vertex>+                        <position x="23.6067" y="-11.0746" z="0.141661" />+                        <normal x="0.759467" y="-0.447939" z="0.471763" />+                        <texcoord u="0.544353" v="0.209638" />+                    </vertex>+                    <vertex>+                        <position x="24.1005" y="-9.51187" z="-0.171354" />+                        <normal x="0.861303" y="-0.0319565" z="0.507086" />+                        <texcoord u="0.538355" v="0.219282" />+                    </vertex>+                    <vertex>+                        <position x="24.2459" y="-6.74753" z="-1.01146" />+                        <normal x="0.733902" y="0.223904" z="0.641291" />+                        <texcoord u="0.526738" v="0.235694" />+                    </vertex>+                    <vertex>+                        <position x="23.5449" y="-6.3463" z="-0.632006" />+                        <normal x="0.405673" y="0.324997" z="0.854287" />+                        <texcoord u="0.53146" v="0.238471" />+                    </vertex>+                    <vertex>+                        <position x="23.1879" y="-8.24229" z="0.279764" />+                        <normal x="0.344726" y="0.321907" z="0.881782" />+                        <texcoord u="0.544024" v="0.227347" />+                    </vertex>+                    <vertex>+                        <position x="22.7524" y="-6.67335" z="-0.313288" />+                        <normal x="-0.00979426" y="0.370921" z="0.928613" />+                        <texcoord u="0.536503" v="0.236422" />+                    </vertex>+                    <vertex>+                        <position x="22.4192" y="-9.0033" z="0.758957" />+                        <normal x="0.00927223" y="0.358279" z="0.933569" />+                        <texcoord u="0.552217" v="0.222803" />+                    </vertex>+                    <vertex>+                        <position x="22.1666" y="-2.39344" z="-1.46891" />+                        <normal x="0.0438591" y="0.14037" z="0.989127" />+                        <texcoord u="0.521167" v="0.264855" />+                    </vertex>+                    <vertex>+                        <position x="22.6124" y="-4.49471" z="-1.04787" />+                        <normal x="0.0123762" y="0.261259" z="0.965189" />+                        <texcoord u="0.526677" v="0.250358" />+                    </vertex>+                    <vertex>+                        <position x="23.3368" y="-4.28609" z="-1.28555" />+                        <normal x="0.41148" y="0.291171" z="0.863657" />+                        <texcoord u="0.523203" v="0.251465" />+                    </vertex>+                    <vertex>+                        <position x="22.7759" y="-2.17464" z="-1.66821" />+                        <normal x="0.41833" y="0.228462" z="0.879093" />+                        <texcoord u="0.51847" v="0.265785" />+                    </vertex>+                    <vertex>+                        <position x="23.9465" y="-4.08419" z="-1.83348" />+                        <normal x="0.720051" y="0.291251" z="0.629841" />+                        <texcoord u="0.51687" v="0.252288" />+                    </vertex>+                    <vertex>+                        <position x="23.2858" y="-1.94165" z="-2.12718" />+                        <normal x="0.703741" y="0.29371" z="0.646902" />+                        <texcoord u="0.513396" v="0.266711" />+                    </vertex>+                    <vertex>+                        <position x="21.8552" y="-4.6914" z="-1.16049" />+                        <normal x="-0.375562" y="0.199876" z="0.904988" />+                        <texcoord u="0.526472" v="0.248866" />+                    </vertex>+                    <vertex>+                        <position x="21.9193" y="-6.89226" z="-0.426094" />+                        <normal x="-0.387894" y="0.355407" z="0.850426" />+                        <texcoord u="0.53683" v="0.234284" />+                    </vertex>+                    <vertex>+                        <position x="21.522" y="-2.57795" z="-1.56409" />+                        <normal x="-0.347473" y="0.0477333" z="0.936474" />+                        <texcoord u="0.520846" v="0.26389" />+                    </vertex>+                    <vertex>+                        <position x="20.9113" y="-2.70598" z="-1.92805" />+                        <normal x="-0.64835" y="-0.0232696" z="0.760987" />+                        <texcoord u="0.517408" v="0.263037" />+                    </vertex>+                    <vertex>+                        <position x="21.146" y="-4.84969" z="-1.59251" />+                        <normal x="-0.669199" y="0.131792" z="0.731303" />+                        <texcoord u="0.522378" v="0.247188" />+                    </vertex>+                    <vertex>+                        <position x="20.5653" y="-4.94311" z="-2.31301" />+                        <normal x="-0.851825" y="0.0663693" z="0.519605" />+                        <texcoord u="0.514233" v="0.24576" />+                    </vertex>+                    <vertex>+                        <position x="20.4034" y="-2.75533" z="-2.53509" />+                        <normal x="-0.840828" y="-0.0645158" z="0.537444" />+                        <texcoord u="0.510812" v="0.262591" />+                    </vertex>+                    <vertex>+                        <position x="20.036" y="-2.71852" z="-3.31452" />+                        <normal x="-0.947311" y="-0.080834" z="0.309947" />+                        <texcoord u="0.501772" v="0.26288" />+                    </vertex>+                    <vertex>+                        <position x="20.1545" y="-4.95387" z="-3.23776" />+                        <normal x="-0.953883" y="0.0283589" z="0.298835" />+                        <texcoord u="0.502864" v="0.245192" />+                    </vertex>+                    <vertex>+                        <position x="19.9423" y="-7.14914" z="-5.26548" />+                        <normal x="-0.989565" y="0.0412529" z="-0.138053" />+                        <texcoord u="0.475518" v="0.228941" />+                    </vertex>+                    <vertex>+                        <position x="19.8963" y="-7.23395" z="-4.0336" />+                        <normal x="-0.99474" y="0.0819776" z="0.0614228" />+                        <texcoord u="0.492193" v="0.227154" />+                    </vertex>+                    <vertex>+                        <position x="19.9548" y="-4.86418" z="-4.28249" />+                        <normal x="-0.996649" y="-0.00723523" z="0.0814712" />+                        <texcoord u="0.489588" v="0.246059" />+                    </vertex>+                    <vertex>+                        <position x="19.9694" y="-4.68972" z="-5.34364" />+                        <normal x="-0.991826" y="-0.0165936" z="-0.126514" />+                        <texcoord u="0.476318" v="0.248359" />+                    </vertex>+                    <vertex>+                        <position x="19.8468" y="-2.58809" z="-4.19563" />+                        <normal x="-0.992677" y="-0.0757466" z="0.0941" />+                        <texcoord u="0.49131" v="0.264185" />+                    </vertex>+                    <vertex>+                        <position x="19.8421" y="-2.38108" z="-5.08986" />+                        <normal x="-0.991234" y="-0.0502031" z="-0.122207" />+                        <texcoord u="0.480863" v="0.266414" />+                    </vertex>+                    <vertex>+                        <position x="20.704" y="-6.80582" z="-7.33527" />+                        <normal x="-0.808828" y="0.0181331" z="-0.587766" />+                        <texcoord u="0.450649" v="0.236046" />+                    </vertex>+                    <vertex>+                        <position x="20.2236" y="-6.99259" z="-6.39964" />+                        <normal x="-0.937136" y="0.0185757" z="-0.34847" />+                        <texcoord u="0.461142" v="0.232282" />+                    </vertex>+                    <vertex>+                        <position x="20.2011" y="-4.44618" z="-6.31763" />+                        <normal x="-0.937142" y="-0.0015168" z="-0.348946" />+                        <texcoord u="0.464922" v="0.251658" />+                    </vertex>+                    <vertex>+                        <position x="20.618" y="-4.17701" z="-7.11843" />+                        <normal x="-0.805457" y="0.0376054" z="-0.591459" />+                        <texcoord u="0.456592" v="0.255076" />+                    </vertex>+                    <vertex>+                        <position x="20.0281" y="-2.1146" z="-5.90866" />+                        <normal x="-0.938664" y="-0.0020558" z="-0.344828" />+                        <texcoord u="0.471834" v="0.269217" />+                    </vertex>+                    <vertex>+                        <position x="20.3783" y="-1.82748" z="-6.57924" />+                        <normal x="-0.810662" y="0.0772172" z="-0.5804" />+                        <texcoord u="0.465144" v="0.271972" />+                    </vertex>+                    <vertex>+                        <position x="22.089" y="-6.48845" z="-8.26095" />+                        <normal x="-0.12605" y="0.0538946" z="-0.990559" />+                        <texcoord u="0.443752" v="0.240974" />+                    </vertex>+                    <vertex>+                        <position x="21.3473" y="-6.63035" z="-7.97157" />+                        <normal x="-0.549242" y="0.0313972" z="-0.835074" />+                        <texcoord u="0.444919" v="0.239125" />+                    </vertex>+                    <vertex>+                        <position x="21.1877" y="-3.92564" z="-7.65996" />+                        <normal x="-0.552023" y="0.103172" z="-0.827421" />+                        <texcoord u="0.452034" v="0.257777" />+                    </vertex>+                    <vertex>+                        <position x="21.8519" y="-3.7192" z="-7.90245" />+                        <normal x="-0.146548" y="0.180468" z="-0.972602" />+                        <texcoord u="0.451126" v="0.259362" />+                    </vertex>+                    <vertex>+                        <position x="20.8661" y="-1.55859" z="-7.02884" />+                        <normal x="-0.563377" y="0.186608" z="-0.80485" />+                        <texcoord u="0.461407" v="0.274086" />+                    </vertex>+                    <vertex>+                        <position x="21.4404" y="-1.33585" z="-7.22554" />+                        <normal x="-0.177849" y="0.305234" z="-0.935522" />+                        <texcoord u="0.460577" v="0.275278" />+                    </vertex>+                    <vertex>+                        <position x="22.5522" y="-3.58482" z="-7.80611" />+                        <normal x="0.298959" y="0.231362" z="-0.925794" />+                        <texcoord u="0.45373" v="0.259664" />+                    </vertex>+                    <vertex>+                        <position x="22.8644" y="-6.40235" z="-8.15578" />+                        <normal x="0.338703" y="0.0723631" z="-0.938107" />+                        <texcoord u="0.446934" v="0.24138" />+                    </vertex>+                    <vertex>+                        <position x="22.0498" y="-1.18723" z="-7.13737" />+                        <normal x="0.246961" y="0.384273" z="-0.889575" />+                        <texcoord u="0.462588" v="0.275414" />+                    </vertex>+                    <vertex>+                        <position x="22.6377" y="-1.11524" z="-6.7853" />+                        <normal x="0.576618" y="0.407544" z="-0.70811" />+                        <texcoord u="0.46695" v="0.274715" />+                    </vertex>+                    <vertex>+                        <position x="23.2259" y="-3.51766" z="-7.39401" />+                        <normal x="0.625868" y="0.247478" z="-0.739624" />+                        <texcoord u="0.459223" v="0.258997" />+                    </vertex>+                    <vertex>+                        <position x="23.6042" y="-6.35867" z="-7.68214" />+                        <normal x="0.673182" y="0.0758535" z="-0.735576" />+                        <texcoord u="0.453676" v="0.240757" />+                    </vertex>+                    <vertex>+                        <position x="23.5353" y="-1.19767" z="-5.41963" />+                        <normal x="0.88015" y="0.383596" z="-0.279625" />+                        <texcoord u="0.481046" v="0.271857" />+                    </vertex>+                    <vertex>+                        <position x="24.2562" y="-3.55828" z="-5.77169" />+                        <normal x="0.91719" y="0.244363" z="-0.314719" />+                        <texcoord u="0.47681" v="0.256223" />+                    </vertex>+                    <vertex>+                        <position x="23.8106" y="-3.5129" z="-6.6892" />+                        <normal x="0.818328" y="0.246067" z="-0.519413" />+                        <texcoord u="0.467184" v="0.257707" />+                    </vertex>+                    <vertex>+                        <position x="23.1475" y="-1.12243" z="-6.19029" />+                        <normal x="0.773809" y="0.398861" z="-0.492067" />+                        <texcoord u="0.473316" v="0.273417" />+                    </vertex>+                    <vertex>+                        <position x="24.2393" y="-6.344" z="-6.8661" />+                        <normal x="0.848046" y="0.0736181" z="-0.524784" />+                        <texcoord u="0.46345" v="0.239568" />+                    </vertex>+                    <vertex>+                        <position x="23.7953" y="-1.50637" z="-3.64159" />+                        <normal x="0.924391" y="0.352633" z="0.145433" />+                        <texcoord u="0.498278" v="0.268888" />+                    </vertex>+                    <vertex>+                        <position x="24.5553" y="-3.7592" z="-3.64575" />+                        <normal x="0.961613" y="0.252805" z="0.106727" />+                        <texcoord u="0.49818" v="0.253788" />+                    </vertex>+                    <vertex>+                        <position x="24.5126" y="-3.64156" z="-4.72149" />+                        <normal x="0.961455" y="0.25181" z="-0.110434" />+                        <texcoord u="0.487428" v="0.254867" />+                    </vertex>+                    <vertex>+                        <position x="23.7572" y="-1.32986" z="-4.54059" />+                        <normal x="0.927167" y="0.367681" z="-0.0719122" />+                        <texcoord u="0.489593" v="0.270292" />+                    </vertex>+                    <vertex>+                        <position x="24.3597" y="-3.90765" z="-2.65165" />+                        <normal x="0.89522" y="0.265706" z="0.357744" />+                        <texcoord u="0.508241" v="0.252978" />+                    </vertex>+                    <vertex>+                        <position x="23.6319" y="-1.7146" z="-2.81105" />+                        <normal x="0.858931" y="0.331673" z="0.390168" />+                        <texcoord u="0.506421" v="0.267709" />+                    </vertex>+                    <vertex>+                        <position x="24.7568" y="-6.41711" z="-2.17028" />+                        <normal x="0.932468" y="0.133973" z="0.335492" />+                        <texcoord u="0.513743" v="0.237072" />+                    </vertex>+                    <vertex>+                        <position x="-22.0748" y="-0.124924" z="-1.76733" />+                        <normal x="-0.449285" y="0.177957" z="0.875485" />+                        <texcoord u="0.516865" v="0.719392" />+                    </vertex>+                    <vertex>+                        <position x="-21.5824" y="-0.29562" z="-1.60053" />+                        <normal x="-0.0780876" y="0.0515834" z="0.995611" />+                        <texcoord u="0.51898" v="0.719787" />+                    </vertex>+                    <vertex>+                        <position x="-22.4851" y="0.0740929" z="-2.14321" />+                        <normal x="-0.700007" y="0.285642" z="0.654522" />+                        <texcoord u="0.512855" v="0.718804" />+                    </vertex>+                    <vertex>+                        <position x="-23.2858" y="-1.94165" z="-2.12718" />+                        <normal x="-0.703741" y="0.29371" z="0.646902" />+                        <texcoord u="0.513396" v="0.733289" />+                    </vertex>+                    <vertex>+                        <position x="-22.7759" y="-2.17464" z="-1.66821" />+                        <normal x="-0.418331" y="0.228462" z="0.879093" />+                        <texcoord u="0.51847" v="0.734215" />+                    </vertex>+                    <vertex>+                        <position x="-22.1666" y="-2.39344" z="-1.46891" />+                        <normal x="-0.0438589" y="0.14037" z="0.989127" />+                        <texcoord u="0.521167" v="0.735145" />+                    </vertex>+                    <vertex>+                        <position x="-21.5149" y="-11.337" z="1.03917" />+                        <normal x="0.33637" y="-0.375044" z="0.863827" />+                        <texcoord u="0.561265" v="0.792687" />+                    </vertex>+                    <vertex>+                        <position x="-21.5773" y="-9.3113" z="0.673792" />+                        <normal x="0.390806" y="0.340472" z="0.85519" />+                        <texcoord u="0.553753" v="0.780289" />+                    </vertex>+                    <vertex>+                        <position x="-21.9193" y="-6.89226" z="-0.426094" />+                        <normal x="0.387894" y="0.355407" z="0.850426" />+                        <texcoord u="0.53683" v="0.765716" />+                    </vertex>+                    <vertex>+                        <position x="-21.0568" y="-0.421173" z="-1.67158" />+                        <normal x="0.315036" y="-0.0584947" z="0.947275" />+                        <texcoord u="0.51873" v="0.720003" />+                    </vertex>+                    <vertex>+                        <position x="-21.522" y="-2.57795" z="-1.56409" />+                        <normal x="0.347474" y="0.0477337" z="0.936474" />+                        <texcoord u="0.520846" v="0.73611" />+                    </vertex>+                    <vertex>+                        <position x="-20.9113" y="-2.70598" z="-1.92805" />+                        <normal x="0.64835" y="-0.0232697" z="0.760987" />+                        <texcoord u="0.517408" v="0.736963" />+                    </vertex>+                    <vertex>+                        <position x="-20.5539" y="-0.490982" z="-1.96167" />+                        <normal x="0.626381" y="-0.123533" z="0.769667" />+                        <texcoord u="0.516084" v="0.720006" />+                    </vertex>+                    <vertex>+                        <position x="-20.1291" y="-0.494457" z="-2.452" />+                        <normal x="0.82872" y="-0.145949" z="0.540299" />+                        <texcoord u="0.511048" v="0.719695" />+                    </vertex>+                    <vertex>+                        <position x="-20.4034" y="-2.75533" z="-2.53509" />+                        <normal x="0.840828" y="-0.0645169" z="0.537443" />+                        <texcoord u="0.510812" v="0.737409" />+                    </vertex>+                    <vertex>+                        <position x="-20.036" y="-2.71852" z="-3.31452" />+                        <normal x="0.947311" y="-0.0808343" z="0.309948" />+                        <texcoord u="0.501772" v="0.73712" />+                    </vertex>+                    <vertex>+                        <position x="-19.8167" y="-0.432426" z="-3.08574" />+                        <normal x="0.93888" y="-0.135264" z="0.316557" />+                        <texcoord u="0.504183" v="0.718959" />+                    </vertex>+                    <vertex>+                        <position x="-19.9423" y="-7.14914" z="-5.26548" />+                        <normal x="0.989565" y="0.0412529" z="-0.138053" />+                        <texcoord u="0.475518" v="0.771059" />+                    </vertex>+                    <vertex>+                        <position x="-19.8963" y="-7.23395" z="-4.0336" />+                        <normal x="0.99474" y="0.0819776" z="0.0614228" />+                        <texcoord u="0.492193" v="0.772846" />+                    </vertex>+                    <vertex>+                        <position x="-19.593" y="-9.79735" z="-3.41597" />+                        <normal x="0.999621" y="-0.00881614" z="0.0260874" />+                        <texcoord u="0.500723" v="0.793213" />+                    </vertex>+                    <vertex>+                        <position x="-19.6836" y="-9.8558" z="-4.82037" />+                        <normal x="0.987322" y="-0.0258832" z="-0.156603" />+                        <texcoord u="0.479836" v="0.792672" />+                    </vertex>+                    <vertex>+                        <position x="-19.9075" y="-11.8922" z="-3.2661" />+                        <normal x="0.798031" y="-0.595784" z="0.0904912" />+                        <texcoord u="0.503063" v="0.807671" />+                    </vertex>+                    <vertex>+                        <position x="-19.9381" y="-12.0517" z="-4.73398" />+                        <normal x="0.835684" y="-0.548889" z="-0.0188035" />+                        <texcoord u="0.480387" v="0.807987" />+                    </vertex>+                    <vertex>+                        <position x="-19.8421" y="-2.38108" z="-5.08986" />+                        <normal x="0.991234" y="-0.0502031" z="-0.122207" />+                        <texcoord u="0.480863" v="0.733586" />+                    </vertex>+                    <vertex>+                        <position x="-19.6375" y="-0.126804" z="-4.53918" />+                        <normal x="0.992646" y="-0.0482806" z="-0.111007" />+                        <texcoord u="0.488173" v="0.716068" />+                    </vertex>+                    <vertex>+                        <position x="-19.6505" y="-0.305721" z="-3.80602" />+                        <normal x="0.989713" y="-0.103683" z="0.0985763" />+                        <texcoord u="0.496213" v="0.717724" />+                    </vertex>+                    <vertex>+                        <position x="-19.8468" y="-2.58809" z="-4.19563" />+                        <normal x="0.992677" y="-0.0757466" z="0.0941005" />+                        <texcoord u="0.49131" v="0.735815" />+                    </vertex>+                    <vertex>+                        <position x="-20.015" y="-9.84356" z="-6.11585" />+                        <normal x="0.940449" y="-0.0229574" z="-0.339157" />+                        <texcoord u="0.461607" v="0.789803" />+                    </vertex>+                    <vertex>+                        <position x="-20.2236" y="-6.99259" z="-6.39964" />+                        <normal x="0.937136" y="0.0185758" z="-0.34847" />+                        <texcoord u="0.461142" v="0.767718" />+                    </vertex>+                    <vertex>+                        <position x="-20.1581" y="-12.1434" z="-6.04537" />+                        <normal x="0.876498" y="-0.343138" z="-0.337651" />+                        <texcoord u="0.46084" v="0.805833" />+                    </vertex>+                    <vertex>+                        <position x="-20.5445" y="-11.5591" z="-6.90394" />+                        <normal x="0.815339" y="-0.192806" z="-0.545938" />+                        <texcoord u="0.449954" v="0.798917" />+                    </vertex>+                    <vertex>+                        <position x="-20.5511" y="-9.79481" z="-7.18516" />+                        <normal x="0.81364" y="-0.0384151" z="-0.580098" />+                        <texcoord u="0.44822" v="0.785991" />+                    </vertex>+                    <vertex>+                        <position x="-20.704" y="-6.80582" z="-7.33527" />+                        <normal x="0.808827" y="0.0181331" z="-0.587766" />+                        <texcoord u="0.450649" v="0.763954" />+                    </vertex>+                    <vertex>+                        <position x="-20.3783" y="-1.82748" z="-6.57924" />+                        <normal x="0.810663" y="0.0772169" z="-0.5804" />+                        <texcoord u="0.465144" v="0.728028" />+                    </vertex>+                    <vertex>+                        <position x="-20.0702" y="0.32362" z="-5.76228" />+                        <normal x="0.820113" y="0.147942" z="-0.552745" />+                        <texcoord u="0.475671" v="0.712482" />+                    </vertex>+                    <vertex>+                        <position x="-19.7848" y="0.0918694" z="-5.2115" />+                        <normal x="0.942961" y="0.0316132" z="-0.331398" />+                        <texcoord u="0.481083" v="0.714205" />+                    </vertex>+                    <vertex>+                        <position x="-20.0281" y="-2.1146" z="-5.90866" />+                        <normal x="0.938663" y="-0.00205558" z="-0.344829" />+                        <texcoord u="0.471833" v="0.730783" />+                    </vertex>+                    <vertex>+                        <position x="-21.256" y="-9.7437" z="-7.9111" />+                        <normal x="0.554508" y="-0.0604318" z="-0.829981" />+                        <texcoord u="0.440863" v="0.782676" />+                    </vertex>+                    <vertex>+                        <position x="-21.3473" y="-6.63035" z="-7.97157" />+                        <normal x="0.549241" y="0.0313972" z="-0.835074" />+                        <texcoord u="0.444918" v="0.760875" />+                    </vertex>+                    <vertex>+                        <position x="-21.1424" y="-12.2257" z="-7.5019" />+                        <normal x="0.503827" y="-0.372072" z="-0.779564" />+                        <texcoord u="0.442623" v="0.800444" />+                    </vertex>+                    <vertex>+                        <position x="-21.9015" y="-11.6037" z="-7.86964" />+                        <normal x="0.101551" y="-0.319219" z="-0.942224" />+                        <texcoord u="0.440839" v="0.794123" />+                    </vertex>+                    <vertex>+                        <position x="-22.0599" y="-9.70546" z="-8.23985" />+                        <normal x="0.118772" y="-0.0935405" z="-0.988506" />+                        <texcoord u="0.439249" v="0.780626" />+                    </vertex>+                    <vertex>+                        <position x="-22.089" y="-6.48845" z="-8.26095" />+                        <normal x="0.12605" y="0.0538945" z="-0.990559" />+                        <texcoord u="0.443752" v="0.759026" />+                    </vertex>+                    <vertex>+                        <position x="-21.4404" y="-1.33585" z="-7.22554" />+                        <normal x="0.177849" y="0.305234" z="-0.935522" />+                        <texcoord u="0.460577" v="0.724722" />+                    </vertex>+                    <vertex>+                        <position x="-20.9462" y="0.723454" z="-6.29139" />+                        <normal x="0.214388" y="0.445699" z="-0.869132" />+                        <texcoord u="0.471569" v="0.710648" />+                    </vertex>+                    <vertex>+                        <position x="-20.4717" y="0.541756" z="-6.13081" />+                        <normal x="0.576823" y="0.29431" z="-0.762008" />+                        <texcoord u="0.472485" v="0.71124" />+                    </vertex>+                    <vertex>+                        <position x="-20.8661" y="-1.55859" z="-7.02884" />+                        <normal x="0.563378" y="0.186607" z="-0.80485" />+                        <texcoord u="0.461407" v="0.725914" />+                    </vertex>+                    <vertex>+                        <position x="-22.893" y="-9.69531" z="-8.11758" />+                        <normal x="-0.379569" y="-0.128069" z="-0.916256" />+                        <texcoord u="0.443062" v="0.780119" />+                    </vertex>+                    <vertex>+                        <position x="-22.8644" y="-6.40235" z="-8.15578" />+                        <normal x="-0.338703" y="0.0723631" z="-0.938107" />+                        <texcoord u="0.446934" v="0.75862" />+                    </vertex>+                    <vertex>+                        <position x="-22.4221" y="-12.2959" z="-7.66394" />+                        <normal x="-0.246489" y="-0.531217" z="-0.810587" />+                        <texcoord u="0.444146" v="0.798205" />+                    </vertex>+                    <vertex>+                        <position x="-23.077" y="-12.3036" z="-6.963" />+                        <normal x="-0.595077" y="-0.698143" z="-0.398095" />+                        <texcoord u="0.454684" v="0.798899" />+                    </vertex>+                    <vertex>+                        <position x="-23.6748" y="-9.6921" z="-7.57576" />+                        <normal x="-0.697589" y="-0.161586" z="-0.69804" />+                        <texcoord u="0.451259" v="0.780662" />+                    </vertex>+                    <vertex>+                        <position x="-23.6042" y="-6.35867" z="-7.68214" />+                        <normal x="-0.673182" y="0.0758534" z="-0.735576" />+                        <texcoord u="0.453676" v="0.759243" />+                    </vertex>+                    <vertex>+                        <position x="-21.4506" y="0.845898" z="-6.21835" />+                        <normal x="-0.195781" y="0.534948" z="-0.821888" />+                        <texcoord u="0.472936" v="0.710794" />+                    </vertex>+                    <vertex>+                        <position x="-21.9374" y="0.902412" z="-5.92995" />+                        <normal x="-0.514639" y="0.56045" z="-0.648878" />+                        <texcoord u="0.476224" v="0.711541" />+                    </vertex>+                    <vertex>+                        <position x="-22.0498" y="-1.18723" z="-7.13737" />+                        <normal x="-0.246961" y="0.384273" z="-0.889576" />+                        <texcoord u="0.462588" v="0.724586" />+                    </vertex>+                    <vertex>+                        <position x="-22.6377" y="-1.11524" z="-6.7853" />+                        <normal x="-0.576618" y="0.407544" z="-0.70811" />+                        <texcoord u="0.46695" v="0.725285" />+                    </vertex>+                    <vertex>+                        <position x="-24.3244" y="-9.67465" z="-6.64586" />+                        <normal x="-0.86317" y="-0.168034" z="-0.476133" />+                        <texcoord u="0.463159" v="0.781663" />+                    </vertex>+                    <vertex>+                        <position x="-23.6255" y="-12.2603" z="-5.88011" />+                        <normal x="-0.617156" y="-0.740588" z="-0.265796" />+                        <texcoord u="0.469359" v="0.799654" />+                    </vertex>+                    <vertex>+                        <position x="-24.2393" y="-6.344" z="-6.8661" />+                        <normal x="-0.848046" y="0.0736179" z="-0.524785" />+                        <texcoord u="0.46345" v="0.760432" />+                    </vertex>+                    <vertex>+                        <position x="-22.3592" y="0.886341" z="-5.44448" />+                        <normal x="-0.71889" y="0.536734" z="-0.441716" />+                        <texcoord u="0.481159" v="0.712741" />+                    </vertex>+                    <vertex>+                        <position x="-22.6799" y="0.805428" z="-4.81713" />+                        <normal x="-0.831394" y="0.504358" z="-0.233252" />+                        <texcoord u="0.487226" v="0.714155" />+                    </vertex>+                    <vertex>+                        <position x="-23.1475" y="-1.12243" z="-6.19029" />+                        <normal x="-0.773808" y="0.398861" z="-0.492068" />+                        <texcoord u="0.473316" v="0.726583" />+                    </vertex>+                    <vertex>+                        <position x="-23.5353" y="-1.19767" z="-5.41963" />+                        <normal x="-0.88015" y="0.383596" z="-0.279625" />+                        <texcoord u="0.481045" v="0.728143" />+                    </vertex>+                    <vertex>+                        <position x="-23.7572" y="-1.32986" z="-4.54059" />+                        <normal x="-0.927168" y="0.367681" z="-0.0719115" />+                        <texcoord u="0.489593" v="0.729708" />+                    </vertex>+                    <vertex>+                        <position x="-22.8632" y="0.667416" z="-4.10309" />+                        <normal x="-0.88546" y="0.463469" z="-0.0340186" />+                        <texcoord u="0.493976" v="0.715595" />+                    </vertex>+                    <vertex>+                        <position x="-23.7953" y="-1.50637" z="-3.64159" />+                        <normal x="-0.924391" y="0.352633" z="0.145433" />+                        <texcoord u="0.498278" v="0.731112" />+                    </vertex>+                    <vertex>+                        <position x="-22.8958" y="0.48843" z="-3.37347" />+                        <normal x="-0.889259" y="0.420448" z="0.180118" />+                        <texcoord u="0.50086" v="0.716901" />+                    </vertex>+                    <vertex>+                        <position x="-24.6327" y="-9.36557" z="-1.31604" />+                        <normal x="-0.932529" y="-0.0549507" z="0.356891" />+                        <texcoord u="0.524491" v="0.780831" />+                    </vertex>+                    <vertex>+                        <position x="-23.8865" y="-11.6977" z="-0.574194" />+                        <normal x="-0.739339" y="-0.548914" z="0.389964" />+                        <texcoord u="0.5357" v="0.795063" />+                    </vertex>+                    <vertex>+                        <position x="-24.7568" y="-6.41711" z="-2.17028" />+                        <normal x="-0.932468" y="0.133973" z="0.335491" />+                        <texcoord u="0.513743" v="0.762928" />+                    </vertex>+                    <vertex>+                        <position x="-22.7643" y="0.284603" z="-2.69939" />+                        <normal x="-0.839588" y="0.363518" z="0.403666" />+                        <texcoord u="0.507324" v="0.717978" />+                    </vertex>+                    <vertex>+                        <position x="-23.6319" y="-1.7146" z="-2.81105" />+                        <normal x="-0.85893" y="0.331673" z="0.390169" />+                        <texcoord u="0.506421" v="0.732291" />+                    </vertex>+                    <vertex>+                        <position x="-24.3597" y="-3.90765" z="-2.65165" />+                        <normal x="-0.89522" y="0.265706" z="0.357744" />+                        <texcoord u="0.50824" v="0.747022" />+                    </vertex>+                    <vertex>+                        <position x="-24.5553" y="-3.7592" z="-3.64575" />+                        <normal x="-0.961613" y="0.252805" z="0.106727" />+                        <texcoord u="0.49818" v="0.746212" />+                    </vertex>+                    <vertex>+                        <position x="-23.9465" y="-4.08419" z="-1.83348" />+                        <normal x="-0.720051" y="0.291252" z="0.629841" />+                        <texcoord u="0.51687" v="0.747712" />+                    </vertex>+                    <vertex>+                        <position x="-24.5126" y="-3.64156" z="-4.72149" />+                        <normal x="-0.961455" y="0.25181" z="-0.110434" />+                        <texcoord u="0.487428" v="0.745133" />+                    </vertex>+                    <vertex>+                        <position x="-24.2562" y="-3.55828" z="-5.7717" />+                        <normal x="-0.91719" y="0.244363" z="-0.314719" />+                        <texcoord u="0.47681" v="0.743777" />+                    </vertex>+                    <vertex>+                        <position x="-23.8106" y="-3.5129" z="-6.6892" />+                        <normal x="-0.818328" y="0.246067" z="-0.519413" />+                        <texcoord u="0.467184" v="0.742293" />+                    </vertex>+                    <vertex>+                        <position x="-23.2259" y="-3.51766" z="-7.39401" />+                        <normal x="-0.625868" y="0.247478" z="-0.739624" />+                        <texcoord u="0.459223" v="0.741003" />+                    </vertex>+                    <vertex>+                        <position x="-22.5522" y="-3.58482" z="-7.80611" />+                        <normal x="-0.298959" y="0.231362" z="-0.925795" />+                        <texcoord u="0.453729" v="0.740336" />+                    </vertex>+                    <vertex>+                        <position x="-21.8519" y="-3.7192" z="-7.90245" />+                        <normal x="0.146548" y="0.180468" z="-0.972602" />+                        <texcoord u="0.451126" v="0.740638" />+                    </vertex>+                    <vertex>+                        <position x="-20.618" y="-4.177" z="-7.11843" />+                        <normal x="0.805457" y="0.0376057" z="-0.591459" />+                        <texcoord u="0.456592" v="0.744923" />+                    </vertex>+                    <vertex>+                        <position x="-21.1877" y="-3.92563" z="-7.65996" />+                        <normal x="0.552024" y="0.103172" z="-0.827421" />+                        <texcoord u="0.452034" v="0.742223" />+                    </vertex>+                    <vertex>+                        <position x="-19.9694" y="-4.68972" z="-5.34364" />+                        <normal x="0.991826" y="-0.0165936" z="-0.126514" />+                        <texcoord u="0.476317" v="0.751641" />+                    </vertex>+                    <vertex>+                        <position x="-20.2011" y="-4.44618" z="-6.31763" />+                        <normal x="0.937142" y="-0.00151666" z="-0.348946" />+                        <texcoord u="0.464922" v="0.748342" />+                    </vertex>+                    <vertex>+                        <position x="-20.1545" y="-4.95387" z="-3.23776" />+                        <normal x="0.953883" y="0.0283594" z="0.298837" />+                        <texcoord u="0.502864" v="0.754808" />+                    </vertex>+                    <vertex>+                        <position x="-19.9548" y="-4.86418" z="-4.28249" />+                        <normal x="0.996649" y="-0.00723521" z="0.0814715" />+                        <texcoord u="0.489588" v="0.753941" />+                    </vertex>+                    <vertex>+                        <position x="-20.5653" y="-4.94311" z="-2.31301" />+                        <normal x="0.851825" y="0.0663693" z="0.519605" />+                        <texcoord u="0.514233" v="0.75424" />+                    </vertex>+                    <vertex>+                        <position x="-21.146" y="-4.84969" z="-1.59251" />+                        <normal x="0.6692" y="0.131792" z="0.731301" />+                        <texcoord u="0.522378" v="0.752812" />+                    </vertex>+                    <vertex>+                        <position x="-21.8552" y="-4.6914" z="-1.16049" />+                        <normal x="0.375562" y="0.199876" z="0.904988" />+                        <texcoord u="0.526472" v="0.751134" />+                    </vertex>+                    <vertex>+                        <position x="-22.6124" y="-4.49471" z="-1.04787" />+                        <normal x="-0.0123764" y="0.261259" z="0.965189" />+                        <texcoord u="0.526677" v="0.749642" />+                    </vertex>+                    <vertex>+                        <position x="-23.3368" y="-4.28609" z="-1.28555" />+                        <normal x="-0.41148" y="0.291171" z="0.863657" />+                        <texcoord u="0.523203" v="0.748535" />+                    </vertex>+                    <vertex>+                        <position x="22.8958" y="0.48843" z="-3.37347" />+                        <normal x="0.889258" y="0.420449" z="0.180119" />+                        <texcoord u="0.50086" v="0.283099" />+                    </vertex>+                    <vertex>+                        <position x="22.7643" y="0.284603" z="-2.69939" />+                        <normal x="0.839588" y="0.363519" z="0.403666" />+                        <texcoord u="0.507324" v="0.282022" />+                    </vertex>+                    <vertex>+                        <position x="22.4851" y="0.0740929" z="-2.14321" />+                        <normal x="0.700007" y="0.285642" z="0.654522" />+                        <texcoord u="0.512855" v="0.281196" />+                    </vertex>+                    <vertex>+                        <position x="24.6327" y="-9.36557" z="-1.31604" />+                        <normal x="0.930317" y="-0.0806656" z="0.357776" />+                        <texcoord u="0.524492" v="0.219169" />+                    </vertex>+                    <vertex>+                        <position x="23.7712" y="-11.7106" z="-0.710693" />+                        <normal x="0.683143" y="-0.623981" z="0.379425" />+                        <texcoord u="0.534237" v="0.20444" />+                    </vertex>+                    <vertex>+                        <position x="22.8632" y="0.667416" z="-4.10309" />+                        <normal x="0.88546" y="0.463469" z="-0.0340174" />+                        <texcoord u="0.493976" v="0.284405" />+                    </vertex>+                    <vertex>+                        <position x="22.6799" y="0.805428" z="-4.81713" />+                        <normal x="0.831395" y="0.504357" z="-0.233253" />+                        <texcoord u="0.487226" v="0.285845" />+                    </vertex>+                    <vertex>+                        <position x="21.9374" y="0.902412" z="-5.92995" />+                        <normal x="0.514639" y="0.56045" z="-0.648877" />+                        <texcoord u="0.476224" v="0.288459" />+                    </vertex>+                    <vertex>+                        <position x="22.3592" y="0.886341" z="-5.44448" />+                        <normal x="0.71889" y="0.536734" z="-0.441717" />+                        <texcoord u="0.481159" v="0.287259" />+                    </vertex>+                    <vertex>+                        <position x="24.3244" y="-9.67465" z="-6.64586" />+                        <normal x="0.869991" y="-0.127483" z="-0.476302" />+                        <texcoord u="0.463159" v="0.218337" />+                    </vertex>+                    <vertex>+                        <position x="23.6748" y="-9.6921" z="-7.57576" />+                        <normal x="0.701924" y="-0.11513" z="-0.702885" />+                        <texcoord u="0.451259" v="0.219338" />+                    </vertex>+                    <vertex>+                        <position x="23.687" y="-12.3138" z="-6.37675" />+                        <normal x="0.685384" y="-0.588568" z="-0.428762" />+                        <texcoord u="0.46323" v="0.200948" />+                    </vertex>+                    <vertex>+                        <position x="23.4092" y="-11.6446" z="-7.21501" />+                        <normal x="0.667248" y="-0.421927" z="-0.613805" />+                        <texcoord u="0.452925" v="0.206196" />+                    </vertex>+                    <vertex>+                        <position x="20.9462" y="0.723454" z="-6.29139" />+                        <normal x="-0.214391" y="0.445698" z="-0.869132" />+                        <texcoord u="0.471569" v="0.289352" />+                    </vertex>+                    <vertex>+                        <position x="21.4506" y="0.845898" z="-6.21835" />+                        <normal x="0.195781" y="0.534948" z="-0.821888" />+                        <texcoord u="0.472936" v="0.289206" />+                    </vertex>+                    <vertex>+                        <position x="22.6004" y="-12.3045" z="-7.57388" />+                        <normal x="0.283736" y="-0.557002" z="-0.78054" />+                        <texcoord u="0.445774" v="0.201789" />+                    </vertex>+                    <vertex>+                        <position x="22.893" y="-9.69531" z="-8.11758" />+                        <normal x="0.359294" y="-0.1189" z="-0.925619" />+                        <texcoord u="0.443062" v="0.219881" />+                    </vertex>+                    <vertex>+                        <position x="21.9807" y="-11.6075" z="-7.82961" />+                        <normal x="-0.122796" y="-0.380177" z="-0.916726" />+                        <texcoord u="0.441583" v="0.205852" />+                    </vertex>+                    <vertex>+                        <position x="22.0599" y="-9.70546" z="-8.23985" />+                        <normal x="-0.118025" y="-0.105807" z="-0.987358" />+                        <texcoord u="0.43925" v="0.219374" />+                    </vertex>+                    <vertex>+                        <position x="20.4717" y="0.541752" z="-6.1308" />+                        <normal x="-0.576823" y="0.29431" z="-0.762008" />+                        <texcoord u="0.472485" v="0.28876" />+                    </vertex>+                    <vertex>+                        <position x="20.0702" y="0.32362" z="-5.76228" />+                        <normal x="-0.820112" y="0.147943" z="-0.552747" />+                        <texcoord u="0.475671" v="0.287518" />+                    </vertex>+                    <vertex>+                        <position x="21.3207" y="-12.2342" z="-7.41184" />+                        <normal x="-0.480206" y="-0.508242" z="-0.714907" />+                        <texcoord u="0.444372" v="0.199554" />+                    </vertex>+                    <vertex>+                        <position x="21.256" y="-9.7437" z="-7.9111" />+                        <normal x="-0.553142" y="-0.0879589" z="-0.82843" />+                        <texcoord u="0.440863" v="0.217324" />+                    </vertex>+                    <vertex>+                        <position x="20.6237" y="-11.5629" z="-6.86391" />+                        <normal x="-0.788921" y="-0.335098" z="-0.515085" />+                        <texcoord u="0.450729" v="0.201099" />+                    </vertex>+                    <vertex>+                        <position x="20.5511" y="-9.79481" z="-7.18516" />+                        <normal x="-0.812023" y="-0.0629012" z="-0.580226" />+                        <texcoord u="0.44822" v="0.214009" />+                    </vertex>+                    <vertex>+                        <position x="19.7848" y="0.0918694" z="-5.2115" />+                        <normal x="-0.942961" y="0.0316133" z="-0.331398" />+                        <texcoord u="0.481083" v="0.285795" />+                    </vertex>+                    <vertex>+                        <position x="19.6375" y="-0.126804" z="-4.53918" />+                        <normal x="-0.992646" y="-0.0482805" z="-0.111007" />+                        <texcoord u="0.488173" v="0.283932" />+                    </vertex>+                    <vertex>+                        <position x="20.3364" y="-12.1519" z="-5.95531" />+                        <normal x="-0.807731" y="-0.500192" z="-0.312055" />+                        <texcoord u="0.462558" v="0.194328" />+                    </vertex>+                    <vertex>+                        <position x="20.015" y="-9.84356" z="-6.11584" />+                        <normal x="-0.941688" y="-0.0629599" z="-0.330544" />+                        <texcoord u="0.461607" v="0.210197" />+                    </vertex>+                    <vertex>+                        <position x="20.069" y="-12.0199" z="-4.33856" />+                        <normal x="-0.786237" y="-0.617442" z="-0.024409" />+                        <texcoord u="0.486591" v="0.192192" />+                    </vertex>+                    <vertex>+                        <position x="19.6836" y="-9.8558" z="-4.82037" />+                        <normal x="-0.985377" y="-0.0693714" z="-0.155625" />+                        <texcoord u="0.479837" v="0.207328" />+                    </vertex>+                    <vertex>+                        <position x="19.6505" y="-0.305721" z="-3.80602" />+                        <normal x="-0.989713" y="-0.103683" z="0.0985763" />+                        <texcoord u="0.496214" v="0.282276" />+                    </vertex>+                    <vertex>+                        <position x="19.8167" y="-0.432426" z="-3.08574" />+                        <normal x="-0.938879" y="-0.135264" z="0.316559" />+                        <texcoord u="0.504183" v="0.281041" />+                    </vertex>+                    <vertex>+                        <position x="19.593" y="-9.79735" z="-3.41596" />+                        <normal x="-0.999808" y="-0.018938" z="0.00501257" />+                        <texcoord u="0.500723" v="0.206787" />+                    </vertex>+                    <vertex>+                        <position x="19.971" y="-11.7806" z="-2.40497" />+                        <normal x="-0.799006" y="-0.590108" z="0.115591" />+                        <texcoord u="0.516244" v="0.193762" />+                    </vertex>+                    <vertex>+                        <position x="20.1291" y="-0.494457" z="-2.452" />+                        <normal x="-0.82872" y="-0.145949" z="0.540298" />+                        <texcoord u="0.511048" v="0.280305" />+                    </vertex>+                    <vertex>+                        <position x="20.5539" y="-0.490982" z="-1.96167" />+                        <normal x="-0.626383" y="-0.123534" z="0.769665" />+                        <texcoord u="0.516084" v="0.279994" />+                    </vertex>+                    <vertex>+                        <position x="21.0568" y="-0.421173" z="-1.67158" />+                        <normal x="-0.315036" y="-0.0584941" z="0.947275" />+                        <texcoord u="0.51873" v="0.279997" />+                    </vertex>+                    <vertex>+                        <position x="21.5824" y="-0.29562" z="-1.60053" />+                        <normal x="0.0780872" y="0.0515837" z="0.995611" />+                        <texcoord u="0.51898" v="0.280213" />+                    </vertex>+                    <vertex>+                        <position x="21.5773" y="-9.3113" z="0.673792" />+                        <normal x="-0.391006" y="0.329068" z="0.859551" />+                        <texcoord u="0.553754" v="0.219711" />+                    </vertex>+                    <vertex>+                        <position x="21.3996" y="-11.35" z="0.902664" />+                        <normal x="-0.338849" y="-0.42018" z="0.841802" />+                        <texcoord u="0.559866" v="0.206635" />+                    </vertex>+                    <vertex>+                        <position x="22.0748" y="-0.124924" z="-1.76733" />+                        <normal x="0.449284" y="0.177957" z="0.875486" />+                        <texcoord u="0.516865" v="0.280608" />+                    </vertex>+                    <vertex>+                        <position x="21.9565" y="-12.4097" z="-0.975985" />+                        <normal x="-0.0512123" y="-0.94847" z="0.312702" />+                        <texcoord u="0.534425" v="0.196234" />+                    </vertex>+                    <vertex>+                        <position x="21.9739" y="-12.8519" z="-4.15028" />+                        <normal x="-0.0495822" y="-0.991867" z="0.117222" />+                        <texcoord u="0.490365" v="0.191376" />+                    </vertex>+                    <vertex>+                        <position x="21.9486" y="-13.0706" z="-6.40706" />+                        <normal x="-0.0858526" y="-0.94017" z="-0.329712" />+                        <texcoord u="0.458838" v="0.192996" />+                    </vertex>+                    <vertex>+                        <position x="-22.4177" y="-12.358" z="-0.429979" />+                        <normal x="-0.0686899" y="-0.927577" z="0.367264" />+                        <texcoord u="0.540801" v="0.801445" />+                    </vertex>+                    <vertex>+                        <position x="-22.0166" y="-12.6542" z="-2.69811" />+                        <normal x="0.0319744" y="-0.991179" z="0.128613" />+                        <texcoord u="0.510691" v="0.807232" />+                    </vertex>+                    <vertex>+                        <position x="-21.4503" y="-12.9789" z="-5.73196" />+                        <normal x="0.0339336" y="-0.996133" z="0.081043" />+                        <texcoord u="0.467345" v="0.80889" />+                    </vertex>+                    <vertex>+                        <position x="-21.7024" y="-12.8563" z="-4.4205" />+                        <normal x="0.0581807" y="-0.995987" z="0.068006" />+                        <texcoord u="0.486379" v="0.809146" />+                    </vertex>+                    <vertex>+                        <position x="-21.2354" y="-13.0364" z="-6.76731" />+                        <normal x="0.328134" y="-0.841393" z="-0.429402" />+                        <texcoord u="0.452173" v="0.807483" />+                    </vertex>+                </vertexbuffer>+            </geometry>+        </submesh>+    </submeshes>+    <levelofdetail strategy="Distance" numlevels="6" manual="false">+        <lodgenerated value="1000">+            <lodfacelist submeshindex="0" numfaces="60">+                <face v1="1" v2="2" v3="6" />+                <face v1="20" v2="21" v3="22" />+                <face v1="24" v2="14" v3="15" />+                <face v1="15" v2="14" v3="31" />+                <face v1="18" v2="19" v3="27" />+                <face v1="19" v2="25" v3="27" />+                <face v1="29" v2="19" v3="18" />+                <face v1="33" v2="2" v3="1" />+                <face v1="7" v2="3" v3="4" />+                <face v1="7" v2="9" v3="3" />+                <face v1="1" v2="6" v3="34" />+                <face v1="35" v2="13" v3="2" />+                <face v1="4" v2="3" v3="11" />+                <face v1="34" v2="36" v3="37" />+                <face v1="6" v2="36" v3="34" />+                <face v1="9" v2="38" v3="39" />+                <face v1="36" v2="2" v3="13" />+                <face v1="6" v2="2" v3="36" />+                <face v1="40" v2="13" v3="35" />+                <face v1="40" v2="36" v3="13" />+                <face v1="41" v2="38" v3="42" />+                <face v1="41" v2="39" v3="38" />+                <face v1="43" v2="37" v3="44" />+                <face v1="37" v2="43" v3="45" />+                <face v1="1" v2="34" v3="47" />+                <face v1="21" v2="24" v3="48" />+                <face v1="49" v2="25" v3="50" />+                <face v1="14" v2="21" v3="20" />+                <face v1="21" v2="14" v3="24" />+                <face v1="49" v2="51" v3="52" />+                <face v1="49" v2="50" v3="51" />+                <face v1="48" v2="53" v3="54" />+                <face v1="55" v2="53" v3="48" />+                <face v1="24" v2="15" v3="57" />+                <face v1="57" v2="48" v3="24" />+                <face v1="57" v2="55" v3="48" />+                <face v1="50" v2="29" v3="51" />+                <face v1="22" v2="48" v3="54" />+                <face v1="22" v2="21" v3="48" />+                <face v1="25" v2="55" v3="57" />+                <face v1="49" v2="55" v3="25" />+                <face v1="55" v2="52" v3="53" />+                <face v1="55" v2="49" v3="52" />+                <face v1="27" v2="57" v3="15" />+                <face v1="25" v2="57" v3="27" />+                <face v1="19" v2="50" v3="25" />+                <face v1="19" v2="29" v3="50" />+                <face v1="37" v2="47" v3="34" />+                <face v1="37" v2="45" v3="47" />+                <face v1="11" v2="39" v3="41" />+                <face v1="37" v2="40" v3="44" />+                <face v1="37" v2="36" v3="40" />+                <face v1="45" v2="9" v3="47" />+                <face v1="9" v2="45" v3="38" />+                <face v1="42" v2="45" v3="43" />+                <face v1="42" v2="38" v3="45" />+                <face v1="47" v2="7" v3="1" />+                <face v1="7" v2="47" v3="9" />+                <face v1="39" v2="3" v3="9" />+                <face v1="39" v2="11" v3="3" />+            </lodfacelist>+            <lodfacelist submeshindex="1" numfaces="2372">+                <face v1="0" v2="1" v3="2" />+                <face v1="8" v2="9" v3="10" />+                <face v1="11" v2="12" v3="13" />+                <face v1="14" v2="15" v3="16" />+                <face v1="14" v2="17" v3="15" />+                <face v1="18" v2="19" v3="20" />+                <face v1="29" v2="8" v3="30" />+                <face v1="29" v2="9" v3="8" />+                <face v1="31" v2="34" v3="2" />+                <face v1="43" v2="44" v3="45" />+                <face v1="49" v2="50" v3="53" />+                <face v1="52" v2="53" v3="54" />+                <face v1="56" v2="21" v3="23" />+                <face v1="59" v2="60" v3="61" />+                <face v1="59" v2="62" v3="60" />+                <face v1="63" v2="64" v3="65" />+                <face v1="60" v2="66" v3="67" />+                <face v1="60" v2="68" v3="66" />+                <face v1="69" v2="70" v3="71" />+                <face v1="71" v2="63" v3="69" />+                <face v1="72" v2="73" v3="74" />+                <face v1="72" v2="75" v3="73" />+                <face v1="76" v2="77" v3="78" />+                <face v1="77" v2="86" v3="78" />+                <face v1="80" v2="81" v3="82" />+                <face v1="80" v2="83" v3="81" />+                <face v1="84" v2="85" v3="86" />+                <face v1="84" v2="68" v3="85" />+                <face v1="87" v2="88" v3="89" />+                <face v1="90" v2="91" v3="92" />+                <face v1="96" v2="97" v3="98" />+                <face v1="97" v2="99" v3="98" />+                <face v1="100" v2="101" v3="102" />+                <face v1="100" v2="102" v3="1209" />+                <face v1="1209" v2="104" v3="100" />+                <face v1="108" v2="109" v3="110" />+                <face v1="111" v2="112" v3="1217" />+                <face v1="111" v2="1329" v3="112" />+                <face v1="115" v2="116" v3="117" />+                <face v1="117" v2="1080" v3="115" />+                <face v1="119" v2="120" v3="121" />+                <face v1="119" v2="122" v3="120" />+                <face v1="126" v2="127" v3="41" />+                <face v1="38" v2="134" v3="132" />+                <face v1="137" v2="138" v3="46" />+                <face v1="46" v2="50" v3="137" />+                <face v1="139" v2="140" v3="141" />+                <face v1="143" v2="144" v3="145" />+                <face v1="145" v2="146" v3="143" />+                <face v1="148" v2="150" v3="149" />+                <face v1="160" v2="161" v3="162" />+                <face v1="162" v2="157" v3="160" />+                <face v1="163" v2="161" v3="165" />+                <face v1="165" v2="166" v3="163" />+                <face v1="171" v2="172" v3="173" />+                <face v1="175" v2="176" v3="177" />+                <face v1="176" v2="172" v3="177" />+                <face v1="178" v2="177" v3="179" />+                <face v1="180" v2="181" v3="182" />+                <face v1="182" v2="183" v3="180" />+                <face v1="184" v2="185" v3="186" />+                <face v1="185" v2="187" v3="186" />+                <face v1="1343" v2="193" v3="194" />+                <face v1="193" v2="195" v3="194" />+                <face v1="196" v2="197" v3="198" />+                <face v1="196" v2="195" v3="197" />+                <face v1="202" v2="203" v3="1065" />+                <face v1="206" v2="199" v3="201" />+                <face v1="208" v2="209" v3="210" />+                <face v1="209" v2="211" v3="210" />+                <face v1="173" v2="119" v3="212" />+                <face v1="212" v2="171" v3="173" />+                <face v1="218" v2="213" v3="216" />+                <face v1="227" v2="221" v3="222" />+                <face v1="222" v2="168" v3="227" />+                <face v1="223" v2="224" v3="225" />+                <face v1="223" v2="226" v3="224" />+                <face v1="227" v2="352" v3="228" />+                <face v1="230" v2="228" v3="1040" />+                <face v1="236" v2="237" v3="238" />+                <face v1="238" v2="240" v3="236" />+                <face v1="240" v2="241" v3="242" />+                <face v1="240" v2="243" v3="241" />+                <face v1="244" v2="245" v3="246" />+                <face v1="248" v2="251" v3="249" />+                <face v1="252" v2="253" v3="254" />+                <face v1="254" v2="255" v3="252" />+                <face v1="256" v2="1040" v3="258" />+                <face v1="256" v2="259" v3="1040" />+                <face v1="260" v2="261" v3="262" />+                <face v1="268" v2="263" v3="266" />+                <face v1="269" v2="270" v3="271" />+                <face v1="269" v2="272" v3="270" />+                <face v1="273" v2="274" v3="275" />+                <face v1="273" v2="276" v3="274" />+                <face v1="278" v2="279" v3="280" />+                <face v1="278" v2="281" v3="279" />+                <face v1="282" v2="283" v3="284" />+                <face v1="285" v2="286" v3="287" />+                <face v1="285" v2="284" v3="286" />+                <face v1="292" v2="24" v3="293" />+                <face v1="292" v2="21" v3="24" />+                <face v1="260" v2="262" v3="287" />+                <face v1="285" v2="295" v3="296" />+                <face v1="296" v2="297" v3="285" />+                <face v1="298" v2="89" v3="88" />+                <face v1="88" v2="299" v3="298" />+                <face v1="105" v2="300" v3="301" />+                <face v1="303" v2="304" v3="305" />+                <face v1="304" v2="99" v3="305" />+                <face v1="97" v2="307" v3="101" />+                <face v1="308" v2="106" v3="105" />+                <face v1="303" v2="100" v3="309" />+                <face v1="305" v2="97" v3="100" />+                <face v1="310" v2="311" v3="124" />+                <face v1="124" v2="312" v3="310" />+                <face v1="313" v2="314" v3="315" />+                <face v1="316" v2="63" v3="71" />+                <face v1="316" v2="110" v3="63" />+                <face v1="315" v2="317" v3="313" />+                <face v1="315" v2="318" v3="317" />+                <face v1="319" v2="320" v3="321" />+                <face v1="319" v2="1205" v3="320" />+                <face v1="323" v2="320" v3="314" />+                <face v1="323" v2="120" v3="320" />+                <face v1="298" v2="106" v3="308" />+                <face v1="311" v2="310" v3="87" />+                <face v1="324" v2="92" v3="91" />+                <face v1="326" v2="109" v3="327" />+                <face v1="90" v2="328" v3="91" />+                <face v1="90" v2="318" v3="328" />+                <face v1="329" v2="330" v3="92" />+                <face v1="331" v2="332" v3="333" />+                <face v1="333" v2="43" v3="331" />+                <face v1="43" v2="335" v3="336" />+                <face v1="43" v2="337" v3="338" />+                <face v1="339" v2="340" v3="45" />+                <face v1="341" v2="342" v3="331" />+                <face v1="337" v2="344" v3="345" />+                <face v1="337" v2="43" v3="344" />+                <face v1="347" v2="348" v3="349" />+                <face v1="310" v2="88" v3="87" />+                <face v1="351" v2="352" v3="353" />+                <face v1="355" v2="178" v3="356" />+                <face v1="178" v2="357" v3="356" />+                <face v1="153" v2="355" v3="154" />+                <face v1="153" v2="358" v3="355" />+                <face v1="148" v2="359" v3="152" />+                <face v1="360" v2="361" v3="362" />+                <face v1="363" v2="170" v3="364" />+                <face v1="170" v2="165" v3="364" />+                <face v1="186" v2="365" v3="184" />+                <face v1="186" v2="366" v3="365" />+                <face v1="367" v2="368" v3="369" />+                <face v1="372" v2="373" v3="179" />+                <face v1="222" v2="374" v3="170" />+                <face v1="170" v2="168" v3="222" />+                <face v1="375" v2="144" v3="376" />+                <face v1="375" v2="145" v3="144" />+                <face v1="377" v2="211" v3="378" />+                <face v1="381" v2="354" v3="201" />+                <face v1="382" v2="383" v3="384" />+                <face v1="384" v2="1329" v3="382" />+                <face v1="385" v2="93" v3="94" />+                <face v1="386" v2="387" v3="388" />+                <face v1="390" v2="160" v3="157" />+                <face v1="144" v2="393" v3="376" />+                <face v1="393" v2="1075" v3="376" />+                <face v1="395" v2="396" v3="166" />+                <face v1="255" v2="397" v3="252" />+                <face v1="397" v2="398" v3="252" />+                <face v1="132" v2="399" v3="38" />+                <face v1="401" v2="971" v3="1321" />+                <face v1="404" v2="243" v3="405" />+                <face v1="404" v2="241" v3="243" />+                <face v1="406" v2="254" v3="407" />+                <face v1="407" v2="256" v3="406" />+                <face v1="408" v2="409" v3="410" />+                <face v1="408" v2="242" v3="409" />+                <face v1="411" v2="412" v3="31" />+                <face v1="411" v2="258" v3="412" />+                <face v1="397" v2="413" v3="6" />+                <face v1="421" v2="422" v3="423" />+                <face v1="424" v2="425" v3="426" />+                <face v1="433" v2="434" v3="435" />+                <face v1="433" v2="436" v3="434" />+                <face v1="483" v2="824" v3="488" />+                <face v1="440" v2="441" v3="442" />+                <face v1="443" v2="444" v3="445" />+                <face v1="444" v2="446" v3="445" />+                <face v1="447" v2="448" v3="449" />+                <face v1="451" v2="452" v3="453" />+                <face v1="454" v2="1401" v3="802" />+                <face v1="802" v2="457" v3="454" />+                <face v1="458" v2="459" v3="460" />+                <face v1="463" v2="464" v3="461" />+                <face v1="465" v2="466" v3="467" />+                <face v1="469" v2="470" v3="471" />+                <face v1="469" v2="472" v3="470" />+                <face v1="41" v2="39" v3="474" />+                <face v1="477" v2="478" v3="436" />+                <face v1="1193" v2="480" v3="481" />+                <face v1="480" v2="482" v3="481" />+                <face v1="483" v2="484" v3="480" />+                <face v1="489" v2="490" v3="491" />+                <face v1="492" v2="489" v3="491" />+                <face v1="492" v2="493" v3="489" />+                <face v1="497" v2="498" v3="499" />+                <face v1="501" v2="502" v3="503" />+                <face v1="504" v2="503" v3="502" />+                <face v1="504" v2="505" v3="503" />+                <face v1="506" v2="507" v3="508" />+                <face v1="506" v2="509" v3="507" />+                <face v1="510" v2="511" v3="512" />+                <face v1="510" v2="466" v3="511" />+                <face v1="514" v2="515" v3="516" />+                <face v1="517" v2="518" v3="1471" />+                <face v1="517" v2="474" v3="518" />+                <face v1="466" v2="522" v3="520" />+                <face v1="788" v2="527" v3="916" />+                <face v1="788" v2="529" v3="527" />+                <face v1="530" v2="531" v3="532" />+                <face v1="532" v2="533" v3="530" />+                <face v1="533" v2="534" v3="535" />+                <face v1="536" v2="530" v3="537" />+                <face v1="539" v2="540" v3="541" />+                <face v1="541" v2="542" v3="539" />+                <face v1="543" v2="539" v3="544" />+                <face v1="540" v2="543" v3="546" />+                <face v1="541" v2="547" v3="542" />+                <face v1="553" v2="554" v3="555" />+                <face v1="556" v2="557" v3="558" />+                <face v1="558" v2="559" v3="556" />+                <face v1="560" v2="561" v3="562" />+                <face v1="562" v2="563" v3="560" />+                <face v1="564" v2="565" v3="566" />+                <face v1="566" v2="567" v3="564" />+                <face v1="568" v2="569" v3="570" />+                <face v1="570" v2="571" v3="568" />+                <face v1="1601" v2="573" v3="574" />+                <face v1="555" v2="575" v3="576" />+                <face v1="553" v2="577" v3="578" />+                <face v1="579" v2="580" v3="581" />+                <face v1="580" v2="582" v3="581" />+                <face v1="583" v2="584" v3="585" />+                <face v1="583" v2="586" v3="584" />+                <face v1="766" v2="588" v3="583" />+                <face v1="588" v2="586" v3="583" />+                <face v1="589" v2="590" v3="591" />+                <face v1="591" v2="592" v3="589" />+                <face v1="597" v2="598" v3="599" />+                <face v1="597" v2="600" v3="598" />+                <face v1="601" v2="602" v3="603" />+                <face v1="601" v2="600" v3="602" />+                <face v1="598" v2="604" v3="593" />+                <face v1="589" v2="605" v3="590" />+                <face v1="606" v2="607" v3="894" />+                <face v1="607" v2="609" v3="894" />+                <face v1="603" v2="451" v3="611" />+                <face v1="611" v2="601" v3="603" />+                <face v1="416" v2="614" v3="615" />+                <face v1="614" v2="616" v3="615" />+                <face v1="440" v2="617" v3="618" />+                <face v1="449" v2="435" v3="421" />+                <face v1="448" v2="435" v3="449" />+                <face v1="448" v2="433" v3="435" />+                <face v1="619" v2="620" v3="621" />+                <face v1="621" v2="622" v3="619" />+                <face v1="451" v2="623" v3="624" />+                <face v1="626" v2="457" v3="627" />+                <face v1="628" v2="436" v3="478" />+                <face v1="478" v2="632" v3="628" />+                <face v1="634" v2="635" v3="631" />+                <face v1="637" v2="638" v3="639" />+                <face v1="637" v2="1581" v3="638" />+                <face v1="641" v2="425" v3="642" />+                <face v1="641" v2="426" v3="425" />+                <face v1="643" v2="427" v3="426" />+                <face v1="426" v2="644" v3="643" />+                <face v1="645" v2="644" v3="646" />+                <face v1="646" v2="452" v3="645" />+                <face v1="647" v2="602" v3="648" />+                <face v1="647" v2="649" v3="602" />+                <face v1="451" v2="603" v3="452" />+                <face v1="603" v2="602" v3="452" />+                <face v1="650" v2="453" v3="646" />+                <face v1="646" v2="641" v3="650" />+                <face v1="494" v2="653" v3="651" />+                <face v1="690" v2="655" v3="656" />+                <face v1="690" v2="657" v3="655" />+                <face v1="658" v2="659" v3="660" />+                <face v1="495" v2="494" v3="690" />+                <face v1="489" v2="662" v3="663" />+                <face v1="495" v2="690" v3="656" />+                <face v1="664" v2="489" v3="665" />+                <face v1="670" v2="671" v3="503" />+                <face v1="672" v2="673" v3="674" />+                <face v1="675" v2="668" v3="666" />+                <face v1="666" v2="676" v3="675" />+                <face v1="677" v2="505" v3="678" />+                <face v1="680" v2="681" v3="98" />+                <face v1="681" v2="59" v3="98" />+                <face v1="682" v2="683" v3="684" />+                <face v1="682" v2="685" v3="683" />+                <face v1="686" v2="687" v3="688" />+                <face v1="688" v2="932" v3="686" />+                <face v1="494" v2="651" v3="690" />+                <face v1="515" v2="669" v3="691" />+                <face v1="669" v2="666" v3="691" />+                <face v1="692" v2="693" v3="688" />+                <face v1="694" v2="498" v3="497" />+                <face v1="497" v2="502" v3="694" />+                <face v1="695" v2="696" v3="866" />+                <face v1="499" v2="699" v3="700" />+                <face v1="701" v2="702" v3="703" />+                <face v1="701" v2="704" v3="702" />+                <face v1="705" v2="706" v3="707" />+                <face v1="708" v2="709" v3="707" />+                <face v1="707" v2="701" v3="703" />+                <face v1="463" v2="707" v3="712" />+                <face v1="701" v2="707" v3="713" />+                <face v1="714" v2="704" v3="715" />+                <face v1="715" v2="1464" v3="714" />+                <face v1="719" v2="720" v3="607" />+                <face v1="719" v2="721" v3="720" />+                <face v1="511" v2="722" v3="512" />+                <face v1="511" v2="466" v3="722" />+                <face v1="719" v2="725" v3="721" />+                <face v1="727" v2="728" v3="543" />+                <face v1="728" v2="546" v3="543" />+                <face v1="556" v2="559" v3="574" />+                <face v1="574" v2="573" v3="556" />+                <face v1="733" v2="734" v3="735" />+                <face v1="733" v2="736" v3="734" />+                <face v1="569" v2="552" v3="570" />+                <face v1="569" v2="550" v3="552" />+                <face v1="566" v2="737" v3="567" />+                <face v1="566" v2="739" v3="737" />+                <face v1="563" v2="739" v3="560" />+                <face v1="563" v2="740" v3="739" />+                <face v1="741" v2="744" v3="742" />+                <face v1="745" v2="746" v3="747" />+                <face v1="747" v2="748" v3="745" />+                <face v1="749" v2="750" v3="751" />+                <face v1="751" v2="752" v3="749" />+                <face v1="547" v2="753" v3="754" />+                <face v1="559" v2="756" v3="757" />+                <face v1="758" v2="647" v3="759" />+                <face v1="759" v2="760" v3="758" />+                <face v1="761" v2="762" v3="581" />+                <face v1="762" v2="484" v3="581" />+                <face v1="764" v2="765" v3="531" />+                <face v1="916" v2="766" v3="788" />+                <face v1="767" v2="768" v3="769" />+                <face v1="769" v2="506" v3="767" />+                <face v1="678" v2="507" v3="771" />+                <face v1="774" v2="775" v3="776" />+                <face v1="774" v2="593" v3="775" />+                <face v1="550" v2="734" v3="774" />+                <face v1="734" v2="593" v3="774" />+                <face v1="777" v2="744" v3="778" />+                <face v1="744" v2="741" v3="778" />+                <face v1="752" v2="751" v3="783" />+                <face v1="740" v2="563" v3="784" />+                <face v1="555" v2="576" v3="786" />+                <face v1="787" v2="529" v3="788" />+                <face v1="789" v2="534" v3="790" />+                <face v1="534" v2="532" v3="790" />+                <face v1="534" v2="792" v3="535" />+                <face v1="795" v2="722" v3="1503" />+                <face v1="795" v2="512" v3="722" />+                <face v1="797" v2="472" v3="798" />+                <face v1="797" v2="470" v3="472" />+                <face v1="1559" v2="621" v3="620" />+                <face v1="801" v2="627" v3="802" />+                <face v1="801" v2="803" v3="627" />+                <face v1="804" v2="805" v3="806" />+                <face v1="804" v2="807" v3="805" />+                <face v1="808" v2="622" v3="469" />+                <face v1="469" v2="809" v3="808" />+                <face v1="418" v2="810" v3="811" />+                <face v1="812" v2="813" v3="650" />+                <face v1="650" v2="814" v3="812" />+                <face v1="815" v2="816" v3="817" />+                <face v1="815" v2="818" v3="816" />+                <face v1="819" v2="820" v3="617" />+                <face v1="820" v2="821" v3="617" />+                <face v1="419" v2="418" v3="811" />+                <face v1="457" v2="802" v3="627" />+                <face v1="825" v2="622" v3="808" />+                <face v1="825" v2="619" v3="622" />+                <face v1="809" v2="471" v3="826" />+                <face v1="809" v2="469" v3="471" />+                <face v1="827" v2="803" v3="801" />+                <face v1="829" v2="470" v3="797" />+                <face v1="829" v2="830" v3="470" />+                <face v1="722" v2="466" v3="794" />+                <face v1="794" v2="1503" v3="722" />+                <face v1="465" v2="523" v3="831" />+                <face v1="832" v2="811" v3="810" />+                <face v1="832" v2="833" v3="811" />+                <face v1="792" v2="534" v3="789" />+                <face v1="562" v2="834" v3="563" />+                <face v1="834" v2="784" v3="563" />+                <face v1="835" v2="773" v3="659" />+                <face v1="508" v2="836" v3="767" />+                <face v1="767" v2="506" v3="508" />+                <face v1="837" v2="731" v3="838" />+                <face v1="790" v2="759" v3="840" />+                <face v1="790" v2="787" v3="759" />+                <face v1="595" v2="841" v3="599" />+                <face v1="595" v2="736" v3="841" />+                <face v1="559" v2="842" v3="574" />+                <face v1="564" v2="746" v3="745" />+                <face v1="567" v2="736" v3="733" />+                <face v1="567" v2="737" v3="736" />+                <face v1="570" v2="552" v3="578" />+                <face v1="753" v2="541" v3="540" />+                <face v1="753" v2="547" v3="541" />+                <face v1="754" v2="756" v3="547" />+                <face v1="756" v2="559" v3="547" />+                <face v1="846" v2="776" v3="775" />+                <face v1="775" v2="1401" v3="846" />+                <face v1="848" v2="849" v3="850" />+                <face v1="851" v2="852" v3="86" />+                <face v1="349" v2="460" v3="459" />+                <face v1="349" v2="348" v3="460" />+                <face v1="715" v2="704" v3="713" />+                <face v1="704" v2="701" v3="713" />+                <face v1="712" v2="854" v3="463" />+                <face v1="854" v2="464" v3="463" />+                <face v1="711" v2="855" v3="856" />+                <face v1="709" v2="713" v3="707" />+                <face v1="706" v2="708" v3="707" />+                <face v1="703" v2="702" v3="712" />+                <face v1="712" v2="707" v3="703" />+                <face v1="856" v2="857" v3="705" />+                <face v1="705" v2="711" v3="856" />+                <face v1="685" v2="682" v3="858" />+                <face v1="859" v2="692" v3="683" />+                <face v1="859" v2="693" v3="692" />+                <face v1="504" v2="767" v3="836" />+                <face v1="504" v2="497" v3="767" />+                <face v1="498" v2="694" v3="672" />+                <face v1="848" v2="850" v3="691" />+                <face v1="861" v2="495" v3="862" />+                <face v1="687" v2="686" v3="720" />+                <face v1="864" v2="686" v3="865" />+                <face v1="686" v2="932" v3="865" />+                <face v1="866" v2="692" v3="688" />+                <face v1="688" v2="867" v3="866" />+                <face v1="868" v2="501" v3="503" />+                <face v1="503" v2="671" v3="868" />+                <face v1="688" v2="687" v3="867" />+                <face v1="515" v2="691" v3="850" />+                <face v1="850" v2="869" v3="515" />+                <face v1="489" v2="663" v3="665" />+                <face v1="490" v2="489" v3="664" />+                <face v1="494" v2="495" v3="861" />+                <face v1="662" v2="870" v3="663" />+                <face v1="662" v2="871" v3="870" />+                <face v1="664" v2="665" v3="98" />+                <face v1="660" v2="659" v3="871" />+                <face v1="871" v2="662" v3="660" />+                <face v1="874" v2="653" v3="494" />+                <face v1="875" v2="876" v3="862" />+                <face v1="875" v2="849" v3="876" />+                <face v1="814" v2="641" v3="642" />+                <face v1="814" v2="650" v3="641" />+                <face v1="646" v2="453" v3="452" />+                <face v1="647" v2="758" v3="649" />+                <face v1="758" v2="488" v3="649" />+                <face v1="646" v2="644" v3="641" />+                <face v1="644" v2="426" v3="641" />+                <face v1="426" v2="427" v3="424" />+                <face v1="879" v2="880" v3="881" />+                <face v1="879" v2="882" v3="880" />+                <face v1="883" v2="276" v3="273" />+                <face v1="273" v2="820" v3="883" />+                <face v1="630" v2="884" v3="431" />+                <face v1="630" v2="631" v3="884" />+                <face v1="431" v2="477" v3="436" />+                <face v1="628" v2="434" v3="436" />+                <face v1="453" v2="623" v3="451" />+                <face v1="802" v2="624" v3="801" />+                <face v1="802" v2="451" v3="624" />+                <face v1="801" v2="624" v3="886" />+                <face v1="827" v2="887" v3="832" />+                <face v1="832" v2="810" v3="827" />+                <face v1="888" v2="889" v3="798" />+                <face v1="798" v2="1559" v3="888" />+                <face v1="471" v2="830" v3="890" />+                <face v1="471" v2="470" v3="830" />+                <face v1="890" v2="830" v3="807" />+                <face v1="611" v2="604" v3="601" />+                <face v1="593" v2="604" v3="775" />+                <face v1="604" v2="600" v3="601" />+                <face v1="604" v2="598" v3="600" />+                <face v1="648" v2="600" v3="597" />+                <face v1="648" v2="602" v3="600" />+                <face v1="599" v2="598" v3="593" />+                <face v1="593" v2="595" v3="599" />+                <face v1="774" v2="893" v3="550" />+                <face v1="589" v2="592" v3="554" />+                <face v1="894" v2="895" v3="896" />+                <face v1="896" v2="556" v3="894" />+                <face v1="588" v2="898" v3="586" />+                <face v1="731" v2="729" v3="900" />+                <face v1="575" v2="903" v3="1525" />+                <face v1="575" v2="555" v3="903" />+                <face v1="1532" v2="906" v3="907" />+                <face v1="1532" v2="752" v3="906" />+                <face v1="908" v2="909" v3="910" />+                <face v1="908" v2="911" v3="909" />+                <face v1="750" v2="571" v3="570" />+                <face v1="570" v2="912" v3="750" />+                <face v1="565" v2="561" v3="560" />+                <face v1="560" v2="566" v3="565" />+                <face v1="558" v2="557" v3="913" />+                <face v1="557" v2="914" v3="913" />+                <face v1="896" v2="557" v3="556" />+                <face v1="903" v2="555" v3="554" />+                <face v1="554" v2="592" v3="903" />+                <face v1="593" v2="734" v3="595" />+                <face v1="734" v2="736" v3="595" />+                <face v1="737" v2="739" v3="535" />+                <face v1="535" v2="792" v3="737" />+                <face v1="537" v2="739" v3="740" />+                <face v1="740" v2="536" v3="537" />+                <face v1="546" v2="753" v3="540" />+                <face v1="539" v2="543" v3="540" />+                <face v1="530" v2="533" v3="535" />+                <face v1="535" v2="537" v3="530" />+                <face v1="916" v2="527" v3="765" />+                <face v1="921" v2="922" v3="923" />+                <face v1="921" v2="924" v3="922" />+                <face v1="925" v2="416" v3="523" />+                <face v1="41" v2="474" v3="517" />+                <face v1="669" v2="515" v3="514" />+                <face v1="609" v2="928" v3="895" />+                <face v1="609" v2="720" v3="928" />+                <face v1="721" v2="466" v3="510" />+                <face v1="501" v2="694" v3="502" />+                <face v1="493" v2="660" v3="489" />+                <face v1="493" v2="658" v3="660" />+                <face v1="660" v2="662" v3="489" />+                <face v1="98" v2="870" v3="680" />+                <face v1="773" v2="835" v3="931" />+                <face v1="685" v2="859" v3="683" />+                <face v1="693" v2="690" v3="932" />+                <face v1="693" v2="657" v3="690" />+                <face v1="876" v2="849" v3="848" />+                <face v1="86" v2="85" v3="851" />+                <face v1="85" v2="933" v3="851" />+                <face v1="857" v2="934" v3="935" />+                <face v1="934" v2="936" v3="935" />+                <face v1="937" v2="852" v3="938" />+                <face v1="937" v2="86" v3="852" />+                <face v1="939" v2="714" v3="940" />+                <face v1="714" v2="941" v3="940" />+                <face v1="671" v2="942" v3="943" />+                <face v1="943" v2="868" v3="671" />+                <face v1="944" v2="945" v3="946" />+                <face v1="945" v2="933" v3="946" />+                <face v1="947" v2="948" v3="868" />+                <face v1="946" v2="62" v3="59" />+                <face v1="59" v2="681" v3="946" />+                <face v1="480" v2="484" v3="482" />+                <face v1="484" v2="762" v3="482" />+                <face v1="582" v2="921" v3="581" />+                <face v1="582" v2="917" v3="921" />+                <face v1="711" v2="705" v3="707" />+                <face v1="925" v2="454" v3="457" />+                <face v1="925" v2="1504" v3="454" />+                <face v1="447" v2="423" v3="952" />+                <face v1="447" v2="449" v3="423" />+                <face v1="443" v2="445" v3="448" />+                <face v1="448" v2="447" v3="443" />+                <face v1="618" v2="422" v3="953" />+                <face v1="440" v2="442" v3="819" />+                <face v1="819" v2="617" v3="440" />+                <face v1="954" v2="634" v3="631" />+                <face v1="421" v2="423" v3="449" />+                <face v1="419" v2="955" v3="626" />+                <face v1="925" v2="958" v3="614" />+                <face v1="614" v2="416" v3="925" />+                <face v1="274" v2="281" v3="275" />+                <face v1="281" v2="14" v3="275" />+                <face v1="16" v2="275" v3="14" />+                <face v1="16" v2="959" v3="275" />+                <face v1="960" v2="961" v3="962" />+                <face v1="960" v2="963" v3="961" />+                <face v1="295" v2="964" v3="965" />+                <face v1="965" v2="296" v3="295" />+                <face v1="397" v2="255" v3="413" />+                <face v1="966" v2="240" v3="967" />+                <face v1="966" v2="236" v3="240" />+                <face v1="258" v2="406" v3="256" />+                <face v1="258" v2="411" v3="406" />+                <face v1="968" v2="969" v3="248" />+                <face v1="968" v2="970" v3="969" />+                <face v1="1321" v2="971" v3="972" />+                <face v1="36" v2="129" v3="401" />+                <face v1="129" v2="971" v3="401" />+                <face v1="163" v2="166" v3="396" />+                <face v1="376" v2="396" v3="395" />+                <face v1="376" v2="1075" v3="396" />+                <face v1="143" v2="393" v3="144" />+                <face v1="196" v2="973" v3="195" />+                <face v1="386" v2="160" v3="390" />+                <face v1="390" v2="387" v3="386" />+                <face v1="974" v2="975" v3="189" />+                <face v1="975" v2="976" v3="189" />+                <face v1="978" v2="979" v3="980" />+                <face v1="979" v2="981" v3="980" />+                <face v1="218" v2="168" v3="982" />+                <face v1="352" v2="227" v3="216" />+                <face v1="983" v2="93" v3="385" />+                <face v1="984" v2="985" v3="986" />+                <face v1="986" v2="1028" v3="984" />+                <face v1="139" v2="211" v3="377" />+                <face v1="139" v2="210" v3="211" />+                <face v1="143" v2="988" v3="141" />+                <face v1="143" v2="391" v3="988" />+                <face v1="989" v2="140" v3="990" />+                <face v1="991" v2="992" v3="993" />+                <face v1="991" v2="53" v3="992" />+                <face v1="145" v2="293" v3="24" />+                <face v1="24" v2="146" v3="145" />+                <face v1="995" v2="357" v3="178" />+                <face v1="356" v2="154" v3="355" />+                <face v1="976" v2="996" v3="997" />+                <face v1="976" v2="975" v3="996" />+                <face v1="998" v2="368" v3="367" />+                <face v1="367" v2="999" v3="998" />+                <face v1="1000" v2="981" v3="979" />+                <face v1="1000" v2="390" v3="981" />+                <face v1="161" v2="160" v3="386" />+                <face v1="386" v2="180" v3="161" />+                <face v1="364" v2="165" v3="161" />+                <face v1="161" v2="183" v3="364" />+                <face v1="1002" v2="168" v3="363" />+                <face v1="168" v2="170" v3="363" />+                <face v1="358" v2="359" v3="148" />+                <face v1="358" v2="153" v3="359" />+                <face v1="372" v2="179" v3="171" />+                <face v1="171" v2="1003" v3="372" />+                <face v1="152" v2="1004" v3="1005" />+                <face v1="152" v2="1006" v3="1004" />+                <face v1="116" v2="1007" v3="1008" />+                <face v1="1012" v2="323" v3="1008" />+                <face v1="323" v2="116" v3="1008" />+                <face v1="49" v2="125" v3="137" />+                <face v1="345" v2="73" v3="1335" />+                <face v1="345" v2="344" v3="73" />+                <face v1="331" v2="43" v3="341" />+                <face v1="43" v2="338" v3="335" />+                <face v1="43" v2="336" v3="44" />+                <face v1="333" v2="332" v3="344" />+                <face v1="344" v2="43" v3="333" />+                <face v1="1016" v2="1017" v3="1018" />+                <face v1="1023" v2="327" v3="109" />+                <face v1="109" v2="108" v3="1023" />+                <face v1="315" v2="328" v3="318" />+                <face v1="311" v2="1024" v3="124" />+                <face v1="1024" v2="125" v3="124" />+                <face v1="1025" v2="1026" v3="105" />+                <face v1="315" v2="314" v3="320" />+                <face v1="320" v2="1205" v3="315" />+                <face v1="1027" v2="90" v3="330" />+                <face v1="90" v2="92" v3="330" />+                <face v1="98" v2="59" v3="61" />+                <face v1="61" v2="96" v3="98" />+                <face v1="125" v2="1030" v3="1031" />+                <face v1="125" v2="1032" v3="1030" />+                <face v1="1033" v2="1034" v3="326" />+                <face v1="316" v2="71" v3="1035" />+                <face v1="1032" v2="125" v3="1024" />+                <face v1="305" v2="100" v3="303" />+                <face v1="97" v2="101" v3="100" />+                <face v1="1036" v2="105" v3="106" />+                <face v1="102" v2="1038" v3="385" />+                <face v1="385" v2="1209" v3="102" />+                <face v1="1036" v2="324" v3="1039" />+                <face v1="1026" v2="300" v3="105" />+                <face v1="287" v2="262" v3="295" />+                <face v1="295" v2="285" v3="287" />+                <face v1="224" v2="1040" v3="260" />+                <face v1="287" v2="1041" v3="260" />+                <face v1="287" v2="286" v3="1041" />+                <face v1="284" v2="283" v3="1042" />+                <face v1="1042" v2="286" v3="284" />+                <face v1="297" v2="1043" v3="285" />+                <face v1="1043" v2="284" v3="285" />+                <face v1="11" v2="1044" v3="12" />+                <face v1="1046" v2="1047" v3="1048" />+                <face v1="1046" v2="1158" v3="1047" />+                <face v1="1052" v2="1053" v3="1050" />+                <face v1="1050" v2="264" v3="1052" />+                <face v1="11" v2="271" v3="270" />+                <face v1="1050" v2="263" v3="264" />+                <face v1="411" v2="31" v3="6" />+                <face v1="259" v2="260" v3="1040" />+                <face v1="259" v2="261" v3="260" />+                <face v1="1056" v2="261" v3="259" />+                <face v1="1056" v2="964" v3="261" />+                <face v1="8" v2="1057" v3="26" />+                <face v1="8" v2="1058" v3="1057" />+                <face v1="10" v2="1058" v3="8" />+                <face v1="20" v2="16" v3="15" />+                <face v1="1059" v2="1060" v3="0" />+                <face v1="1062" v2="1063" v3="213" />+                <face v1="227" v2="228" v3="221" />+                <face v1="224" v2="226" v3="230" />+                <face v1="230" v2="1040" v3="224" />+                <face v1="222" v2="221" v3="223" />+                <face v1="221" v2="226" v3="223" />+                <face v1="1062" v2="213" v3="193" />+                <face v1="193" v2="1003" v3="1062" />+                <face v1="203" v2="210" v3="988" />+                <face v1="203" v2="208" v3="210" />+                <face v1="1065" v2="391" v3="1066" />+                <face v1="991" v2="202" v3="1067" />+                <face v1="991" v2="48" v3="202" />+                <face v1="360" v2="198" v3="197" />+                <face v1="973" v2="194" v3="195" />+                <face v1="372" v2="1003" v3="1348" />+                <face v1="362" v2="1069" v3="1070" />+                <face v1="1070" v2="1071" v3="362" />+                <face v1="183" v2="182" v3="369" />+                <face v1="369" v2="364" v3="183" />+                <face v1="386" v2="181" v3="180" />+                <face v1="386" v2="388" v3="181" />+                <face v1="177" v2="172" v3="171" />+                <face v1="171" v2="179" v3="177" />+                <face v1="195" v2="213" v3="197" />+                <face v1="218" v2="982" v3="361" />+                <face v1="361" v2="213" v3="218" />+                <face v1="148" v2="1072" v3="358" />+                <face v1="1072" v2="355" v3="358" />+                <face v1="1006" v2="152" v3="359" />+                <face v1="150" v2="148" v3="152" />+                <face v1="163" v2="396" v3="1073" />+                <face v1="1073" v2="989" v3="1074" />+                <face v1="1073" v2="1075" v3="989" />+                <face v1="141" v2="393" v3="143" />+                <face v1="36" v2="134" v3="38" />+                <face v1="36" v2="1076" v3="134" />+                <face v1="1201" v2="127" v3="126" />+                <face v1="1201" v2="1078" v3="127" />+                <face v1="1079" v2="124" v3="125" />+                <face v1="1080" v2="129" v3="115" />+                <face v1="108" v2="1028" v3="1081" />+                <face v1="108" v2="316" v3="1028" />+                <face v1="316" v2="108" v3="110" />+                <face v1="1018" v2="327" v3="1023" />+                <face v1="1023" v2="1082" v3="1018" />+                <face v1="1083" v2="309" v3="100" />+                <face v1="1084" v2="72" v3="74" />+                <face v1="74" v2="331" v3="1084" />+                <face v1="54" v2="53" v3="56" />+                <face v1="1085" v2="52" v3="54" />+                <face v1="263" v2="1050" v3="266" />+                <face v1="127" v2="39" v3="41" />+                <face v1="242" v2="1087" v3="409" />+                <face v1="242" v2="241" v3="1087" />+                <face v1="129" v2="36" v3="38" />+                <face v1="341" v2="1088" v3="342" />+                <face v1="348" v2="347" v3="1090" />+                <face v1="412" v2="1091" v3="31" />+                <face v1="8" v2="26" v3="30" />+                <face v1="26" v2="28" v3="30" />+                <face v1="26" v2="1092" v3="28" />+                <face v1="26" v2="244" v3="1092" />+                <face v1="17" v2="1093" v3="15" />+                <face v1="21" v2="1094" v3="23" />+                <face v1="1058" v2="263" v3="1057" />+                <face v1="1058" v2="264" v3="263" />+                <face v1="268" v2="269" v3="1095" />+                <face v1="269" v2="245" v3="1095" />+                <face v1="284" v2="1043" v3="282" />+                <face v1="9" v2="19" v3="10" />+                <face v1="1264" v2="134" v3="1076" />+                <face v1="1111" v2="1107" v3="1113" />+                <face v1="1119" v2="399" v3="132" />+                <face v1="1119" v2="1120" v3="399" />+                <face v1="399" v2="1121" v3="1122" />+                <face v1="1059" v2="399" v3="1123" />+                <face v1="399" v2="0" v3="2" />+                <face v1="31" v2="2" v3="6" />+                <face v1="351" v2="1124" v3="1091" />+                <face v1="1124" v2="351" v3="1008" />+                <face v1="1008" v2="1126" v3="1124" />+                <face v1="1008" v2="1007" v3="1126" />+                <face v1="10" v2="18" v3="1052" />+                <face v1="10" v2="19" v3="18" />+                <face v1="1127" v2="1053" v3="1128" />+                <face v1="1053" v2="1127" v3="1129" />+                <face v1="1130" v2="1131" v3="1132" />+                <face v1="1131" v2="1130" v3="1133" />+                <face v1="1133" v2="1046" v3="1134" />+                <face v1="1133" v2="1130" v3="1046" />+                <face v1="1135" v2="1048" v3="1139" />+                <face v1="282" v2="1138" v3="1139" />+                <face v1="278" v2="1093" v3="17" />+                <face v1="1093" v2="278" v3="1140" />+                <face v1="269" v2="271" v3="245" />+                <face v1="20" v2="1093" v3="18" />+                <face v1="1093" v2="20" v3="15" />+                <face v1="268" v2="1057" v3="263" />+                <face v1="1057" v2="268" v3="1095" />+                <face v1="1094" v2="1142" v3="23" />+                <face v1="1148" v2="1146" v3="1147" />+                <face v1="1149" v2="1150" v3="1151" />+                <face v1="1149" v2="1152" v3="1150" />+                <face v1="1158" v2="1153" v3="1047" />+                <face v1="1155" v2="1156" v3="1157" />+                <face v1="1155" v2="1158" v3="1156" />+                <face v1="1159" v2="278" v3="280" />+                <face v1="278" v2="1159" v3="1140" />+                <face v1="16" v2="19" v3="959" />+                <face v1="16" v2="20" v3="19" />+                <face v1="1160" v2="1161" v3="1162" />+                <face v1="1160" v2="1163" v3="1161" />+                <face v1="1092" v2="246" v3="1161" />+                <face v1="244" v2="246" v3="1092" />+                <face v1="1165" v2="9" v3="29" />+                <face v1="1451" v2="9" v3="1165" />+                <face v1="115" v2="1007" v3="116" />+                <face v1="1007" v2="115" v3="129" />+                <face v1="1107" v2="1172" v3="1173" />+                <face v1="1111" v2="1172" v3="1107" />+                <face v1="1107" v2="1088" v3="1180" />+                <face v1="34" v2="38" v3="399" />+                <face v1="38" v2="34" v3="129" />+                <face v1="1181" v2="127" v3="1078" />+                <face v1="1181" v2="39" v3="127" />+                <face v1="1182" v2="1181" v3="1183" />+                <face v1="1182" v2="1184" v3="1181" />+                <face v1="304" v2="1185" v3="1186" />+                <face v1="309" v2="1185" v3="304" />+                <face v1="75" v2="69" v3="1188" />+                <face v1="69" v2="75" v3="72" />+                <face v1="1189" v2="253" v3="252" />+                <face v1="1189" v2="970" v3="253" />+                <face v1="266" v2="1050" v3="1190" />+                <face v1="48" v2="991" v3="46" />+                <face v1="1079" v2="1085" v3="1192" />+                <face v1="1079" v2="52" v3="1085" />+                <face v1="1085" v2="1193" v3="1194" />+                <face v1="1085" v2="54" v3="1193" />+                <face v1="1422" v2="23" v3="1142" />+                <face v1="301" v2="1203" v3="1204" />+                <face v1="301" v2="300" v3="1203" />+                <face v1="1205" v2="1039" v3="328" />+                <face v1="1205" v2="1025" v3="1039" />+                <face v1="1017" v2="307" v3="1033" />+                <face v1="1017" v2="1038" v3="307" />+                <face v1="1206" v2="309" v3="1207" />+                <face v1="1185" v2="309" v3="1206" />+                <face v1="1212" v2="1209" v3="1036" />+                <face v1="1212" v2="1036" v3="106" />+                <face v1="1082" v2="1023" v3="1214" />+                <face v1="1216" v2="1214" v3="382" />+                <face v1="1082" v2="1214" v3="1216" />+                <face v1="1020" v2="1217" v3="112" />+                <face v1="1217" v2="1020" v3="330" />+                <face v1="1027" v2="330" v3="1020" />+                <face v1="1029" v2="1219" v3="1220" />+                <face v1="1035" v2="1219" v3="1029" />+                <face v1="1080" v2="971" v3="129" />+                <face v1="1080" v2="984" v3="971" />+                <face v1="137" v2="125" v3="1031" />+                <face v1="1079" v2="125" v3="49" />+                <face v1="1222" v2="1223" v3="1224" />+                <face v1="1222" v2="1192" v3="1223" />+                <face v1="1222" v2="1227" v3="1079" />+                <face v1="1222" v2="1226" v3="1227" />+                <face v1="1227" v2="1201" v3="1228" />+                <face v1="1227" v2="1078" v3="1201" />+                <face v1="1321" v2="342" v3="401" />+                <face v1="1126" v2="1231" v3="34" />+                <face v1="36" v2="1107" v3="1076" />+                <face v1="1088" v2="1107" v3="36" />+                <face v1="46" v2="1233" v3="1232" />+                <face v1="1233" v2="1236" v3="1232" />+                <face v1="1239" v2="152" v3="1005" />+                <face v1="152" v2="1239" v3="150" />+                <face v1="1004" v2="990" v3="377" />+                <face v1="396" v2="1075" v3="1073" />+                <face v1="1241" v2="989" v3="990" />+                <face v1="1074" v2="989" v3="1241" />+                <face v1="395" v2="374" v3="1242" />+                <face v1="374" v2="395" v3="166" />+                <face v1="1074" v2="163" v3="1073" />+                <face v1="163" v2="1074" v3="162" />+                <face v1="159" v2="1241" v3="1006" />+                <face v1="157" v2="1241" v3="159" />+                <face v1="153" v2="1006" v3="359" />+                <face v1="154" v2="1006" v3="153" />+                <face v1="149" v2="1072" v3="148" />+                <face v1="177" v2="355" v3="1072" />+                <face v1="177" v2="178" v3="355" />+                <face v1="157" v2="981" v3="390" />+                <face v1="1346" v2="981" v3="157" />+                <face v1="213" v2="360" v3="197" />+                <face v1="361" v2="360" v3="213" />+                <face v1="193" v2="213" v3="195" />+                <face v1="978" v2="365" v3="366" />+                <face v1="995" v2="365" v3="978" />+                <face v1="1246" v2="387" v3="1000" />+                <face v1="1246" v2="388" v3="387" />+                <face v1="369" v2="363" v3="364" />+                <face v1="368" v2="363" v3="369" />+                <face v1="1069" v2="998" v3="1070" />+                <face v1="1069" v2="1002" v3="998" />+                <face v1="362" v2="996" v3="1247" />+                <face v1="362" v2="1071" v3="996" />+                <face v1="1248" v2="1249" v3="974" />+                <face v1="1249" v2="1248" v3="1250" />+                <face v1="997" v2="367" v3="1252" />+                <face v1="997" v2="1253" v3="367" />+                <face v1="48" v2="46" v3="1232" />+                <face v1="201" v2="1232" v3="1236" />+                <face v1="1232" v2="201" v3="1256" />+                <face v1="201" v2="1257" v3="381" />+                <face v1="1258" v2="1256" v3="201" />+                <face v1="1256" v2="1258" v3="202" />+                <face v1="202" v2="209" v3="208" />+                <face v1="202" v2="1258" v3="209" />+                <face v1="1065" v2="988" v3="391" />+                <face v1="1065" v2="203" v3="988" />+                <face v1="206" v2="354" v3="378" />+                <face v1="206" v2="201" v3="354" />+                <face v1="226" v2="228" v3="230" />+                <face v1="226" v2="221" v3="228" />+                <face v1="213" v2="1260" v3="216" />+                <face v1="1260" v2="213" v3="1063" />+                <face v1="121" v2="212" v3="119" />+                <face v1="1008" v2="1262" v3="1012" />+                <face v1="1262" v2="1008" v3="353" />+                <face v1="228" v2="1091" v3="1040" />+                <face v1="1263" v2="961" v3="1116" />+                <face v1="1173" v2="1264" v3="1107" />+                <face v1="132" v2="1265" v3="1266" />+                <face v1="134" v2="1265" v3="132" />+                <face v1="1165" v2="1271" v3="1272" />+                <face v1="1268" v2="236" v3="1270" />+                <face v1="1268" v2="1275" v3="236" />+                <face v1="1165" v2="1276" v3="1271" />+                <face v1="1165" v2="29" v3="1276" />+                <face v1="1275" v2="237" v3="236" />+                <face v1="1277" v2="29" v3="30" />+                <face v1="1276" v2="29" v3="1277" />+                <face v1="30" v2="1278" v3="1277" />+                <face v1="30" v2="28" v3="1278" />+                <face v1="240" v2="238" v3="243" />+                <face v1="28" v2="1280" v3="1278" />+                <face v1="28" v2="1092" v3="1280" />+                <face v1="1280" v2="248" v3="404" />+                <face v1="1280" v2="251" v3="248" />+                <face v1="246" v2="13" v3="1162" />+                <face v1="246" v2="245" v3="13" />+                <face v1="249" v2="968" v3="248" />+                <face v1="249" v2="1281" v3="968" />+                <face v1="12" v2="1162" v3="13" />+                <face v1="1162" v2="12" v3="1160" />+                <face v1="965" v2="1281" v3="1163" />+                <face v1="1281" v2="965" v3="1282" />+                <face v1="964" v2="1282" v3="965" />+                <face v1="1282" v2="964" v3="1056" />+                <face v1="259" v2="407" v3="1056" />+                <face v1="407" v2="259" v3="256" />+                <face v1="262" v2="964" v3="295" />+                <face v1="964" v2="262" v3="261" />+                <face v1="1093" v2="1128" v3="18" />+                <face v1="1093" v2="1140" v3="1128" />+                <face v1="1050" v2="1053" v3="1129" />+                <face v1="1156" v2="1127" v3="1159" />+                <face v1="1127" v2="1156" v3="1132" />+                <face v1="1283" v2="1284" v3="1285" />+                <face v1="1283" v2="1286" v3="1284" />+                <face v1="1287" v2="1131" v3="1133" />+                <face v1="1190" v2="1131" v3="1287" />+                <face v1="1155" v2="1288" v3="1289" />+                <face v1="1157" v2="1288" v3="1155" />+                <face v1="272" v2="1287" v3="1290" />+                <face v1="266" v2="1287" v3="272" />+                <face v1="1130" v2="1158" v3="1046" />+                <face v1="1291" v2="1292" v3="1293" />+                <face v1="1291" v2="1294" v3="1292" />+                <face v1="1135" v2="1290" v3="1134" />+                <face v1="1290" v2="1135" v3="11" />+                <face v1="1289" v2="1297" v3="1153" />+                <face v1="1150" v2="1048" v3="1047" />+                <face v1="1048" v2="1150" v3="1139" />+                <face v1="1298" v2="1299" v3="1300" />+                <face v1="1298" v2="1301" v3="1299" />+                <face v1="11" v2="1138" v3="1044" />+                <face v1="11" v2="1135" v3="1138" />+                <face v1="1151" v2="1302" v3="1149" />+                <face v1="1151" v2="1303" v3="1302" />+                <face v1="1043" v2="12" v3="1044" />+                <face v1="12" v2="1043" v3="297" />+                <face v1="1139" v2="1147" v3="282" />+                <face v1="1139" v2="1152" v3="1147" />+                <face v1="1148" v2="1308" v3="1146" />+                <face v1="1148" v2="1309" v3="1308" />+                <face v1="1147" v2="1042" v3="283" />+                <face v1="1147" v2="288" v3="1042" />+                <face v1="1310" v2="1311" v3="288" />+                <face v1="1313" v2="286" v3="1042" />+                <face v1="286" v2="1313" v3="1041" />+                <face v1="260" v2="292" v3="224" />+                <face v1="260" v2="1041" v3="292" />+                <face v1="1313" v2="289" v3="21" />+                <face v1="1036" v2="1025" v3="105" />+                <face v1="1036" v2="1039" v3="1025" />+                <face v1="1209" v2="385" v3="94" />+                <face v1="1038" v2="101" v3="307" />+                <face v1="101" v2="1038" v3="102" />+                <face v1="1320" v2="1199" v3="1319" />+                <face v1="1083" v2="1207" v3="309" />+                <face v1="1321" v2="331" v3="342" />+                <face v1="1084" v2="331" v3="1321" />+                <face v1="126" v2="1206" v3="1201" />+                <face v1="41" v2="1206" v3="126" />+                <face v1="1228" v2="1201" v3="1322" />+                <face v1="1031" v2="319" v3="321" />+                <face v1="1031" v2="1030" v3="319" />+                <face v1="117" v2="1323" v3="1080" />+                <face v1="1080" v2="985" v3="984" />+                <face v1="1080" v2="1325" v3="985" />+                <face v1="1035" v2="1028" v3="316" />+                <face v1="1029" v2="1028" v3="1035" />+                <face v1="61" v2="1033" v3="96" />+                <face v1="61" v2="1034" v3="1033" />+                <face v1="1219" v2="1084" v3="1321" />+                <face v1="1219" v2="70" v3="1084" />+                <face v1="339" v2="1090" v3="340" />+                <face v1="339" v2="348" v3="1090" />+                <face v1="1220" v2="1219" v3="1321" />+                <face v1="89" v2="1326" v3="87" />+                <face v1="1327" v2="1326" v3="89" />+                <face v1="1326" v2="1032" v3="1024" />+                <face v1="1326" v2="1204" v3="1032" />+                <face v1="1030" v2="1328" v3="319" />+                <face v1="1030" v2="1203" v3="1328" />+                <face v1="1205" v2="328" v3="315" />+                <face v1="382" v2="1081" v3="383" />+                <face v1="382" v2="1214" v3="1081" />+                <face v1="1021" v2="112" v3="1329" />+                <face v1="1021" v2="1020" v3="112" />+                <face v1="317" v2="1020" v3="1021" />+                <face v1="317" v2="1027" v3="1020" />+                <face v1="1330" v2="1217" v3="1331" />+                <face v1="1216" v2="1332" v3="1082" />+                <face v1="1332" v2="1216" v3="1333" />+                <face v1="1082" v2="1016" v3="1018" />+                <face v1="1016" v2="1082" v3="1334" />+                <face v1="45" v2="82" v3="339" />+                <face v1="44" v2="82" v3="45" />+                <face v1="80" v2="335" v3="78" />+                <face v1="335" v2="80" v3="336" />+                <face v1="76" v2="337" v3="345" />+                <face v1="337" v2="76" v3="338" />+                <face v1="344" v2="74" v3="73" />+                <face v1="74" v2="344" v3="332" />+                <face v1="1335" v2="1188" v3="66" />+                <face v1="1335" v2="75" v3="1188" />+                <face v1="64" v2="67" v3="65" />+                <face v1="67" v2="64" v3="1034" />+                <face v1="1336" v2="81" v3="83" />+                <face v1="1337" v2="81" v3="1336" />+                <face v1="86" v2="77" v3="84" />+                <face v1="1335" v2="73" v3="75" />+                <face v1="1227" v2="1228" v3="312" />+                <face v1="1227" v2="1226" v3="1183" />+                <face v1="92" v2="94" v3="93" />+                <face v1="104" v2="1209" v3="1212" />+                <face v1="175" v2="1233" v3="176" />+                <face v1="1233" v2="1340" v3="176" />+                <face v1="1233" v2="138" v3="1340" />+                <face v1="321" v2="122" v3="1031" />+                <face v1="137" v2="50" v3="49" />+                <face v1="121" v2="323" v3="1012" />+                <face v1="121" v2="120" v3="323" />+                <face v1="1220" v2="1321" v3="972" />+                <face v1="381" v2="1005" v3="1004" />+                <face v1="1262" v2="1063" v3="212" />+                <face v1="1262" v2="1260" v3="1063" />+                <face v1="212" v2="1003" v3="171" />+                <face v1="1003" v2="212" v3="1062" />+                <face v1="1341" v2="367" v3="1253" />+                <face v1="1002" v2="982" v3="168" />+                <face v1="1069" v2="982" v3="1002" />+                <face v1="183" v2="161" v3="180" />+                <face v1="387" v2="390" v3="1000" />+                <face v1="980" v2="995" v3="978" />+                <face v1="980" v2="357" v3="995" />+                <face v1="1342" v2="198" v3="1247" />+                <face v1="198" v2="1342" v3="196" />+                <face v1="1250" v2="1343" v3="194" />+                <face v1="1344" v2="185" v3="1345" />+                <face v1="185" v2="1344" v3="187" />+                <face v1="188" v2="388" v3="1246" />+                <face v1="1252" v2="182" v3="181" />+                <face v1="367" v2="182" v3="1252" />+                <face v1="998" v2="1341" v3="1070" />+                <face v1="1341" v2="998" v3="999" />+                <face v1="997" v2="1071" v3="1253" />+                <face v1="997" v2="996" v3="1071" />+                <face v1="189" v2="1248" v3="974" />+                <face v1="1346" v2="154" v3="356" />+                <face v1="179" v2="995" v3="178" />+                <face v1="373" v2="995" v3="179" />+                <face v1="1065" v2="1066" v3="21" />+                <face v1="1242" v2="222" v3="223" />+                <face v1="1242" v2="374" v3="222" />+                <face v1="56" v2="1065" v3="21" />+                <face v1="1065" v2="56" v3="1067" />+                <face v1="989" v2="141" v3="140" />+                <face v1="1075" v2="141" v3="989" />+                <face v1="289" v2="1094" v3="21" />+                <face v1="143" v2="1066" v3="391" />+                <face v1="146" v2="1066" v3="143" />+                <face v1="988" v2="139" v3="141" />+                <face v1="988" v2="210" v3="139" />+                <face v1="985" v2="383" v3="986" />+                <face v1="384" v2="383" v3="985" />+                <face v1="984" v2="972" v3="971" />+                <face v1="984" v2="1028" v3="972" />+                <face v1="227" v2="218" v3="216" />+                <face v1="227" v2="168" v3="218" />+                <face v1="187" v2="1344" v3="1350" />+                <face v1="979" v2="366" v3="1351" />+                <face v1="979" v2="978" v3="366" />+                <face v1="1346" v2="980" v3="981" />+                <face v1="1352" v2="186" v3="187" />+                <face v1="193" v2="1348" v3="1003" />+                <face v1="193" v2="1343" v3="1348" />+                <face v1="974" v2="1342" v3="975" />+                <face v1="1249" v2="1342" v3="974" />+                <face v1="188" v2="189" v3="976" />+                <face v1="340" v2="1090" v3="1180" />+                <face v1="1088" v2="401" v3="342" />+                <face v1="1275" v2="1548" v3="1355" />+                <face v1="1275" v2="1268" v3="1548" />+                <face v1="238" v2="1356" v3="405" />+                <face v1="238" v2="237" v3="1356" />+                <face v1="969" v2="1087" v3="248" />+                <face v1="1358" v2="970" v3="968" />+                <face v1="1358" v2="253" v3="970" />+                <face v1="1360" v2="1270" v3="1359" />+                <face v1="1361" v2="236" v3="966" />+                <face v1="967" v2="240" v3="1362" />+                <face v1="1189" v2="1363" v3="1364" />+                <face v1="1363" v2="1189" v3="1365" />+                <face v1="347" v2="1116" v3="1090" />+                <face v1="1116" v2="347" v3="349" />+                <face v1="962" v2="1263" v3="1366" />+                <face v1="1263" v2="962" v3="961" />+                <face v1="1368" v2="1173" v3="1172" />+                <face v1="1370" v2="1173" v3="1368" />+                <face v1="1371" v2="1265" v3="1264" />+                <face v1="1371" v2="1372" v3="1265" />+                <face v1="1373" v2="1119" v3="1266" />+                <face v1="1121" v2="1373" v3="1376" />+                <face v1="1120" v2="1373" v3="1121" />+                <face v1="1122" v2="1377" v3="1123" />+                <face v1="1122" v2="1378" v3="1377" />+                <face v1="279" v2="274" v3="1285" />+                <face v1="281" v2="274" v3="279" />+                <face v1="1289" v2="1284" v3="1291" />+                <face v1="1288" v2="1284" v3="1289" />+                <face v1="1289" v2="1298" v3="1297" />+                <face v1="1289" v2="1293" v3="1298" />+                <face v1="1303" v2="1304" v3="1302" />+                <face v1="1303" v2="1300" v3="1304" />+                <face v1="1310" v2="1309" v3="1304" />+                <face v1="1309" v2="1310" v3="1308" />+                <face v1="1379" v2="1102" v3="1381" />+                <face v1="1386" v2="520" v3="1543" />+                <face v1="458" v2="1392" v3="1116" />+                <face v1="458" v2="1394" v3="1392" />+                <face v1="1396" v2="416" v3="1397" />+                <face v1="416" v2="1398" v3="1399" />+                <face v1="626" v2="958" v3="925" />+                <face v1="955" v2="958" v3="626" />+                <face v1="955" v2="1400" v3="958" />+                <face v1="719" v2="846" v3="1401" />+                <face v1="1504" v2="1403" v3="454" />+                <face v1="1404" v2="1405" v3="1406" />+                <face v1="1404" v2="953" v3="1405" />+                <face v1="1407" v2="1408" v3="1409" />+                <face v1="1407" v2="1410" v3="1408" />+                <face v1="1411" v2="1412" v3="1413" />+                <face v1="1414" v2="1412" v3="1411" />+                <face v1="1415" v2="1414" v3="1417" />+                <face v1="1451" v2="422" v3="821" />+                <face v1="1451" v2="423" v3="422" />+                <face v1="954" v2="630" v3="1420" />+                <face v1="954" v2="631" v3="630" />+                <face v1="1405" v2="435" v3="434" />+                <face v1="421" v2="435" v3="1405" />+                <face v1="820" v2="1421" v3="821" />+                <face v1="1421" v2="820" v3="273" />+                <face v1="1422" v2="1424" v3="1094" />+                <face v1="878" v2="1428" v3="643" />+                <face v1="1428" v2="878" v3="1430" />+                <face v1="1431" v2="637" v3="639" />+                <face v1="1431" v2="1428" v3="637" />+                <face v1="1433" v2="1434" v3="1435" />+                <face v1="1433" v2="1436" v3="1434" />+                <face v1="1437" v2="1435" v3="1439" />+                <face v1="1441" v2="879" v3="1442" />+                <face v1="1441" v2="1443" v3="879" />+                <face v1="814" v2="1444" v3="812" />+                <face v1="1444" v2="814" v3="1445" />+                <face v1="1449" v2="1447" v3="1448" />+                <face v1="1451" v2="1272" v3="1450" />+                <face v1="1116" v2="816" v3="818" />+                <face v1="1392" v2="816" v3="1116" />+                <face v1="467" v2="1504" v3="523" />+                <face v1="1394" v2="1459" v3="1386" />+                <face v1="458" v2="1459" v3="1394" />+                <face v1="461" v2="794" v3="466" />+                <face v1="39" v2="1184" v3="1461" />+                <face v1="869" v2="516" v3="515" />+                <face v1="516" v2="869" v3="1500" />+                <face v1="940" v2="942" v3="1463" />+                <face v1="940" v2="943" v3="942" />+                <face v1="945" v2="851" v3="933" />+                <face v1="1464" v2="851" v3="945" />+                <face v1="1408" v2="1465" v3="1409" />+                <face v1="1465" v2="1408" v3="632" />+                <face v1="581" v2="923" v3="761" />+                <face v1="921" v2="923" v3="581" />+                <face v1="1223" v2="481" v3="1466" />+                <face v1="1194" v2="481" v3="1223" />+                <face v1="482" v2="923" v3="1467" />+                <face v1="56" v2="483" v3="1193" />+                <face v1="673" v2="946" v3="681" />+                <face v1="673" v2="944" v3="946" />+                <face v1="85" v2="946" v3="933" />+                <face v1="946" v2="85" v3="62" />+                <face v1="1470" v2="868" v3="943" />+                <face v1="868" v2="1470" v3="947" />+                <face v1="939" v2="1463" v3="854" />+                <face v1="939" v2="940" v3="1463" />+                <face v1="1464" v2="938" v3="852" />+                <face v1="938" v2="1464" v3="715" />+                <face v1="935" v2="86" v3="937" />+                <face v1="935" v2="936" v3="86" />+                <face v1="856" v2="934" v3="857" />+                <face v1="856" v2="460" v3="934" />+                <face v1="1471" v2="1472" v3="1206" />+                <face v1="1471" v2="1473" v3="1472" />+                <face v1="1473" v2="1475" v3="1476" />+                <face v1="1475" v2="1473" v3="1471" />+                <face v1="1478" v2="1479" v3="1480" />+                <face v1="1479" v2="1478" v3="874" />+                <face v1="651" v2="1481" v3="1482" />+                <face v1="651" v2="653" v3="1481" />+                <face v1="693" v2="655" v3="657" />+                <face v1="859" v2="655" v3="693" />+                <face v1="835" v2="1485" v3="685" />+                <face v1="773" v2="699" v3="659" />+                <face v1="674" v2="870" v3="871" />+                <face v1="680" v2="870" v3="674" />+                <face v1="1186" v2="664" v3="98" />+                <face v1="1486" v2="493" v3="492" />+                <face v1="862" v2="1489" v3="875" />+                <face v1="862" v2="495" v3="1489" />+                <face v1="678" v2="504" v3="836" />+                <face v1="678" v2="505" v3="504" />+                <face v1="506" v2="1491" v3="509" />+                <face v1="695" v2="1491" v3="506" />+                <face v1="695" v2="867" v3="1491" />+                <face v1="866" v2="867" v3="695" />+                <face v1="1493" v2="678" v3="795" />+                <face v1="678" v2="1493" v3="677" />+                <face v1="720" v2="510" v3="687" />+                <face v1="720" v2="721" v3="510" />+                <face v1="1494" v2="928" v3="676" />+                <face v1="1494" v2="895" v3="928" />+                <face v1="923" v2="669" v3="514" />+                <face v1="923" v2="666" v3="669" />+                <face v1="516" v2="1466" v3="1467" />+                <face v1="1496" v2="1466" v3="516" />+                <face v1="1497" v2="1224" v3="1496" />+                <face v1="1497" v2="1182" v3="1224" />+                <face v1="518" v2="1499" v3="1500" />+                <face v1="518" v2="1461" v3="1499" />+                <face v1="1504" v2="725" v3="1403" />+                <face v1="725" v2="1504" v3="466" />+                <face v1="922" v2="676" v3="666" />+                <face v1="676" v2="922" v3="1494" />+                <face v1="924" v2="917" v3="918" />+                <face v1="917" v2="924" v3="921" />+                <face v1="1508" v2="918" v3="1510" />+                <face v1="1511" v2="918" v3="1508" />+                <face v1="764" v2="916" v3="765" />+                <face v1="916" v2="764" v3="1514" />+                <face v1="1515" v2="790" v3="840" />+                <face v1="789" v2="790" v3="1515" />+                <face v1="546" v2="764" v3="530" />+                <face v1="546" v2="728" v3="764" />+                <face v1="844" v2="753" v3="546" />+                <face v1="913" v2="542" v3="558" />+                <face v1="1518" v2="756" v3="754" />+                <face v1="1518" v2="777" v3="756" />+                <face v1="740" v2="742" v3="536" />+                <face v1="739" v2="537" v3="535" />+                <face v1="736" v2="792" v3="841" />+                <face v1="736" v2="737" v3="792" />+                <face v1="592" v2="573" v3="903" />+                <face v1="591" v2="573" v3="592" />+                <face v1="896" v2="914" v3="557" />+                <face v1="1519" v2="914" v3="896" />+                <face v1="1520" v2="842" v3="757" />+                <face v1="1521" v2="842" v3="1520" />+                <face v1="741" v2="1523" v3="1522" />+                <face v1="735" v2="746" v3="733" />+                <face v1="746" v2="735" v3="747" />+                <face v1="912" v2="751" v3="750" />+                <face v1="1524" v2="751" v3="912" />+                <face v1="1525" v2="1526" v3="1527" />+                <face v1="1525" v2="1528" v3="1526" />+                <face v1="907" v2="1529" v3="1530" />+                <face v1="907" v2="906" v3="1529" />+                <face v1="749" v2="752" v3="1532" />+                <face v1="731" v2="917" v3="582" />+                <face v1="731" v2="1508" v3="1510" />+                <face v1="582" v2="584" v3="731" />+                <face v1="585" v2="584" v3="582" />+                <face v1="729" v2="731" v3="1536" />+                <face v1="585" v2="579" v3="1537" />+                <face v1="585" v2="580" v3="579" />+                <face v1="1536" v2="900" v3="729" />+                <face v1="898" v2="900" v3="1536" />+                <face v1="766" v2="1537" v3="1538" />+                <face v1="766" v2="585" v3="1537" />+                <face v1="838" v2="900" v3="898" />+                <face v1="896" v2="1494" v3="1519" />+                <face v1="896" v2="895" v3="1494" />+                <face v1="893" v2="554" v3="550" />+                <face v1="893" v2="589" v3="554" />+                <face v1="776" v2="893" v3="774" />+                <face v1="1540" v2="893" v3="776" />+                <face v1="1401" v2="775" v3="604" />+                <face v1="802" v2="611" v3="451" />+                <face v1="802" v2="1401" v3="611" />+                <face v1="817" v2="1392" v3="1542" />+                <face v1="522" v2="1544" v3="1543" />+                <face v1="831" v2="523" v3="416" />+                <face v1="821" v2="1421" v3="1451" />+                <face v1="1271" v2="1549" v3="1550" />+                <face v1="1549" v2="1271" v3="1548" />+                <face v1="1550" v2="1551" v3="1552" />+                <face v1="1551" v2="1550" v3="1549" />+                <face v1="1552" v2="1553" v3="1554" />+                <face v1="1553" v2="1552" v3="1551" />+                <face v1="829" v2="1554" v3="1553" />+                <face v1="829" v2="1555" v3="1554" />+                <face v1="433" v2="448" v3="445" />+                <face v1="797" v2="1555" v3="829" />+                <face v1="797" v2="1556" v3="1555" />+                <face v1="433" v2="445" v3="446" />+                <face v1="444" v2="889" v3="1449" />+                <face v1="889" v2="444" v3="1556" />+                <face v1="622" v2="472" v3="469" />+                <face v1="621" v2="472" v3="622" />+                <face v1="888" v2="1449" v3="889" />+                <face v1="1557" v2="1449" v3="888" />+                <face v1="1557" v2="1444" v3="1449" />+                <face v1="1559" v2="1558" v3="1557" />+                <face v1="642" v2="1445" v3="814" />+                <face v1="642" v2="634" v3="1445" />+                <face v1="1559" v2="886" v3="1558" />+                <face v1="801" v2="886" v3="1559" />+                <face v1="810" v2="803" v3="827" />+                <face v1="803" v2="810" v3="418" />+                <face v1="886" v2="623" v3="813" />+                <face v1="624" v2="623" v3="886" />+                <face v1="418" v2="627" v3="803" />+                <face v1="419" v2="627" v3="418" />+                <face v1="431" v2="884" v3="477" />+                <face v1="442" v2="880" v3="819" />+                <face v1="442" v2="881" v3="880" />+                <face v1="434" v2="1406" v3="1405" />+                <face v1="628" v2="1406" v3="434" />+                <face v1="1442" v2="1404" v3="1410" />+                <face v1="1442" v2="1560" v3="1404" />+                <face v1="276" v2="1561" v3="1283" />+                <face v1="1561" v2="276" v3="883" />+                <face v1="882" v2="1443" v3="1562" />+                <face v1="1443" v2="882" v3="879" />+                <face v1="1465" v2="477" v3="1563" />+                <face v1="1437" v2="1407" v3="1564" />+                <face v1="1437" v2="1441" v3="1407" />+                <face v1="1286" v2="1565" v3="1294" />+                <face v1="1565" v2="1286" v3="1566" />+                <face v1="1411" v2="1563" v3="1567" />+                <face v1="1411" v2="1568" v3="1563" />+                <face v1="1435" v2="1569" v3="1439" />+                <face v1="884" v2="631" v3="1567" />+                <face v1="1433" v2="1413" v3="1412" />+                <face v1="1433" v2="1437" v3="1413" />+                <face v1="1301" v2="1572" v3="1573" />+                <face v1="1301" v2="1292" v3="1572" />+                <face v1="1435" v2="1574" v3="1575" />+                <face v1="1434" v2="1574" v3="1435" />+                <face v1="1431" v2="1436" v3="1415" />+                <face v1="1304" v2="1576" v3="1577" />+                <face v1="1304" v2="1578" v3="1576" />+                <face v1="635" v2="424" v3="1417" />+                <face v1="425" v2="424" v3="635" />+                <face v1="427" v2="1428" v3="424" />+                <face v1="1310" v2="1304" v3="1577" />+                <face v1="1430" v2="878" v3="1581" />+                <face v1="824" v2="643" v3="1582" />+                <face v1="289" v2="878" v3="824" />+                <face v1="289" v2="1311" v3="878" />+                <face v1="1582" v2="649" v3="488" />+                <face v1="649" v2="1582" v3="645" />+                <face v1="482" v2="761" v3="923" />+                <face v1="762" v2="761" v3="482" />+                <face v1="874" v2="861" v3="1479" />+                <face v1="494" v2="861" v3="874" />+                <face v1="1485" v2="1599" v3="656" />+                <face v1="1485" v2="835" v3="1599" />+                <face v1="491" v2="1473" v3="492" />+                <face v1="491" v2="1472" v3="1473" />+                <face v1="1476" v2="1486" v3="1473" />+                <face v1="1486" v2="1476" v3="875" />+                <face v1="664" v2="1586" v3="490" />+                <face v1="665" v2="870" v3="98" />+                <face v1="663" v2="870" v3="665" />+                <face v1="463" v2="711" v3="707" />+                <face v1="463" v2="855" v3="711" />+                <face v1="867" v2="687" v3="510" />+                <face v1="509" v2="510" v3="512" />+                <face v1="509" v2="1491" v3="510" />+                <face v1="868" v2="694" v3="501" />+                <face v1="868" v2="948" v3="694" />+                <face v1="670" v2="942" v3="671" />+                <face v1="1587" v2="942" v3="670" />+                <face v1="499" v2="674" v3="699" />+                <face v1="498" v2="674" v3="499" />+                <face v1="498" v2="672" v3="674" />+                <face v1="690" v2="1482" v3="932" />+                <face v1="690" v2="651" v3="1482" />+                <face v1="1479" v2="862" v3="876" />+                <face v1="1479" v2="861" v3="862" />+                <face v1="666" v2="848" v3="691" />+                <face v1="666" v2="1480" v3="848" />+                <face v1="675" v2="1478" v3="668" />+                <face v1="675" v2="1481" v3="1478" />+                <face v1="865" v2="932" v3="1482" />+                <face v1="502" v2="497" v3="504" />+                <face v1="866" v2="683" v3="692" />+                <face v1="683" v2="866" v3="684" />+                <face v1="1589" v2="682" v3="1591" />+                <face v1="858" v2="682" v3="1589" />+                <face v1="1595" v2="769" v3="1593" />+                <face v1="1596" v2="497" v3="499" />+                <face v1="1597" v2="497" v3="1596" />+                <face v1="935" v2="705" v3="857" />+                <face v1="705" v2="935" v3="706" />+                <face v1="709" v2="937" v3="938" />+                <face v1="708" v2="937" v3="709" />+                <face v1="702" v2="854" v3="712" />+                <face v1="702" v2="939" v3="854" />+                <face v1="947" v2="945" v3="944" />+                <face v1="947" v2="1470" v3="945" />+                <face v1="672" v2="948" v3="673" />+                <face v1="672" v2="694" v3="948" />+                <face v1="934" v2="348" v3="1337" />+                <face v1="934" v2="460" v3="348" />+                <face v1="86" v2="936" v3="1336" />+                <face v1="1464" v2="852" v3="851" />+                <face v1="1475" v2="869" v3="850" />+                <face v1="1475" v2="1598" v3="869" />+                <face v1="1476" v2="849" v3="875" />+                <face v1="1499" v2="1182" v3="1497" />+                <face v1="493" v2="875" v3="1489" />+                <face v1="1486" v2="875" v3="493" />+                <face v1="1476" v2="850" v3="849" />+                <face v1="1475" v2="850" v3="1476" />+                <face v1="1511" v2="1600" v3="918" />+                <face v1="1511" v2="544" v3="1600" />+                <face v1="1494" v2="924" v3="1519" />+                <face v1="1494" v2="922" v3="924" />+                <face v1="686" v2="928" v3="720" />+                <face v1="864" v2="928" v3="686" />+                <face v1="837" v2="1511" v3="1508" />+                <face v1="837" v2="727" v3="1511" />+                <face v1="556" v2="573" v3="591" />+                <face v1="1540" v2="846" v3="606" />+                <face v1="1540" v2="776" v3="846" />+                <face v1="590" v2="605" v3="894" />+                <face v1="1521" v2="1601" v3="842" />+                <face v1="1601" v2="1521" v3="1602" />+                <face v1="745" v2="748" v3="1603" />+                <face v1="912" v2="578" v3="577" />+                <face v1="912" v2="570" v3="578" />+                <face v1="576" v2="1527" v3="1604" />+                <face v1="575" v2="1527" v3="576" />+                <face v1="574" v2="842" v3="1601" />+                <face v1="910" v2="1521" v3="1520" />+                <face v1="909" v2="1521" v3="910" />+                <face v1="1523" v2="1530" v3="1522" />+                <face v1="1530" v2="1523" v3="907" />+                <face v1="1532" v2="562" v3="561" />+                <face v1="564" v2="745" v3="565" />+                <face v1="1606" v2="568" v3="571" />+                <face v1="1603" v2="568" v3="1606" />+                <face v1="1528" v2="906" v3="1526" />+                <face v1="906" v2="1528" v3="1529" />+                <face v1="844" v2="1518" v3="753" />+                <face v1="1518" v2="844" v3="536" />+                <face v1="597" v2="840" v3="648" />+                <face v1="597" v2="1515" v3="840" />+                <face v1="579" v2="484" v3="483" />+                <face v1="581" v2="484" v3="579" />+                <face v1="648" v2="759" v3="647" />+                <face v1="840" v2="759" v3="648" />+                <face v1="527" v2="529" v3="532" />+                <face v1="758" v2="1538" v3="488" />+                <face v1="760" v2="1538" v3="758" />+                <face v1="1514" v2="588" v3="916" />+                <face v1="1514" v2="898" v3="588" />+                <face v1="1608" v2="769" v3="768" />+                <face v1="1608" v2="1593" v3="769" />+                <face v1="1528" v2="1601" v3="1602" />+                <face v1="1528" v2="1525" v3="1601" />+                <face v1="1522" v2="908" v3="1609" />+                <face v1="1530" v2="908" v3="1522" />+                <face v1="1604" v2="786" v3="576" />+                <face v1="1604" v2="1524" v3="786" />+                <face v1="1532" v2="834" v3="562" />+                <face v1="831" v2="1611" v3="1610" />+                <face v1="1459" v2="463" v3="461" />+                <face v1="463" v2="1459" v3="855" />+                <face v1="1549" v2="1613" v3="1551" />+                <face v1="1549" v2="1614" v3="1613" />+                <face v1="1553" v2="830" v3="829" />+                <face v1="887" v2="801" v3="1559" />+                <face v1="887" v2="827" v3="801" />+                <face v1="1615" v2="1270" v3="1617" />+                <face v1="1615" v2="805" v3="1270" />+                <face v1="890" v2="826" v3="471" />+                <face v1="826" v2="890" v3="1619" />+                <face v1="825" v2="832" v3="619" />+                <face v1="833" v2="832" v3="825" />+                <face v1="1392" v2="817" v3="816" />+                <face v1="1542" v2="1620" v3="817" />+                <face v1="1543" v2="1622" v3="1623" />+                <face v1="1543" v2="1624" v3="1622" />+                <face v1="1610" v2="1625" v3="1544" />+                <face v1="1610" v2="1626" v3="1625" />+                <face v1="1396" v2="1626" v3="1611" />+                <face v1="1399" v2="1629" v3="1397" />+                <face v1="1399" v2="1630" v3="1629" />+                <face v1="1398" v2="616" v3="1631" />+                <face v1="615" v2="616" v3="1398" />+                <face v1="819" v2="883" v3="820" />+                <face v1="819" v2="880" v3="883" />+                <face v1="1561" v2="1562" v3="1566" />+                <face v1="1562" v2="1561" v3="882" />+                <face v1="1565" v2="1569" v3="1572" />+                <face v1="1632" v2="1575" v3="1574" />+                <face v1="1632" v2="1573" v3="1575" />+                <face v1="1581" v2="1577" v3="638" />+                <face v1="878" v2="1310" v3="1581" />+                <face v1="1581" v2="1310" v3="1577" />+                <face v1="1577" v2="1574" v3="638" />+                <face v1="1577" v2="1632" v3="1574" />+                <face v1="1573" v2="1569" v3="1575" />+                <face v1="1573" v2="1572" v3="1569" />+                <face v1="1566" v2="1569" v3="1565" />+                <face v1="1569" v2="1566" v3="1562" />+                <face v1="883" v2="882" v3="1561" />+                <face v1="882" v2="883" v3="880" />+                <face v1="1631" v2="1399" v3="1398" />+                <face v1="1631" v2="1630" v3="1399" />+                <face v1="1626" v2="1397" v3="1629" />+                <face v1="1397" v2="1626" v3="1396" />+                <face v1="1611" v2="1626" v3="1610" />+                <face v1="1544" v2="1624" v3="1543" />+                <face v1="1544" v2="1625" v3="1624" />+                <face v1="1623" v2="1620" v3="1542" />+                <face v1="1620" v2="1623" v3="1622" />+                <face v1="1263" v2="815" v3="1366" />+                <face v1="818" v2="815" v3="1263" />+                <face v1="1116" v2="459" v3="458" />+                <face v1="349" v2="459" v3="1116" />+                <face v1="807" v2="1619" v3="890" />+                <face v1="1619" v2="807" v3="804" />+                <face v1="806" v2="805" v3="1615" />+                <face v1="1617" v2="1270" v3="1360" />+                <face v1="620" v2="887" v3="1559" />+                <face v1="798" v2="621" v3="1559" />+                <face v1="798" v2="472" v3="621" />+                <face v1="1551" v2="830" v3="1553" />+                <face v1="1551" v2="1613" v3="830" />+                <face v1="1548" v2="1614" v3="1549" />+                <face v1="1548" v2="1268" v3="1614" />+                <face v1="464" v2="794" v3="461" />+                <face v1="458" v2="855" v3="1459" />+                <face v1="529" v2="790" v3="532" />+                <face v1="790" v2="529" v3="787" />+                <face v1="1524" v2="783" v3="751" />+                <face v1="783" v2="1524" v3="1604" />+                <face v1="1601" v2="903" v3="573" />+                <face v1="1601" v2="1525" v3="903" />+                <face v1="911" v2="1530" v3="1529" />+                <face v1="911" v2="908" v3="1530" />+                <face v1="744" v2="777" v3="1518" />+                <face v1="1609" v2="741" v3="1522" />+                <face v1="1609" v2="778" v3="741" />+                <face v1="1602" v2="1529" v3="1528" />+                <face v1="1602" v2="911" v3="1529" />+                <face v1="795" v2="771" v3="512" />+                <face v1="795" v2="678" v3="771" />+                <face v1="836" v2="507" v3="678" />+                <face v1="507" v2="836" v3="508" />+                <face v1="838" v2="898" v3="1514" />+                <face v1="916" v2="588" v3="766" />+                <face v1="1538" v2="788" v3="766" />+                <face v1="788" v2="1538" v3="760" />+                <face v1="527" v2="531" v3="765" />+                <face v1="531" v2="527" v3="532" />+                <face v1="579" v2="483" v3="1537" />+                <face v1="599" v2="1515" v3="597" />+                <face v1="599" v2="841" v3="1515" />+                <face v1="488" v2="1537" v3="483" />+                <face v1="488" v2="1538" v3="1537" />+                <face v1="559" v2="757" v3="842" />+                <face v1="754" v2="753" v3="1518" />+                <face v1="783" v2="906" v3="752" />+                <face v1="783" v2="1526" v3="906" />+                <face v1="571" v2="749" v3="1606" />+                <face v1="571" v2="750" v3="749" />+                <face v1="1603" v2="747" v3="568" />+                <face v1="748" v2="747" v3="1603" />+                <face v1="565" v2="1532" v3="561" />+                <face v1="1532" v2="565" v3="745" />+                <face v1="834" v2="907" v3="1523" />+                <face v1="907" v2="834" v3="1532" />+                <face v1="1609" v2="910" v3="1520" />+                <face v1="910" v2="1609" v3="908" />+                <face v1="909" v2="1602" v3="1521" />+                <face v1="911" v2="1602" v3="909" />+                <face v1="1525" v2="1527" v3="575" />+                <face v1="577" v2="1524" v3="912" />+                <face v1="786" v2="1524" v3="577" />+                <face v1="757" v2="777" v3="778" />+                <face v1="757" v2="756" v3="777" />+                <face v1="784" v2="742" v3="740" />+                <face v1="741" v2="742" v3="784" />+                <face v1="560" v2="739" v3="566" />+                <face v1="550" v2="735" v3="734" />+                <face v1="735" v2="550" v3="569" />+                <face v1="745" v2="1603" v3="1606" />+                <face v1="591" v2="894" v3="556" />+                <face v1="590" v2="894" v3="591" />+                <face v1="605" v2="606" v3="894" />+                <face v1="605" v2="1540" v3="606" />+                <face v1="727" v2="838" v3="728" />+                <face v1="727" v2="837" v3="838" />+                <face v1="795" v2="1503" v3="1493" />+                <face v1="720" v2="609" v3="607" />+                <face v1="923" v2="922" v3="666" />+                <face v1="676" v2="928" v3="864" />+                <face v1="1519" v2="918" v3="914" />+                <face v1="1519" v2="924" v3="918" />+                <face v1="918" v2="1600" v3="913" />+                <face v1="914" v2="918" v3="913" />+                <face v1="1599" v2="493" v3="1489" />+                <face v1="835" v2="685" v3="931" />+                <face v1="1499" v2="1497" v3="1500" />+                <face v1="1598" v2="1500" v3="869" />+                <face v1="941" v2="714" v3="1464" />+                <face v1="934" v2="1336" v3="936" />+                <face v1="1336" v2="934" v3="1337" />+                <face v1="944" v2="948" v3="947" />+                <face v1="673" v2="948" v3="944" />+                <face v1="1470" v2="1464" v3="945" />+                <face v1="1470" v2="941" v3="1464" />+                <face v1="939" v2="704" v3="714" />+                <face v1="702" v2="704" v3="939" />+                <face v1="713" v2="938" v3="715" />+                <face v1="709" v2="938" v3="713" />+                <face v1="708" v2="935" v3="937" />+                <face v1="706" v2="935" v3="708" />+                <face v1="1596" v2="499" v3="700" />+                <face v1="1597" v2="768" v3="497" />+                <face v1="1608" v2="768" v3="1597" />+                <face v1="1595" v2="1591" v3="769" />+                <face v1="1589" v2="1591" v3="1595" />+                <face v1="696" v2="684" v3="866" />+                <face v1="1588" v2="695" v3="506" />+                <face v1="1588" v2="696" v3="695" />+                <face v1="859" v2="1485" v3="655" />+                <face v1="859" v2="685" v3="1485" />+                <face v1="688" v2="693" v3="932" />+                <face v1="1482" v2="675" v3="865" />+                <face v1="1482" v2="1481" v3="675" />+                <face v1="668" v2="1480" v3="666" />+                <face v1="668" v2="1478" v3="1480" />+                <face v1="1480" v2="876" v3="848" />+                <face v1="876" v2="1480" v3="1479" />+                <face v1="1503" v2="1587" v3="1493" />+                <face v1="458" v2="856" v3="855" />+                <face v1="458" v2="460" v3="856" />+                <face v1="1463" v2="1587" v3="1503" />+                <face v1="1463" v2="942" v3="1587" />+                <face v1="674" v2="681" v3="680" />+                <face v1="674" v2="673" v3="681" />+                <face v1="505" v2="670" v3="503" />+                <face v1="670" v2="505" v3="677" />+                <face v1="507" v2="512" v3="771" />+                <face v1="507" v2="509" v3="512" />+                <face v1="1491" v2="867" v3="510" />+                <face v1="865" v2="676" v3="864" />+                <face v1="865" v2="675" v3="676" />+                <face v1="1471" v2="1598" v3="1475" />+                <face v1="1206" v2="517" v3="1471" />+                <face v1="517" v2="1206" v3="41" />+                <face v1="854" v2="1503" v3="464" />+                <face v1="1503" v2="854" v3="1463" />+                <face v1="1472" v2="490" v3="1586" />+                <face v1="490" v2="1472" v3="491" />+                <face v1="492" v2="1473" v3="1486" />+                <face v1="835" v2="658" v3="1599" />+                <face v1="835" v2="659" v3="658" />+                <face v1="655" v2="1485" v3="656" />+                <face v1="1422" v2="1094" v3="824" />+                <face v1="824" v2="1094" v3="289" />+                <face v1="824" v2="1582" v3="488" />+                <face v1="649" v2="452" v3="602" />+                <face v1="649" v2="645" v3="452" />+                <face v1="644" v2="1582" v3="643" />+                <face v1="645" v2="1582" v3="644" />+                <face v1="1311" v2="1310" v3="878" />+                <face v1="643" v2="1428" v3="427" />+                <face v1="1581" v2="637" v3="1430" />+                <face v1="1428" v2="1415" v3="424" />+                <face v1="1428" v2="1431" v3="1415" />+                <face v1="634" v2="425" v3="635" />+                <face v1="642" v2="425" v3="634" />+                <face v1="638" v2="1434" v3="639" />+                <face v1="638" v2="1574" v3="1434" />+                <face v1="1417" v2="631" v3="635" />+                <face v1="1417" v2="1414" v3="631" />+                <face v1="1299" v2="1573" v3="1632" />+                <face v1="1299" v2="1301" v3="1573" />+                <face v1="1412" v2="1436" v3="1433" />+                <face v1="1415" v2="1436" v3="1412" />+                <face v1="1435" v2="1575" v3="1569" />+                <face v1="1567" v2="1414" v3="1411" />+                <face v1="631" v2="1414" v3="1567" />+                <face v1="1292" v2="1565" v3="1572" />+                <face v1="1292" v2="1294" v3="1565" />+                <face v1="1437" v2="1564" v3="1413" />+                <face v1="1563" v2="884" v3="1567" />+                <face v1="884" v2="1563" v3="477" />+                <face v1="1562" v2="1439" v3="1569" />+                <face v1="1439" v2="1562" v3="1443" />+                <face v1="1409" v2="1563" v3="1568" />+                <face v1="1563" v2="1409" v3="1465" />+                <face v1="1566" v2="1283" v3="1561" />+                <face v1="1566" v2="1286" v3="1283" />+                <face v1="1410" v2="1441" v3="1442" />+                <face v1="1407" v2="1441" v3="1410" />+                <face v1="1406" v2="632" v3="1408" />+                <face v1="632" v2="1406" v3="628" />+                <face v1="1404" v2="441" v3="953" />+                <face v1="1404" v2="1560" v3="441" />+                <face v1="813" v2="453" v3="650" />+                <face v1="623" v2="453" v3="813" />+                <face v1="1558" v2="813" v3="812" />+                <face v1="886" v2="813" v3="1558" />+                <face v1="1557" v2="812" v3="1444" />+                <face v1="1558" v2="812" v3="1557" />+                <face v1="1447" v2="634" v3="954" />+                <face v1="1445" v2="634" v3="1447" />+                <face v1="1559" v2="1557" v3="888" />+                <face v1="954" v2="1448" v3="1447" />+                <face v1="954" v2="1420" v3="1448" />+                <face v1="1420" v2="446" v3="1448" />+                <face v1="1420" v2="433" v3="446" />+                <face v1="798" v2="1556" v3="797" />+                <face v1="798" v2="889" v3="1556" />+                <face v1="1556" v2="443" v3="1555" />+                <face v1="1556" v2="444" v3="443" />+                <face v1="1555" v2="447" v3="1554" />+                <face v1="1555" v2="443" v3="447" />+                <face v1="1554" v2="447" v3="1552" />+                <face v1="807" v2="1613" v3="805" />+                <face v1="807" v2="830" v3="1613" />+                <face v1="952" v2="1552" v3="447" />+                <face v1="1552" v2="952" v3="1550" />+                <face v1="805" v2="1613" v3="1614" />+                <face v1="1550" v2="1450" v3="1271" />+                <face v1="1550" v2="952" v3="1450" />+                <face v1="805" v2="1268" v3="1270" />+                <face v1="805" v2="1614" v3="1268" />+                <face v1="1271" v2="1450" v3="1272" />+                <face v1="1544" v2="831" v3="1610" />+                <face v1="831" v2="1544" v3="522" />+                <face v1="1543" v2="1623" v3="1386" />+                <face v1="1116" v2="818" v3="1263" />+                <face v1="1401" v2="604" v3="611" />+                <face v1="606" v2="719" v3="607" />+                <face v1="846" v2="719" v3="606" />+                <face v1="894" v2="609" v3="895" />+                <face v1="1540" v2="589" v3="893" />+                <face v1="605" v2="589" v3="1540" />+                <face v1="838" v2="731" v3="900" />+                <face v1="766" v2="583" v3="585" />+                <face v1="898" v2="584" v3="586" />+                <face v1="898" v2="1536" v3="584" />+                <face v1="584" v2="1536" v3="731" />+                <face v1="585" v2="582" v3="580" />+                <face v1="1508" v2="731" v3="837" />+                <face v1="917" v2="731" v3="1510" />+                <face v1="786" v2="553" v3="555" />+                <face v1="577" v2="553" v3="786" />+                <face v1="745" v2="749" v3="1532" />+                <face v1="745" v2="1606" v3="749" />+                <face v1="1604" v2="1526" v3="783" />+                <face v1="1527" v2="1526" v3="1604" />+                <face v1="747" v2="569" v3="568" />+                <face v1="747" v2="735" v3="569" />+                <face v1="733" v2="564" v3="567" />+                <face v1="564" v2="733" v3="746" />+                <face v1="784" v2="1523" v3="741" />+                <face v1="784" v2="834" v3="1523" />+                <face v1="1520" v2="778" v3="1609" />+                <face v1="778" v2="1520" v3="757" />+                <face v1="553" v2="550" v3="554" />+                <face v1="578" v2="550" v3="553" />+                <face v1="550" v2="578" v3="552" />+                <face v1="744" v2="536" v3="742" />+                <face v1="536" v2="744" v3="1518" />+                <face v1="547" v2="558" v3="542" />+                <face v1="547" v2="559" v3="558" />+                <face v1="542" v2="913" v3="1600" />+                <face v1="1600" v2="539" v3="542" />+                <face v1="1600" v2="544" v3="539" />+                <face v1="530" v2="844" v3="546" />+                <face v1="844" v2="530" v3="536" />+                <face v1="841" v2="789" v3="1515" />+                <face v1="792" v2="789" v3="841" />+                <face v1="531" v2="530" v3="764" />+                <face v1="532" v2="534" v3="533" />+                <face v1="760" v2="787" v3="788" />+                <face v1="760" v2="759" v3="787" />+                <face v1="1514" v2="728" v3="838" />+                <face v1="1514" v2="764" v3="728" />+                <face v1="543" v2="1511" v3="727" />+                <face v1="544" v2="1511" v3="543" />+                <face v1="1510" v2="918" v3="917" />+                <face v1="522" v2="465" v3="831" />+                <face v1="465" v2="522" v3="466" />+                <face v1="1386" v2="466" v3="520" />+                <face v1="466" v2="1386" v3="461" />+                <face v1="467" v2="466" v3="1504" />+                <face v1="464" v2="1503" v3="794" />+                <face v1="1471" v2="1500" v3="1598" />+                <face v1="1471" v2="518" v3="1500" />+                <face v1="1500" v2="1496" v3="516" />+                <face v1="1500" v2="1497" v3="1496" />+                <face v1="1223" v2="1496" v3="1224" />+                <face v1="1223" v2="1466" v3="1496" />+                <face v1="514" v2="1467" v3="923" />+                <face v1="516" v2="1467" v3="514" />+                <face v1="1587" v2="677" v3="1493" />+                <face v1="677" v2="1587" v3="670" />+                <face v1="682" v2="684" v3="696" />+                <face v1="696" v2="1591" v3="682" />+                <face v1="769" v2="696" v3="1588" />+                <face v1="1591" v2="696" v3="769" />+                <face v1="769" v2="1588" v3="506" />+                <face v1="497" v2="768" v3="767" />+                <face v1="656" v2="1489" v3="495" />+                <face v1="656" v2="1599" v3="1489" />+                <face v1="493" v2="1599" v3="658" />+                <face v1="1586" v2="1206" v3="1472" />+                <face v1="1206" v2="1586" v3="1185" />+                <face v1="871" v2="699" v3="674" />+                <face v1="871" v2="659" v3="699" />+                <face v1="1481" v2="874" v3="1478" />+                <face v1="1481" v2="653" v3="874" />+                <face v1="1422" v2="483" v3="56" />+                <face v1="483" v2="480" v3="1193" />+                <face v1="1193" v2="481" v3="1194" />+                <face v1="481" v2="1467" v3="1466" />+                <face v1="481" v2="482" v3="1467" />+                <face v1="632" v2="477" v3="1465" />+                <face v1="477" v2="632" v3="478" />+                <face v1="887" v2="619" v3="832" />+                <face v1="887" v2="620" v3="619" />+                <face v1="943" v2="941" v3="1470" />+                <face v1="940" v2="941" v3="943" />+                <face v1="1185" v2="664" v3="1186" />+                <face v1="664" v2="1185" v3="1586" />+                <face v1="1461" v2="1182" v3="1499" />+                <face v1="1461" v2="1184" v3="1182" />+                <face v1="474" v2="1461" v3="518" />+                <face v1="474" v2="39" v3="1461" />+                <face v1="465" v2="467" v3="523" />+                <face v1="461" v2="1386" v3="1459" />+                <face v1="1504" v2="925" v3="523" />+                <face v1="1542" v2="1386" v3="1623" />+                <face v1="1386" v2="1542" v3="1392" />+                <face v1="725" v2="466" v3="721" />+                <face v1="423" v2="1450" v3="952" />+                <face v1="1450" v2="423" v3="1451" />+                <face v1="1448" v2="444" v3="1449" />+                <face v1="444" v2="1448" v3="446" />+                <face v1="1449" v2="1445" v3="1447" />+                <face v1="1449" v2="1444" v3="1445" />+                <face v1="422" v2="617" v3="821" />+                <face v1="422" v2="618" v3="617" />+                <face v1="881" v2="1442" v3="879" />+                <face v1="1560" v2="1442" v3="881" />+                <face v1="1441" v2="1439" v3="1443" />+                <face v1="1441" v2="1437" v3="1439" />+                <face v1="1435" v2="1437" v3="1433" />+                <face v1="1436" v2="639" v3="1434" />+                <face v1="1436" v2="1431" v3="639" />+                <face v1="1428" v2="1430" v3="637" />+                <face v1="643" v2="824" v3="878" />+                <face v1="483" v2="1422" v3="824" />+                <face v1="433" v2="431" v3="436" />+                <face v1="441" v2="618" v3="953" />+                <face v1="440" v2="618" v3="441" />+                <face v1="1420" v2="431" v3="433" />+                <face v1="1420" v2="630" v3="431" />+                <face v1="441" v2="881" v3="442" />+                <face v1="1560" v2="881" v3="441" />+                <face v1="1417" v2="424" v3="1415" />+                <face v1="1415" v2="1412" v3="1414" />+                <face v1="1413" v2="1568" v3="1411" />+                <face v1="1413" v2="1564" v3="1568" />+                <face v1="1409" v2="1564" v3="1407" />+                <face v1="1568" v2="1564" v3="1409" />+                <face v1="1406" v2="1410" v3="1404" />+                <face v1="1408" v2="1410" v3="1406" />+                <face v1="953" v2="421" v3="1405" />+                <face v1="953" v2="422" v3="421" />+                <face v1="1403" v2="719" v3="454" />+                <face v1="1403" v2="725" v3="719" />+                <face v1="719" v2="1401" v3="454" />+                <face v1="626" v2="925" v3="457" />+                <face v1="627" v2="419" v3="626" />+                <face v1="416" v2="615" v3="1398" />+                <face v1="1399" v2="1397" v3="416" />+                <face v1="416" v2="1611" v3="831" />+                <face v1="416" v2="1396" v3="1611" />+                <face v1="1386" v2="1392" v3="1394" />+                <face v1="522" v2="1543" v3="520" />+                <face v1="1102" v2="1633" v3="1381" />+                <face v1="1308" v2="1310" v3="288" />+                <face v1="1302" v2="1304" v3="1309" />+                <face v1="1297" v2="1300" v3="1303" />+                <face v1="1297" v2="1298" v3="1300" />+                <face v1="1289" v2="1291" v3="1293" />+                <face v1="1288" v2="1285" v3="1284" />+                <face v1="279" v2="1285" v3="1288" />+                <face v1="1060" v2="1123" v3="1377" />+                <face v1="1123" v2="1060" v3="1059" />+                <face v1="1376" v2="1122" v3="1121" />+                <face v1="1376" v2="1378" v3="1122" />+                <face v1="1373" v2="1120" v3="1119" />+                <face v1="1372" v2="1266" v3="1265" />+                <face v1="1372" v2="1373" v3="1266" />+                <face v1="1370" v2="1264" v3="1173" />+                <face v1="1370" v2="1371" v3="1264" />+                <face v1="1368" v2="1172" v3="960" />+                <face v1="960" v2="1111" v3="963" />+                <face v1="252" v2="1365" v3="1189" />+                <face v1="1365" v2="252" v3="398" />+                <face v1="409" v2="1363" v3="410" />+                <face v1="409" v2="1364" v3="1363" />+                <face v1="408" v2="240" v3="242" />+                <face v1="1362" v2="240" v3="408" />+                <face v1="1270" v2="1361" v3="1359" />+                <face v1="1270" v2="236" v3="1361" />+                <face v1="407" v2="253" v3="1358" />+                <face v1="407" v2="254" v3="253" />+                <face v1="404" v2="1087" v3="241" />+                <face v1="248" v2="1087" v3="404" />+                <face v1="405" v2="243" v3="238" />+                <face v1="237" v2="1355" v3="1356" />+                <face v1="237" v2="1275" v3="1355" />+                <face v1="341" v2="1180" v3="1088" />+                <face v1="340" v2="1180" v3="341" />+                <face v1="1266" v2="1119" v3="132" />+                <face v1="196" v2="1249" v3="973" />+                <face v1="196" v2="1342" v3="1249" />+                <face v1="186" v2="1351" v3="366" />+                <face v1="1351" v2="186" v3="1352" />+                <face v1="1348" v2="1350" v3="1344" />+                <face v1="1348" v2="1343" v3="1350" />+                <face v1="382" v2="111" v3="1216" />+                <face v1="111" v2="382" v3="1329" />+                <face v1="111" v2="1333" v3="1216" />+                <face v1="111" v2="1634" v3="1333" />+                <face v1="378" v2="381" v3="377" />+                <face v1="378" v2="354" v3="381" />+                <face v1="1066" v2="24" v3="21" />+                <face v1="24" v2="1066" v3="146" />+                <face v1="1075" v2="393" v3="141" />+                <face v1="145" v2="225" v3="293" />+                <face v1="225" v2="145" v3="375" />+                <face v1="53" v2="1067" v3="56" />+                <face v1="1067" v2="53" v3="991" />+                <face v1="375" v2="223" v3="225" />+                <face v1="375" v2="1242" v3="223" />+                <face v1="1346" v2="159" v3="154" />+                <face v1="157" v2="159" v3="1346" />+                <face v1="189" v2="1350" v3="1248" />+                <face v1="187" v2="1350" v3="189" />+                <face v1="1070" v2="1253" v3="1071" />+                <face v1="1253" v2="1070" v3="1341" />+                <face v1="367" v2="369" v3="182" />+                <face v1="388" v2="1252" v3="181" />+                <face v1="1252" v2="388" v3="188" />+                <face v1="1352" v2="1246" v3="1351" />+                <face v1="188" v2="1246" v3="1352" />+                <face v1="1345" v2="184" v3="365" />+                <face v1="184" v2="1345" v3="185" />+                <face v1="1348" v2="373" v3="372" />+                <face v1="1250" v2="973" v3="1249" />+                <face v1="973" v2="1250" v3="194" />+                <face v1="360" v2="1247" v3="198" />+                <face v1="360" v2="362" v3="1247" />+                <face v1="362" v2="982" v3="1069" />+                <face v1="362" v2="361" v3="982" />+                <face v1="999" v2="367" v3="1341" />+                <face v1="1348" v2="1345" v3="373" />+                <face v1="1344" v2="1345" v3="1348" />+                <face v1="212" v2="1063" v3="1062" />+                <face v1="353" v2="1260" v3="1262" />+                <face v1="353" v2="352" v3="1260" />+                <face v1="1239" v2="381" v3="1257" />+                <face v1="1239" v2="1005" v3="381" />+                <face v1="122" v2="320" v3="120" />+                <face v1="320" v2="122" v3="321" />+                <face v1="138" v2="1635" v3="1340" />+                <face v1="138" v2="137" v3="1635" />+                <face v1="149" v2="1239" v3="1233" />+                <face v1="149" v2="150" v3="1239" />+                <face v1="149" v2="1233" v3="175" />+                <face v1="310" v2="1636" v3="88" />+                <face v1="1636" v2="310" v3="1322" />+                <face v1="299" v2="104" v3="1212" />+                <face v1="104" v2="299" v3="1320" />+                <face v1="1182" v2="1183" v3="1226" />+                <face v1="299" v2="88" v3="1636" />+                <face v1="312" v2="1322" v3="310" />+                <face v1="312" v2="1228" v3="1322" />+                <face v1="77" v2="1335" v3="84" />+                <face v1="1336" v2="83" v3="86" />+                <face v1="348" v2="81" v3="1337" />+                <face v1="64" v2="326" v3="1034" />+                <face v1="64" v2="109" v3="326" />+                <face v1="66" v2="65" v3="67" />+                <face v1="66" v2="1188" v3="65" />+                <face v1="331" v2="74" v3="332" />+                <face v1="78" v2="338" v3="76" />+                <face v1="338" v2="78" v3="335" />+                <face v1="44" v2="80" v3="82" />+                <face v1="336" v2="80" v3="44" />+                <face v1="1334" v2="1082" v3="1332" />+                <face v1="1217" v2="1634" v3="111" />+                <face v1="1634" v2="1217" v3="1330" />+                <face v1="330" v2="1331" v3="1217" />+                <face v1="1331" v2="330" v3="329" />+                <face v1="90" v2="317" v3="318" />+                <face v1="1027" v2="317" v3="90" />+                <face v1="1214" v2="108" v3="1081" />+                <face v1="1214" v2="1023" v3="108" />+                <face v1="1205" v2="319" v3="1328" />+                <face v1="1204" v2="1030" v3="1032" />+                <face v1="1204" v2="1203" v3="1030" />+                <face v1="87" v2="1024" v3="311" />+                <face v1="87" v2="1326" v3="1024" />+                <face v1="298" v2="1327" v3="89" />+                <face v1="298" v2="308" v3="1327" />+                <face v1="1328" v2="1025" v3="1205" />+                <face v1="1328" v2="1026" v3="1025" />+                <face v1="1033" v2="1018" v3="1017" />+                <face v1="1033" v2="327" v3="1018" />+                <face v1="1033" v2="326" v3="327" />+                <face v1="70" v2="1035" v3="71" />+                <face v1="1035" v2="70" v3="1219" />+                <face v1="109" v2="63" v3="110" />+                <face v1="109" v2="64" v3="63" />+                <face v1="1080" v2="1323" v3="1325" />+                <face v1="314" v2="1323" v3="117" />+                <face v1="314" v2="313" v3="1323" />+                <face v1="45" v2="341" v3="43" />+                <face v1="45" v2="340" v3="341" />+                <face v1="97" v2="305" v3="99" />+                <face v1="303" v2="309" v3="304" />+                <face v1="1320" v2="1636" v3="1199" />+                <face v1="299" v2="1636" v3="1320" />+                <face v1="1199" v2="1083" v3="1319" />+                <face v1="1199" v2="1207" v3="1083" />+                <face v1="1209" v2="324" v3="1036" />+                <face v1="1209" v2="94" v3="324" />+                <face v1="308" v2="301" v3="1327" />+                <face v1="301" v2="308" v3="105" />+                <face v1="993" v2="53" v3="50" />+                <face v1="53" v2="993" v3="992" />+                <face v1="293" v2="224" v3="292" />+                <face v1="225" v2="224" v3="293" />+                <face v1="292" v2="1313" v3="21" />+                <face v1="1041" v2="1313" v3="292" />+                <face v1="288" v2="1311" v3="289" />+                <face v1="1042" v2="289" v3="1313" />+                <face v1="1042" v2="288" v3="289" />+                <face v1="288" v2="1146" v3="1308" />+                <face v1="282" v2="1147" v3="283" />+                <face v1="1149" v2="1309" v3="1148" />+                <face v1="1149" v2="1302" v3="1309" />+                <face v1="282" v2="1044" v3="1138" />+                <face v1="1044" v2="282" v3="1043" />+                <face v1="1639" v2="1578" v3="1304" />+                <face v1="1139" v2="1150" v3="1152" />+                <face v1="1303" v2="1153" v3="1297" />+                <face v1="1153" v2="1303" v3="1151" />+                <face v1="1293" v2="1301" v3="1298" />+                <face v1="1293" v2="1292" v3="1301" />+                <face v1="11" v2="272" v3="1290" />+                <face v1="272" v2="11" v3="270" />+                <face v1="1155" v2="1289" v3="1153" />+                <face v1="1287" v2="1134" v3="1290" />+                <face v1="1287" v2="1133" v3="1134" />+                <face v1="1291" v2="1286" v3="1294" />+                <face v1="1284" v2="1286" v3="1291" />+                <face v1="1132" v2="1158" v3="1130" />+                <face v1="1132" v2="1156" v3="1158" />+                <face v1="266" v2="1190" v3="1287" />+                <face v1="1157" v2="279" v3="1288" />+                <face v1="280" v2="279" v3="1157" />+                <face v1="1285" v2="276" v3="1283" />+                <face v1="274" v2="276" v3="1285" />+                <face v1="1128" v2="1159" v3="1127" />+                <face v1="1128" v2="1140" v3="1159" />+                <face v1="281" v2="17" v3="14" />+                <face v1="281" v2="278" v3="17" />+                <face v1="266" v2="269" v3="268" />+                <face v1="266" v2="272" v3="269" />+                <face v1="411" v2="413" v3="406" />+                <face v1="413" v2="411" v3="6" />+                <face v1="406" v2="255" v3="254" />+                <face v1="413" v2="255" v3="406" />+                <face v1="1056" v2="1358" v3="1282" />+                <face v1="1358" v2="1056" v3="407" />+                <face v1="1160" v2="297" v3="296" />+                <face v1="1160" v2="12" v3="297" />+                <face v1="1282" v2="968" v3="1281" />+                <face v1="1358" v2="968" v3="1282" />+                <face v1="1161" v2="1281" v3="249" />+                <face v1="1161" v2="1163" v3="1281" />+                <face v1="970" v2="1364" v3="969" />+                <face v1="1364" v2="970" v3="1189" />+                <face v1="251" v2="1161" v3="249" />+                <face v1="1087" v2="1364" v3="409" />+                <face v1="1364" v2="1087" v3="969" />+                <face v1="251" v2="1092" v3="1161" />+                <face v1="1280" v2="1092" v3="251" />+                <face v1="26" v2="245" v3="244" />+                <face v1="26" v2="1095" v3="245" />+                <face v1="1280" v2="404" v3="405" />+                <face v1="26" v2="1057" v3="1095" />+                <face v1="1278" v2="1280" v3="405" />+                <face v1="405" v2="1277" v3="1278" />+                <face v1="1356" v2="1277" v3="405" />+                <face v1="1356" v2="1276" v3="1277" />+                <face v1="1355" v2="1276" v3="1356" />+                <face v1="1355" v2="1271" v3="1276" />+                <face v1="1548" v2="1271" v3="1355" />+                <face v1="1451" v2="1421" v3="959" />+                <face v1="1264" v2="1265" v3="134" />+                <face v1="1111" v2="960" v3="1172" />+                <face v1="1040" v2="412" v3="258" />+                <face v1="1040" v2="1091" v3="412" />+                <face v1="352" v2="1091" v3="228" />+                <face v1="352" v2="351" v3="1091" />+                <face v1="1012" v2="212" v3="121" />+                <face v1="212" v2="1012" v3="1262" />+                <face v1="352" v2="216" v3="1260" />+                <face v1="1635" v2="173" v3="1340" />+                <face v1="1635" v2="119" v3="173" />+                <face v1="209" v2="378" v3="211" />+                <face v1="209" v2="206" v3="378" />+                <face v1="206" v2="1258" v3="199" />+                <face v1="1258" v2="206" v3="209" />+                <face v1="202" v2="208" v3="203" />+                <face v1="1067" v2="202" v3="1065" />+                <face v1="201" v2="199" v3="1258" />+                <face v1="202" v2="48" v3="1256" />+                <face v1="1236" v2="1257" v3="201" />+                <face v1="1232" v2="1256" v3="48" />+                <face v1="188" v2="997" v3="1252" />+                <face v1="188" v2="976" v3="997" />+                <face v1="187" v2="188" v3="1352" />+                <face v1="187" v2="189" v3="188" />+                <face v1="1248" v2="1343" v3="1250" />+                <face v1="1248" v2="1350" v3="1343" />+                <face v1="975" v2="1247" v3="996" />+                <face v1="1247" v2="975" v3="1342" />+                <face v1="368" v2="1002" v3="363" />+                <face v1="998" v2="1002" v3="368" />+                <face v1="1351" v2="1000" v3="979" />+                <face v1="1351" v2="1246" v3="1000" />+                <face v1="373" v2="365" v3="995" />+                <face v1="365" v2="373" v3="1345" />+                <face v1="176" v2="173" v3="172" />+                <face v1="173" v2="176" v3="1340" />+                <face v1="166" v2="170" v3="374" />+                <face v1="166" v2="165" v3="170" />+                <face v1="162" v2="161" v3="163" />+                <face v1="357" v2="1346" v3="356" />+                <face v1="357" v2="980" v3="1346" />+                <face v1="1072" v2="175" v3="177" />+                <face v1="149" v2="175" v3="1072" />+                <face v1="159" v2="1006" v3="154" />+                <face v1="1241" v2="162" v3="1074" />+                <face v1="162" v2="1241" v3="157" />+                <face v1="990" v2="1006" v3="1241" />+                <face v1="990" v2="1004" v3="1006" />+                <face v1="376" v2="1242" v3="375" />+                <face v1="1242" v2="376" v3="395" />+                <face v1="139" v2="990" v3="140" />+                <face v1="377" v2="990" v3="139" />+                <face v1="377" v2="381" v3="1004" />+                <face v1="1233" v2="1257" v3="1236" />+                <face v1="1257" v2="1233" v3="1239" />+                <face v1="46" v2="138" v3="1233" />+                <face v1="1635" v2="137" v3="1031" />+                <face v1="1231" v2="129" v3="34" />+                <face v1="1007" v2="1231" v3="1126" />+                <face v1="129" v2="1231" v3="1007" />+                <face v1="1183" v2="1078" v3="1227" />+                <face v1="1183" v2="1181" v3="1078" />+                <face v1="1224" v2="1226" v3="1222" />+                <face v1="1224" v2="1182" v3="1226" />+                <face v1="1079" v2="1192" v3="1222" />+                <face v1="122" v2="1635" v3="1031" />+                <face v1="122" v2="119" v3="1635" />+                <face v1="117" v2="323" v3="314" />+                <face v1="117" v2="116" v3="323" />+                <face v1="1028" v2="1220" v3="972" />+                <face v1="1029" v2="1220" v3="1028" />+                <face v1="313" v2="1021" v3="1323" />+                <face v1="1021" v2="313" v3="317" />+                <face v1="1323" v2="1329" v3="1325" />+                <face v1="1329" v2="1323" v3="1021" />+                <face v1="384" v2="1325" v3="1329" />+                <face v1="384" v2="985" v3="1325" />+                <face v1="1081" v2="986" v3="383" />+                <face v1="1081" v2="1028" v3="986" />+                <face v1="1212" v2="298" v3="299" />+                <face v1="1212" v2="106" v3="298" />+                <face v1="104" v2="1320" v3="1319" />+                <face v1="100" v2="1319" v3="1083" />+                <face v1="100" v2="104" v3="1319" />+                <face v1="99" v2="1186" v3="98" />+                <face v1="99" v2="304" v3="1186" />+                <face v1="97" v2="1033" v3="307" />+                <face v1="1033" v2="97" v3="96" />+                <face v1="1038" v2="983" v3="385" />+                <face v1="1038" v2="1017" v3="983" />+                <face v1="92" v2="324" v3="94" />+                <face v1="324" v2="328" v3="1039" />+                <face v1="328" v2="324" v3="91" />+                <face v1="1203" v2="1026" v3="1328" />+                <face v1="1203" v2="300" v3="1026" />+                <face v1="1327" v2="1204" v3="1326" />+                <face v1="301" v2="1204" v3="1327" />+                <face v1="1322" v2="1199" v3="1636" />+                <face v1="1201" v2="1199" v3="1322" />+                <face v1="1207" v2="1201" v3="1206" />+                <face v1="1207" v2="1199" v3="1201" />+                <face v1="81" v2="339" v3="82" />+                <face v1="81" v2="348" v3="339" />+                <face v1="86" v2="80" v3="78" />+                <face v1="86" v2="83" v3="80" />+                <face v1="76" v2="1335" v3="77" />+                <face v1="345" v2="1335" v3="76" />+                <face v1="63" v2="1188" v3="69" />+                <face v1="65" v2="1188" v3="63" />+                <face v1="60" v2="85" v3="68" />+                <face v1="62" v2="85" v3="60" />+                <face v1="60" v2="1034" v3="61" />+                <face v1="60" v2="67" v3="1034" />+                <face v1="1424" v2="1422" v3="1142" />+                <face v1="1422" v2="56" v3="23" />+                <face v1="54" v2="56" v3="1193" />+                <face v1="49" v2="52" v3="1079" />+                <face v1="49" v2="53" v3="52" />+                <face v1="1085" v2="1223" v3="1192" />+                <face v1="1223" v2="1085" v3="1194" />+                <face v1="50" v2="991" v3="993" />+                <face v1="991" v2="50" v3="46" />+                <face v1="1190" v2="1129" v3="1131" />+                <face v1="1050" v2="1129" v3="1190" />+                <face v1="84" v2="66" v3="68" />+                <face v1="66" v2="84" v3="1335" />+                <face v1="70" v2="72" v3="1084" />+                <face v1="70" v2="69" v3="72" />+                <face v1="1079" v2="312" v3="124" />+                <face v1="1227" v2="312" v3="1079" />+                <face v1="1184" v2="39" v3="1181" />+                <face v1="401" v2="1088" v3="36" />+                <face v1="1180" v2="1113" v3="1107" />+                <face v1="1113" v2="1180" v3="1090" />+                <face v1="34" v2="399" v3="2" />+                <face v1="963" v2="1116" v3="961" />+                <face v1="1116" v2="963" v3="1111" />+                <face v1="1272" v2="1451" v3="1165" />+                <face v1="1162" v2="1161" v3="246" />+                <face v1="1163" v2="296" v3="965" />+                <face v1="1160" v2="296" v3="1163" />+                <face v1="280" v2="1156" v3="1159" />+                <face v1="280" v2="1157" v3="1156" />+                <face v1="1153" v2="1158" v3="1155" />+                <face v1="1151" v2="1047" v3="1153" />+                <face v1="1151" v2="1150" v3="1047" />+                <face v1="1148" v2="1152" v3="1149" />+                <face v1="1148" v2="1147" v3="1152" />+                <face v1="1146" v2="288" v3="1147" />+                <face v1="1094" v2="1424" v3="1142" />+                <face v1="1421" v2="275" v3="959" />+                <face v1="273" v2="275" v3="1421" />+                <face v1="1058" v2="1052" v3="264" />+                <face v1="1052" v2="1058" v3="10" />+                <face v1="271" v2="13" v3="245" />+                <face v1="271" v2="11" v3="13" />+                <face v1="19" v2="1451" v3="959" />+                <face v1="19" v2="9" v3="1451" />+                <face v1="1135" v2="1139" v3="1138" />+                <face v1="1048" v2="1134" v3="1046" />+                <face v1="1134" v2="1048" v3="1135" />+                <face v1="1129" v2="1132" v3="1131" />+                <face v1="1129" v2="1127" v3="1132" />+                <face v1="1052" v2="1128" v3="1053" />+                <face v1="1052" v2="18" v3="1128" />+                <face v1="1124" v2="34" v3="31" />+                <face v1="1124" v2="1126" v3="34" />+                <face v1="353" v2="1008" v3="351" />+                <face v1="31" v2="1091" v3="1124" />+                <face v1="1" v2="6" v3="2" />+                <face v1="1" v2="5" v3="6" />+                <face v1="1" v2="1640" v3="5" />+                <face v1="1059" v2="0" v3="399" />+                <face v1="1123" v2="399" v3="1122" />+                <face v1="399" v2="1120" v3="1121" />+                <face v1="1111" v2="1090" v3="1116" />+                <face v1="1111" v2="1113" v3="1090" />+                <face v1="1076" v2="1107" v3="1264" />+                <face v1="1099" v2="1379" v3="1641" />+                <face v1="1099" v2="1102" v3="1379" />+            </lodfacelist>+            <lodfacelist submeshindex="2" numfaces="300">+                <face v1="4" v2="5" v3="6" />+                <face v1="4" v2="7" v3="5" />+                <face v1="12" v2="13" v3="14" />+                <face v1="12" v2="15" v3="13" />+                <face v1="16" v2="14" v3="18" />+                <face v1="16" v2="12" v3="14" />+                <face v1="20" v2="21" v3="22" />+                <face v1="20" v2="23" v3="21" />+                <face v1="24" v2="25" v3="22" />+                <face v1="24" v2="27" v3="25" />+                <face v1="28" v2="29" v3="30" />+                <face v1="28" v2="31" v3="29" />+                <face v1="32" v2="33" v3="34" />+                <face v1="32" v2="35" v3="33" />+                <face v1="36" v2="39" v3="32" />+                <face v1="40" v2="41" v3="42" />+                <face v1="40" v2="43" v3="41" />+                <face v1="44" v2="45" v3="46" />+                <face v1="44" v2="47" v3="45" />+                <face v1="50" v2="51" v3="49" />+                <face v1="52" v2="53" v3="54" />+                <face v1="52" v2="55" v3="53" />+                <face v1="56" v2="59" v3="57" />+                <face v1="60" v2="61" v3="62" />+                <face v1="60" v2="63" v3="61" />+                <face v1="64" v2="62" v3="66" />+                <face v1="64" v2="60" v3="62" />+                <face v1="68" v2="69" v3="70" />+                <face v1="68" v2="71" v3="69" />+                <face v1="72" v2="70" v3="74" />+                <face v1="72" v2="68" v3="70" />+                <face v1="42" v2="77" v3="78" />+                <face v1="42" v2="79" v3="77" />+                <face v1="11" v2="60" v3="64" />+                <face v1="15" v2="63" v3="60" />+                <face v1="63" v2="15" v3="12" />+                <face v1="12" v2="59" v3="56" />+                <face v1="59" v2="12" v3="16" />+                <face v1="20" v2="55" v3="23" />+                <face v1="53" v2="55" v3="20" />+                <face v1="27" v2="51" v3="25" />+                <face v1="49" v2="51" v3="27" />+                <face v1="47" v2="31" v3="45" />+                <face v1="47" v2="29" v3="31" />+                <face v1="35" v2="43" v3="33" />+                <face v1="41" v2="43" v3="35" />+                <face v1="79" v2="39" v3="77" />+                <face v1="68" v2="72" v3="3" />+                <face v1="7" v2="71" v3="68" />+                <face v1="71" v2="7" v3="4" />+                <face v1="81" v2="52" v3="54" />+                <face v1="57" v2="82" v3="83" />+                <face v1="62" v2="61" v3="83" />+                <face v1="66" v2="83" v3="87" />+                <face v1="66" v2="62" v3="83" />+                <face v1="88" v2="69" v3="87" />+                <face v1="88" v2="70" v3="69" />+                <face v1="90" v2="74" v3="70" />+                <face v1="42" v2="78" v3="90" />+                <face v1="40" v2="42" v3="94" />+                <face v1="44" v2="46" v3="96" />+                <face v1="102" v2="13" v3="9" />+                <face v1="21" v2="18" v3="104" />+                <face v1="30" v2="24" v3="106" />+                <face v1="111" v2="34" v3="28" />+                <face v1="115" v2="32" v3="113" />+                <face v1="1" v2="36" v3="115" />+                <face v1="5" v2="115" v3="117" />+                <face v1="5" v2="1" v3="115" />+                <face v1="9" v2="117" v3="119" />+                <face v1="9" v2="6" v3="117" />+                <face v1="120" v2="121" v3="122" />+                <face v1="121" v2="120" v3="123" />+                <face v1="124" v2="125" v3="126" />+                <face v1="124" v2="127" v3="125" />+                <face v1="128" v2="129" v3="133" />+                <face v1="131" v2="129" v3="128" />+                <face v1="132" v2="133" v3="134" />+                <face v1="132" v2="135" v3="133" />+                <face v1="136" v2="137" v3="138" />+                <face v1="139" v2="137" v3="136" />+                <face v1="106" v2="140" v3="141" />+                <face v1="106" v2="142" v3="143" />+                <face v1="104" v2="142" v3="106" />+                <face v1="144" v2="102" v3="145" />+                <face v1="102" v2="144" v3="104" />+                <face v1="145" v2="102" v3="147" />+                <face v1="147" v2="119" v3="149" />+                <face v1="119" v2="147" v3="102" />+                <face v1="150" v2="87" v3="151" />+                <face v1="83" v2="152" v3="151" />+                <face v1="83" v2="154" v3="152" />+                <face v1="156" v2="81" v3="157" />+                <face v1="81" v2="156" v3="82" />+                <face v1="158" v2="81" v3="159" />+                <face v1="141" v2="121" v3="160" />+                <face v1="140" v2="121" v3="141" />+                <face v1="143" v2="124" v3="122" />+                <face v1="142" v2="124" v3="143" />+                <face v1="127" v2="145" v3="131" />+                <face v1="145" v2="127" v3="144" />+                <face v1="129" v2="147" v3="134" />+                <face v1="147" v2="129" v3="145" />+                <face v1="132" v2="149" v3="139" />+                <face v1="149" v2="132" v3="147" />+                <face v1="138" v2="151" v3="136" />+                <face v1="151" v2="138" v3="150" />+                <face v1="135" v2="152" v3="133" />+                <face v1="152" v2="135" v3="151" />+                <face v1="133" v2="154" v3="128" />+                <face v1="154" v2="133" v3="152" />+                <face v1="125" v2="157" v3="126" />+                <face v1="157" v2="125" v3="156" />+                <face v1="158" v2="123" v3="120" />+                <face v1="159" v2="123" v3="158" />+                <face v1="161" v2="162" v3="163" />+                <face v1="164" v2="162" v3="161" />+                <face v1="165" v2="166" v3="167" />+                <face v1="168" v2="166" v3="165" />+                <face v1="170" v2="171" v3="168" />+                <face v1="173" v2="174" v3="175" />+                <face v1="174" v2="173" v3="170" />+                <face v1="137" v2="177" v3="178" />+                <face v1="177" v2="137" v3="179" />+                <face v1="180" v2="181" v3="182" />+                <face v1="181" v2="180" v3="177" />+                <face v1="184" v2="185" v3="186" />+                <face v1="185" v2="184" v3="181" />+                <face v1="188" v2="189" v3="190" />+                <face v1="189" v2="188" v3="191" />+                <face v1="192" v2="193" v3="194" />+                <face v1="195" v2="193" v3="192" />+                <face v1="196" v2="197" v3="198" />+                <face v1="199" v2="197" v3="196" />+                <face v1="96" v2="164" v3="161" />+                <face v1="94" v2="164" v3="96" />+                <face v1="94" v2="168" v3="165" />+                <face v1="90" v2="168" v3="94" />+                <face v1="168" v2="90" v3="170" />+                <face v1="170" v2="88" v3="174" />+                <face v1="88" v2="170" v3="90" />+                <face v1="117" v2="177" v3="179" />+                <face v1="115" v2="181" v3="177" />+                <face v1="181" v2="115" v3="185" />+                <face v1="191" v2="111" v3="189" />+                <face v1="111" v2="191" v3="113" />+                <face v1="111" v2="195" v3="192" />+                <face v1="106" v2="195" v3="111" />+                <face v1="81" v2="199" v3="196" />+                <face v1="96" v2="199" v3="81" />+                <face v1="180" v2="175" v3="178" />+                <face v1="173" v2="175" v3="180" />+                <face v1="171" v2="182" v3="184" />+                <face v1="167" v2="186" v3="188" />+                <face v1="167" v2="166" v3="186" />+                <face v1="163" v2="190" v3="194" />+                <face v1="163" v2="162" v3="190" />+                <face v1="193" v2="198" v3="197" />+                <face v1="198" v2="193" v3="160" />+                <face v1="194" v2="197" v3="163" />+                <face v1="197" v2="194" v3="193" />+                <face v1="188" v2="162" v3="167" />+                <face v1="162" v2="188" v3="190" />+                <face v1="171" v2="186" v3="166" />+                <face v1="171" v2="184" v3="186" />+                <face v1="182" v2="173" v3="180" />+                <face v1="171" v2="173" v3="182" />+                <face v1="138" v2="178" v3="175" />+                <face v1="138" v2="137" v3="178" />+                <face v1="106" v2="141" v3="195" />+                <face v1="189" v2="111" v3="192" />+                <face v1="185" v2="113" v3="191" />+                <face v1="113" v2="185" v3="115" />+                <face v1="115" v2="177" v3="117" />+                <face v1="174" v2="87" v3="150" />+                <face v1="87" v2="174" v3="88" />+                <face v1="94" v2="165" v3="164" />+                <face v1="96" v2="161" v3="199" />+                <face v1="195" v2="160" v3="193" />+                <face v1="141" v2="160" v3="195" />+                <face v1="189" v2="194" v3="190" />+                <face v1="192" v2="194" v3="189" />+                <face v1="186" v2="191" v3="188" />+                <face v1="191" v2="186" v3="185" />+                <face v1="182" v2="181" v3="184" />+                <face v1="178" v2="177" v3="180" />+                <face v1="175" v2="150" v3="138" />+                <face v1="150" v2="175" v3="174" />+                <face v1="171" v2="170" v3="173" />+                <face v1="168" v2="171" v3="166" />+                <face v1="164" v2="167" v3="162" />+                <face v1="165" v2="167" v3="164" />+                <face v1="199" v2="163" v3="197" />+                <face v1="161" v2="163" v3="199" />+                <face v1="157" v2="120" v3="126" />+                <face v1="158" v2="120" v3="157" />+                <face v1="128" v2="156" v3="125" />+                <face v1="156" v2="128" v3="154" />+                <face v1="136" v2="151" v3="135" />+                <face v1="139" v2="179" v3="137" />+                <face v1="179" v2="139" v3="149" />+                <face v1="134" v2="147" v3="132" />+                <face v1="131" v2="145" v3="129" />+                <face v1="142" v2="127" v3="124" />+                <face v1="144" v2="127" v3="142" />+                <face v1="140" v2="122" v3="121" />+                <face v1="143" v2="122" v3="140" />+                <face v1="159" v2="198" v3="123" />+                <face v1="196" v2="198" v3="159" />+                <face v1="157" v2="81" v3="158" />+                <face v1="154" v2="82" v3="156" />+                <face v1="82" v2="154" v3="83" />+                <face v1="83" v2="151" v3="87" />+                <face v1="149" v2="117" v3="179" />+                <face v1="117" v2="149" v3="119" />+                <face v1="104" v2="144" v3="142" />+                <face v1="106" v2="143" v3="140" />+                <face v1="159" v2="81" v3="196" />+                <face v1="135" v2="139" v3="136" />+                <face v1="132" v2="139" v3="135" />+                <face v1="129" v2="134" v3="133" />+                <face v1="125" v2="131" v3="128" />+                <face v1="127" v2="131" v3="125" />+                <face v1="126" v2="122" v3="124" />+                <face v1="122" v2="126" v3="120" />+                <face v1="123" v2="160" v3="121" />+                <face v1="160" v2="123" v3="198" />+                <face v1="6" v2="5" v3="117" />+                <face v1="115" v2="36" v3="32" />+                <face v1="113" v2="34" v3="111" />+                <face v1="113" v2="32" v3="34" />+                <face v1="111" v2="30" v3="106" />+                <face v1="111" v2="28" v3="30" />+                <face v1="24" v2="22" v3="106" />+                <face v1="22" v2="104" v3="106" />+                <face v1="22" v2="21" v3="104" />+                <face v1="18" v2="102" v3="104" />+                <face v1="18" v2="14" v3="102" />+                <face v1="102" v2="14" v3="13" />+                <face v1="9" v2="119" v3="102" />+                <face v1="81" v2="44" v3="96" />+                <face v1="81" v2="50" v3="44" />+                <face v1="46" v2="94" v3="96" />+                <face v1="46" v2="40" v3="94" />+                <face v1="42" v2="90" v3="94" />+                <face v1="90" v2="78" v3="74" />+                <face v1="90" v2="70" v3="88" />+                <face v1="69" v2="66" v3="87" />+                <face v1="61" v2="57" v3="83" />+                <face v1="82" v2="52" v3="81" />+                <face v1="82" v2="57" v3="52" />+                <face v1="81" v2="54" v3="50" />+                <face v1="68" v2="3" v3="7" />+                <face v1="39" v2="72" v3="77" />+                <face v1="72" v2="39" v3="3" />+                <face v1="41" v2="39" v3="79" />+                <face v1="41" v2="35" v3="39" />+                <face v1="45" v2="33" v3="43" />+                <face v1="45" v2="31" v3="33" />+                <face v1="49" v2="29" v3="47" />+                <face v1="49" v2="27" v3="29" />+                <face v1="53" v2="25" v3="51" />+                <face v1="53" v2="20" v3="25" />+                <face v1="59" v2="23" v3="55" />+                <face v1="59" v2="16" v3="23" />+                <face v1="12" v2="56" v3="63" />+                <face v1="60" v2="11" v3="15" />+                <face v1="64" v2="4" v3="11" />+                <face v1="64" v2="71" v3="4" />+                <face v1="78" v2="72" v3="74" />+                <face v1="78" v2="77" v3="72" />+                <face v1="71" v2="66" v3="69" />+                <face v1="71" v2="64" v3="66" />+                <face v1="63" v2="57" v3="61" />+                <face v1="63" v2="56" v3="57" />+                <face v1="57" v2="55" v3="52" />+                <face v1="57" v2="59" v3="55" />+                <face v1="54" v2="51" v3="50" />+                <face v1="54" v2="53" v3="51" />+                <face v1="50" v2="47" v3="44" />+                <face v1="50" v2="49" v3="47" />+                <face v1="46" v2="43" v3="40" />+                <face v1="46" v2="45" v3="43" />+                <face v1="41" v2="79" v3="42" />+                <face v1="32" v2="39" v3="35" />+                <face v1="34" v2="31" v3="28" />+                <face v1="34" v2="33" v3="31" />+                <face v1="30" v2="27" v3="24" />+                <face v1="30" v2="29" v3="27" />+                <face v1="22" v2="25" v3="20" />+                <face v1="21" v2="16" v3="18" />+                <face v1="21" v2="23" v3="16" />+                <face v1="15" v2="9" v3="13" />+                <face v1="15" v2="11" v3="9" />+                <face v1="11" v2="6" v3="9" />+                <face v1="11" v2="4" v3="6" />+                <face v1="7" v2="1" v3="5" />+                <face v1="7" v2="3" v3="1" />+                <face v1="3" v2="36" v3="1" />+                <face v1="3" v2="39" v3="36" />+            </lodfacelist>+            <lodfacelist submeshindex="3" numfaces="506">+                <face v1="4" v2="5" v3="2" />+                <face v1="6" v2="3" v3="2" />+                <face v1="2" v2="5" v3="6" />+                <face v1="6" v2="10" v3="9" />+                <face v1="9" v2="3" v3="6" />+                <face v1="6" v2="14" v3="13" />+                <face v1="13" v2="10" v3="6" />+                <face v1="17" v2="18" v3="15" />+                <face v1="6" v2="18" v3="17" />+                <face v1="17" v2="14" v3="6" />+                <face v1="19" v2="20" v3="21" />+                <face v1="21" v2="22" v3="19" />+                <face v1="15" v2="18" v3="21" />+                <face v1="21" v2="20" v3="15" />+                <face v1="6" v2="22" v3="21" />+                <face v1="21" v2="18" v3="6" />+                <face v1="23" v2="24" v3="25" />+                <face v1="25" v2="26" v3="23" />+                <face v1="19" v2="22" v3="25" />+                <face v1="25" v2="24" v3="19" />+                <face v1="6" v2="26" v3="25" />+                <face v1="25" v2="22" v3="6" />+                <face v1="27" v2="28" v3="29" />+                <face v1="29" v2="30" v3="27" />+                <face v1="23" v2="26" v3="29" />+                <face v1="29" v2="28" v3="23" />+                <face v1="6" v2="30" v3="29" />+                <face v1="29" v2="26" v3="6" />+                <face v1="31" v2="32" v3="33" />+                <face v1="33" v2="34" v3="31" />+                <face v1="27" v2="30" v3="33" />+                <face v1="33" v2="32" v3="27" />+                <face v1="6" v2="34" v3="33" />+                <face v1="33" v2="30" v3="6" />+                <face v1="35" v2="36" v3="37" />+                <face v1="37" v2="38" v3="35" />+                <face v1="31" v2="34" v3="37" />+                <face v1="37" v2="36" v3="31" />+                <face v1="6" v2="38" v3="37" />+                <face v1="37" v2="34" v3="6" />+                <face v1="40" v2="5" v3="4" />+                <face v1="35" v2="38" v3="40" />+                <face v1="6" v2="5" v3="40" />+                <face v1="40" v2="38" v3="6" />+                <face v1="43" v2="44" v3="41" />+                <face v1="47" v2="44" v3="43" />+                <face v1="45" v2="48" v3="49" />+                <face v1="49" v2="43" v3="45" />+                <face v1="50" v2="51" v3="49" />+                <face v1="49" v2="48" v3="50" />+                <face v1="47" v2="43" v3="49" />+                <face v1="49" v2="51" v3="47" />+                <face v1="54" v2="55" v3="52" />+                <face v1="56" v2="57" v3="54" />+                <face v1="58" v2="55" v3="54" />+                <face v1="54" v2="57" v3="58" />+                <face v1="52" v2="59" v3="54" />+                <face v1="61" v2="56" v3="54" />+                <face v1="54" v2="59" v3="61" />+                <face v1="65" v2="66" v3="63" />+                <face v1="67" v2="68" v3="65" />+                <face v1="69" v2="66" v3="65" />+                <face v1="65" v2="68" v3="69" />+                <face v1="63" v2="70" v3="71" />+                <face v1="71" v2="65" v3="63" />+                <face v1="72" v2="73" v3="71" />+                <face v1="71" v2="70" v3="72" />+                <face v1="67" v2="65" v3="71" />+                <face v1="71" v2="73" v3="67" />+                <face v1="74" v2="75" v3="76" />+                <face v1="76" v2="77" v3="74" />+                <face v1="76" v2="75" v3="78" />+                <face v1="80" v2="77" v3="76" />+                <face v1="74" v2="81" v3="82" />+                <face v1="82" v2="75" v3="74" />+                <face v1="83" v2="84" v3="82" />+                <face v1="82" v2="81" v3="83" />+                <face v1="78" v2="75" v3="82" />+                <face v1="82" v2="84" v3="78" />+                <face v1="74" v2="85" v3="86" />+                <face v1="86" v2="81" v3="74" />+                <face v1="87" v2="88" v3="86" />+                <face v1="86" v2="85" v3="87" />+                <face v1="83" v2="81" v3="86" />+                <face v1="86" v2="88" v3="83" />+                <face v1="74" v2="89" v3="90" />+                <face v1="90" v2="85" v3="74" />+                <face v1="91" v2="92" v3="90" />+                <face v1="90" v2="89" v3="91" />+                <face v1="87" v2="85" v3="90" />+                <face v1="90" v2="92" v3="87" />+                <face v1="74" v2="93" v3="94" />+                <face v1="94" v2="89" v3="74" />+                <face v1="95" v2="96" v3="94" />+                <face v1="94" v2="93" v3="95" />+                <face v1="91" v2="89" v3="94" />+                <face v1="94" v2="96" v3="91" />+                <face v1="74" v2="97" v3="98" />+                <face v1="98" v2="93" v3="74" />+                <face v1="99" v2="100" v3="98" />+                <face v1="98" v2="97" v3="99" />+                <face v1="95" v2="93" v3="98" />+                <face v1="98" v2="100" v3="95" />+                <face v1="74" v2="101" v3="102" />+                <face v1="102" v2="97" v3="74" />+                <face v1="99" v2="97" v3="102" />+                <face v1="74" v2="105" v3="106" />+                <face v1="106" v2="101" v3="74" />+                <face v1="74" v2="109" v3="110" />+                <face v1="110" v2="105" v3="74" />+                <face v1="74" v2="77" v3="113" />+                <face v1="113" v2="109" v3="74" />+                <face v1="113" v2="77" v3="80" />+                <face v1="115" v2="116" v3="117" />+                <face v1="117" v2="118" v3="115" />+                <face v1="117" v2="116" v3="119" />+                <face v1="121" v2="118" v3="117" />+                <face v1="119" v2="122" v3="123" />+                <face v1="123" v2="117" v3="119" />+                <face v1="124" v2="125" v3="123" />+                <face v1="123" v2="122" v3="124" />+                <face v1="121" v2="117" v3="123" />+                <face v1="123" v2="125" v3="121" />+                <face v1="131" v2="126" v3="130" />+                <face v1="132" v2="133" v3="134" />+                <face v1="134" v2="131" v3="132" />+                <face v1="135" v2="136" v3="134" />+                <face v1="134" v2="133" v3="135" />+                <face v1="126" v2="131" v3="134" />+                <face v1="134" v2="136" v3="126" />+                <face v1="137" v2="138" v3="139" />+                <face v1="141" v2="142" v3="139" />+                <face v1="139" v2="138" v3="141" />+                <face v1="139" v2="142" v3="143" />+                <face v1="145" v2="139" v3="143" />+                <face v1="146" v2="147" v3="145" />+                <face v1="137" v2="139" v3="145" />+                <face v1="145" v2="147" v3="137" />+                <face v1="148" v2="149" v3="150" />+                <face v1="150" v2="151" v3="148" />+                <face v1="146" v2="145" v3="150" />+                <face v1="150" v2="149" v3="146" />+                <face v1="143" v2="4" v3="150" />+                <face v1="150" v2="145" v3="143" />+                <face v1="4" v2="151" v3="150" />+                <face v1="146" v2="149" v3="154" />+                <face v1="154" v2="155" v3="146" />+                <face v1="148" v2="156" v3="154" />+                <face v1="154" v2="149" v3="148" />+                <face v1="157" v2="158" v3="154" />+                <face v1="154" v2="156" v3="157" />+                <face v1="130" v2="155" v3="154" />+                <face v1="154" v2="158" v3="130" />+                <face v1="130" v2="158" v3="159" />+                <face v1="159" v2="131" v3="130" />+                <face v1="157" v2="160" v3="159" />+                <face v1="159" v2="158" v3="157" />+                <face v1="159" v2="160" v3="162" />+                <face v1="132" v2="131" v3="159" />+                <face v1="159" v2="162" v3="132" />+                <face v1="132" v2="162" v3="322" />+                <face v1="162" v2="17" v3="322" />+                <face v1="322" v2="17" v3="166" />+                <face v1="322" v2="166" v3="320" />+                <face v1="177" v2="178" v3="175" />+                <face v1="312" v2="179" v3="177" />+                <face v1="180" v2="178" v3="177" />+                <face v1="177" v2="179" v3="180" />+                <face v1="175" v2="178" v3="181" />+                <face v1="181" v2="182" v3="175" />+                <face v1="180" v2="183" v3="181" />+                <face v1="181" v2="178" v3="180" />+                <face v1="184" v2="185" v3="181" />+                <face v1="181" v2="183" v3="184" />+                <face v1="186" v2="182" v3="181" />+                <face v1="181" v2="185" v3="186" />+                <face v1="187" v2="188" v3="189" />+                <face v1="189" v2="190" v3="187" />+                <face v1="124" v2="191" v3="189" />+                <face v1="189" v2="188" v3="124" />+                <face v1="186" v2="185" v3="189" />+                <face v1="189" v2="191" v3="186" />+                <face v1="184" v2="190" v3="189" />+                <face v1="189" v2="185" v3="184" />+                <face v1="192" v2="193" v3="194" />+                <face v1="194" v2="195" v3="192" />+                <face v1="121" v2="125" v3="194" />+                <face v1="194" v2="193" v3="121" />+                <face v1="124" v2="188" v3="194" />+                <face v1="194" v2="125" v3="124" />+                <face v1="187" v2="195" v3="194" />+                <face v1="194" v2="188" v3="187" />+                <face v1="143" v2="198" v3="196" />+                <face v1="196" v2="4" v3="143" />+                <face v1="121" v2="193" v3="196" />+                <face v1="196" v2="198" v3="121" />+                <face v1="196" v2="193" v3="192" />+                <face v1="113" v2="200" v3="109" />+                <face v1="80" v2="203" v3="113" />+                <face v1="204" v2="200" v3="113" />+                <face v1="113" v2="203" v3="204" />+                <face v1="47" v2="205" v3="206" />+                <face v1="206" v2="44" v3="47" />+                <face v1="206" v2="205" v3="56" />+                <face v1="61" v2="207" v3="206" />+                <face v1="206" v2="56" v3="61" />+                <face v1="41" v2="44" v3="206" />+                <face v1="206" v2="207" v3="41" />+                <face v1="109" v2="200" v3="208" />+                <face v1="208" v2="110" v3="109" />+                <face v1="204" v2="209" v3="208" />+                <face v1="208" v2="200" v3="204" />+                <face v1="210" v2="105" v3="208" />+                <face v1="208" v2="209" v3="210" />+                <face v1="105" v2="110" v3="208" />+                <face v1="213" v2="106" v3="105" />+                <face v1="213" v2="105" v3="210" />+                <face v1="285" v2="101" v3="213" />+                <face v1="101" v2="106" v3="213" />+                <face v1="52" v2="55" v3="218" />+                <face v1="218" v2="55" v3="58" />+                <face v1="221" v2="219" v3="218" />+                <face v1="218" v2="58" v3="221" />+                <face v1="283" v2="99" v3="102" />+                <face v1="102" v2="101" v3="285" />+                <face v1="221" v2="228" v3="226" />+                <face v1="226" v2="219" v3="221" />+                <face v1="229" v2="230" v3="226" />+                <face v1="226" v2="228" v3="229" />+                <face v1="100" v2="233" v3="95" />+                <face v1="100" v2="99" v3="283" />+                <face v1="229" v2="238" v3="236" />+                <face v1="236" v2="230" v3="229" />+                <face v1="239" v2="240" v3="236" />+                <face v1="236" v2="238" v3="239" />+                <face v1="236" v2="240" v3="241" />+                <face v1="242" v2="243" v3="244" />+                <face v1="244" v2="245" v3="242" />+                <face v1="91" v2="96" v3="244" />+                <face v1="244" v2="243" v3="91" />+                <face v1="95" v2="233" v3="244" />+                <face v1="244" v2="96" v3="95" />+                <face v1="233" v2="245" v3="244" />+                <face v1="241" v2="240" v3="246" />+                <face v1="246" v2="247" v3="241" />+                <face v1="239" v2="248" v3="246" />+                <face v1="246" v2="240" v3="239" />+                <face v1="249" v2="250" v3="246" />+                <face v1="246" v2="248" v3="249" />+                <face v1="251" v2="247" v3="246" />+                <face v1="246" v2="250" v3="251" />+                <face v1="87" v2="92" v3="252" />+                <face v1="252" v2="253" v3="87" />+                <face v1="91" v2="243" v3="252" />+                <face v1="252" v2="92" v3="91" />+                <face v1="242" v2="254" v3="252" />+                <face v1="252" v2="243" v3="242" />+                <face v1="255" v2="253" v3="252" />+                <face v1="252" v2="254" v3="255" />+                <face v1="67" v2="73" v3="256" />+                <face v1="72" v2="258" v3="256" />+                <face v1="256" v2="73" v3="72" />+                <face v1="251" v2="250" v3="256" />+                <face v1="256" v2="258" v3="251" />+                <face v1="249" v2="67" v3="256" />+                <face v1="256" v2="250" v3="249" />+                <face v1="83" v2="88" v3="259" />+                <face v1="259" v2="260" v3="83" />+                <face v1="87" v2="253" v3="259" />+                <face v1="259" v2="88" v3="87" />+                <face v1="255" v2="261" v3="259" />+                <face v1="259" v2="253" v3="255" />+                <face v1="262" v2="260" v3="259" />+                <face v1="259" v2="261" v3="262" />+                <face v1="262" v2="263" v3="84" />+                <face v1="84" v2="260" v3="262" />+                <face v1="265" v2="78" v3="84" />+                <face v1="84" v2="263" v3="265" />+                <face v1="83" v2="260" v3="84" />+                <face v1="50" v2="48" v3="267" />+                <face v1="267" v2="268" v3="50" />+                <face v1="45" v2="269" v3="267" />+                <face v1="267" v2="48" v3="45" />+                <face v1="63" v2="66" v3="267" />+                <face v1="267" v2="269" v3="63" />+                <face v1="69" v2="268" v3="267" />+                <face v1="267" v2="66" v3="69" />+                <face v1="80" v2="76" v3="270" />+                <face v1="270" v2="76" v3="78" />+                <face v1="270" v2="78" v3="265" />+                <face v1="63" v2="269" v3="272" />+                <face v1="272" v2="273" v3="63" />+                <face v1="272" v2="269" v3="45" />+                <face v1="80" v2="270" v3="272" />+                <face v1="272" v2="45" v3="80" />+                <face v1="265" v2="273" v3="272" />+                <face v1="272" v2="270" v3="265" />+                <face v1="72" v2="70" v3="275" />+                <face v1="275" v2="276" v3="72" />+                <face v1="63" v2="273" v3="275" />+                <face v1="275" v2="70" v3="63" />+                <face v1="265" v2="263" v3="275" />+                <face v1="275" v2="273" v3="265" />+                <face v1="262" v2="276" v3="275" />+                <face v1="275" v2="263" v3="262" />+                <face v1="251" v2="258" v3="277" />+                <face v1="277" v2="278" v3="251" />+                <face v1="72" v2="276" v3="277" />+                <face v1="277" v2="258" v3="72" />+                <face v1="262" v2="261" v3="277" />+                <face v1="277" v2="276" v3="262" />+                <face v1="255" v2="278" v3="277" />+                <face v1="277" v2="261" v3="255" />+                <face v1="255" v2="254" v3="279" />+                <face v1="279" v2="278" v3="255" />+                <face v1="242" v2="280" v3="279" />+                <face v1="279" v2="254" v3="242" />+                <face v1="241" v2="247" v3="279" />+                <face v1="279" v2="280" v3="241" />+                <face v1="251" v2="278" v3="279" />+                <face v1="279" v2="247" v3="251" />+                <face v1="233" v2="230" v3="282" />+                <face v1="282" v2="245" v3="233" />+                <face v1="230" v2="236" v3="282" />+                <face v1="241" v2="280" v3="282" />+                <face v1="282" v2="236" v3="241" />+                <face v1="242" v2="245" v3="282" />+                <face v1="282" v2="280" v3="242" />+                <face v1="226" v2="100" v3="283" />+                <face v1="226" v2="283" v3="219" />+                <face v1="233" v2="100" v3="226" />+                <face v1="226" v2="230" v3="233" />+                <face v1="286" v2="102" v3="285" />+                <face v1="52" v2="218" v3="286" />+                <face v1="286" v2="285" v3="52" />+                <face v1="219" v2="283" v3="286" />+                <face v1="286" v2="218" v3="219" />+                <face v1="283" v2="102" v3="286" />+                <face v1="285" v2="213" v3="287" />+                <face v1="210" v2="288" v3="287" />+                <face v1="287" v2="213" v3="210" />+                <face v1="61" v2="59" v3="287" />+                <face v1="287" v2="288" v3="61" />+                <face v1="52" v2="285" v3="287" />+                <face v1="287" v2="59" v3="52" />+                <face v1="210" v2="209" v3="289" />+                <face v1="289" v2="288" v3="210" />+                <face v1="204" v2="290" v3="289" />+                <face v1="289" v2="209" v3="204" />+                <face v1="41" v2="207" v3="289" />+                <face v1="289" v2="290" v3="41" />+                <face v1="61" v2="288" v3="289" />+                <face v1="289" v2="207" v3="61" />+                <face v1="45" v2="43" v3="291" />+                <face v1="41" v2="290" v3="291" />+                <face v1="291" v2="43" v3="41" />+                <face v1="204" v2="203" v3="291" />+                <face v1="291" v2="290" v3="204" />+                <face v1="80" v2="45" v3="291" />+                <face v1="291" v2="203" v3="80" />+                <face v1="192" v2="35" v3="293" />+                <face v1="293" v2="196" v3="192" />+                <face v1="35" v2="40" v3="293" />+                <face v1="293" v2="40" v3="4" />+                <face v1="4" v2="196" v3="293" />+                <face v1="121" v2="198" v3="295" />+                <face v1="295" v2="118" v3="121" />+                <face v1="143" v2="142" v3="295" />+                <face v1="295" v2="198" v3="143" />+                <face v1="141" v2="296" v3="295" />+                <face v1="295" v2="142" v3="141" />+                <face v1="115" v2="118" v3="295" />+                <face v1="295" v2="296" v3="115" />+                <face v1="192" v2="195" v3="36" />+                <face v1="36" v2="35" v3="192" />+                <face v1="187" v2="298" v3="36" />+                <face v1="36" v2="195" v3="187" />+                <face v1="36" v2="298" v3="31" />+                <face v1="184" v2="299" v3="300" />+                <face v1="300" v2="190" v3="184" />+                <face v1="27" v2="32" v3="300" />+                <face v1="300" v2="299" v3="27" />+                <face v1="31" v2="298" v3="300" />+                <face v1="300" v2="32" v3="31" />+                <face v1="187" v2="190" v3="300" />+                <face v1="300" v2="298" v3="187" />+                <face v1="186" v2="191" v3="301" />+                <face v1="301" v2="302" v3="186" />+                <face v1="124" v2="122" v3="301" />+                <face v1="301" v2="191" v3="124" />+                <face v1="119" v2="303" v3="301" />+                <face v1="301" v2="122" v3="119" />+                <face v1="304" v2="302" v3="301" />+                <face v1="301" v2="303" v3="304" />+                <face v1="180" v2="305" v3="306" />+                <face v1="306" v2="183" v3="180" />+                <face v1="23" v2="28" v3="306" />+                <face v1="306" v2="305" v3="23" />+                <face v1="27" v2="299" v3="306" />+                <face v1="306" v2="28" v3="27" />+                <face v1="184" v2="183" v3="306" />+                <face v1="306" v2="299" v3="184" />+                <face v1="304" v2="307" v3="308" />+                <face v1="308" v2="302" v3="304" />+                <face v1="309" v2="310" v3="308" />+                <face v1="308" v2="307" v3="309" />+                <face v1="175" v2="182" v3="308" />+                <face v1="308" v2="310" v3="175" />+                <face v1="186" v2="302" v3="308" />+                <face v1="308" v2="182" v3="186" />+                <face v1="19" v2="24" v3="311" />+                <face v1="311" v2="312" v3="19" />+                <face v1="23" v2="305" v3="311" />+                <face v1="311" v2="24" v3="23" />+                <face v1="180" v2="179" v3="311" />+                <face v1="311" v2="305" v3="180" />+                <face v1="311" v2="179" v3="312" />+                <face v1="309" v2="313" v3="314" />+                <face v1="314" v2="310" v3="309" />+                <face v1="315" v2="316" v3="314" />+                <face v1="314" v2="313" v3="315" />+                <face v1="312" v2="177" v3="314" />+                <face v1="314" v2="316" v3="312" />+                <face v1="175" v2="310" v3="314" />+                <face v1="314" v2="177" v3="175" />+                <face v1="19" v2="312" v3="20" />+                <face v1="312" v2="320" v3="20" />+                <face v1="166" v2="15" v3="20" />+                <face v1="20" v2="320" v3="166" />+                <face v1="315" v2="319" v3="320" />+                <face v1="320" v2="316" v3="315" />+                <face v1="321" v2="322" v3="320" />+                <face v1="320" v2="319" v3="321" />+                <face v1="312" v2="316" v3="320" />+                <face v1="17" v2="15" v3="166" />+                <face v1="162" v2="14" v3="17" />+                <face v1="135" v2="133" v3="325" />+                <face v1="325" v2="326" v3="135" />+                <face v1="132" v2="322" v3="325" />+                <face v1="325" v2="133" v3="132" />+                <face v1="321" v2="326" v3="325" />+                <face v1="325" v2="322" v3="321" />+                <face v1="160" v2="14" v3="162" />+                <face v1="157" v2="10" v3="160" />+                <face v1="10" v2="13" v3="160" />+                <face v1="160" v2="13" v3="14" />+                <face v1="157" v2="156" v3="329" />+                <face v1="329" v2="10" v3="157" />+                <face v1="148" v2="330" v3="329" />+                <face v1="329" v2="156" v3="148" />+                <face v1="3" v2="9" v3="329" />+                <face v1="329" v2="330" v3="3" />+                <face v1="329" v2="9" v3="10" />+                <face v1="130" v2="126" v3="331" />+                <face v1="331" v2="155" v3="130" />+                <face v1="126" v2="332" v3="331" />+                <face v1="137" v2="147" v3="331" />+                <face v1="331" v2="332" v3="137" />+                <face v1="146" v2="155" v3="331" />+                <face v1="331" v2="147" v3="146" />+                <face v1="2" v2="151" v3="4" />+                <face v1="3" v2="330" v3="2" />+                <face v1="148" v2="151" v3="2" />+                <face v1="2" v2="330" v3="148" />+                <face v1="115" v2="296" v3="334" />+                <face v1="334" v2="116" v3="115" />+                <face v1="141" v2="138" v3="334" />+                <face v1="334" v2="296" v3="141" />+                <face v1="137" v2="332" v3="334" />+                <face v1="334" v2="138" v3="137" />+                <face v1="126" v2="136" v3="334" />+                <face v1="334" v2="332" v3="126" />+                <face v1="135" v2="326" v3="334" />+                <face v1="334" v2="136" v3="135" />+                <face v1="334" v2="326" v3="321" />+                <face v1="119" v2="116" v3="334" />+                <face v1="315" v2="313" v3="336" />+                <face v1="336" v2="319" v3="315" />+                <face v1="309" v2="307" v3="336" />+                <face v1="336" v2="313" v3="309" />+                <face v1="304" v2="303" v3="336" />+                <face v1="336" v2="307" v3="304" />+                <face v1="119" v2="334" v3="336" />+                <face v1="336" v2="303" v3="119" />+                <face v1="321" v2="319" v3="336" />+                <face v1="336" v2="334" v3="321" />+                <face v1="56" v2="205" v3="337" />+                <face v1="337" v2="57" v3="56" />+                <face v1="47" v2="51" v3="337" />+                <face v1="337" v2="205" v3="47" />+                <face v1="50" v2="268" v3="337" />+                <face v1="337" v2="51" v3="50" />+                <face v1="69" v2="68" v3="337" />+                <face v1="337" v2="268" v3="69" />+                <face v1="337" v2="68" v3="67" />+                <face v1="58" v2="57" v3="337" />+                <face v1="341" v2="67" v3="249" />+                <face v1="221" v2="58" v3="341" />+                <face v1="58" v2="337" v3="341" />+                <face v1="341" v2="337" v3="67" />+                <face v1="239" v2="238" v3="341" />+                <face v1="341" v2="248" v3="239" />+                <face v1="229" v2="228" v3="341" />+                <face v1="341" v2="238" v3="229" />+                <face v1="341" v2="228" v3="221" />+                <face v1="249" v2="248" v3="341" />+            </lodfacelist>+        </lodgenerated>+        <lodgenerated value="1500">+            <lodfacelist submeshindex="0" numfaces="42">+                <face v1="7" v2="2" v3="6" />+                <face v1="24" v2="14" v3="27" />+                <face v1="27" v2="14" v3="31" />+                <face v1="18" v2="19" v3="27" />+                <face v1="29" v2="19" v3="18" />+                <face v1="33" v2="2" v3="7" />+                <face v1="7" v2="3" v3="4" />+                <face v1="4" v2="3" v3="11" />+                <face v1="6" v2="36" v3="37" />+                <face v1="6" v2="2" v3="36" />+                <face v1="40" v2="36" v3="2" />+                <face v1="41" v2="39" v3="42" />+                <face v1="43" v2="37" v3="44" />+                <face v1="37" v2="43" v3="45" />+                <face v1="7" v2="6" v3="47" />+                <face v1="14" v2="24" v3="48" />+                <face v1="50" v2="51" v3="52" />+                <face v1="48" v2="53" v3="54" />+                <face v1="55" v2="53" v3="48" />+                <face v1="24" v2="27" v3="57" />+                <face v1="57" v2="48" v3="24" />+                <face v1="57" v2="55" v3="48" />+                <face v1="50" v2="29" v3="51" />+                <face v1="22" v2="48" v3="54" />+                <face v1="22" v2="14" v3="48" />+                <face v1="19" v2="55" v3="57" />+                <face v1="50" v2="55" v3="19" />+                <face v1="55" v2="52" v3="53" />+                <face v1="55" v2="50" v3="52" />+                <face v1="19" v2="57" v3="27" />+                <face v1="19" v2="29" v3="50" />+                <face v1="37" v2="47" v3="6" />+                <face v1="37" v2="45" v3="47" />+                <face v1="11" v2="39" v3="41" />+                <face v1="37" v2="40" v3="44" />+                <face v1="37" v2="36" v3="40" />+                <face v1="45" v2="3" v3="47" />+                <face v1="3" v2="45" v3="39" />+                <face v1="42" v2="45" v3="43" />+                <face v1="42" v2="39" v3="45" />+                <face v1="7" v2="47" v3="3" />+                <face v1="39" v2="11" v3="3" />+            </lodfacelist>+            <lodfacelist submeshindex="1" numfaces="1770">+                <face v1="0" v2="1" v3="34" />+                <face v1="8" v2="9" v3="10" />+                <face v1="11" v2="12" v3="13" />+                <face v1="14" v2="15" v3="16" />+                <face v1="14" v2="17" v3="15" />+                <face v1="18" v2="19" v3="15" />+                <face v1="29" v2="8" v3="30" />+                <face v1="29" v2="9" v3="8" />+                <face v1="43" v2="44" v3="45" />+                <face v1="1079" v2="50" v3="53" />+                <face v1="59" v2="60" v3="61" />+                <face v1="59" v2="62" v3="60" />+                <face v1="69" v2="70" v3="71" />+                <face v1="71" v2="63" v3="69" />+                <face v1="76" v2="86" v3="78" />+                <face v1="80" v2="81" v3="82" />+                <face v1="84" v2="85" v3="86" />+                <face v1="84" v2="60" v3="85" />+                <face v1="90" v2="91" v3="92" />+                <face v1="96" v2="97" v3="98" />+                <face v1="100" v2="102" v3="1209" />+                <face v1="1209" v2="104" v3="100" />+                <face v1="108" v2="109" v3="110" />+                <face v1="111" v2="112" v3="1217" />+                <face v1="111" v2="1329" v3="112" />+                <face v1="117" v2="1080" v3="116" />+                <face v1="126" v2="127" v3="41" />+                <face v1="137" v2="138" v3="46" />+                <face v1="46" v2="50" v3="137" />+                <face v1="143" v2="144" v3="145" />+                <face v1="145" v2="146" v3="143" />+                <face v1="1073" v2="161" v3="165" />+                <face v1="149" v2="176" v3="177" />+                <face v1="176" v2="172" v3="177" />+                <face v1="357" v2="177" v3="179" />+                <face v1="180" v2="181" v3="182" />+                <face v1="182" v2="183" v3="180" />+                <face v1="184" v2="185" v3="186" />+                <face v1="185" v2="187" v3="186" />+                <face v1="1343" v2="193" v3="194" />+                <face v1="193" v2="195" v3="194" />+                <face v1="196" v2="197" v3="198" />+                <face v1="196" v2="195" v3="197" />+                <face v1="202" v2="203" v3="1065" />+                <face v1="203" v2="139" v3="210" />+                <face v1="172" v2="119" v3="212" />+                <face v1="212" v2="171" v3="172" />+                <face v1="227" v2="226" v3="222" />+                <face v1="222" v2="168" v3="227" />+                <face v1="223" v2="224" v3="225" />+                <face v1="223" v2="226" v3="224" />+                <face v1="227" v2="352" v3="228" />+                <face v1="224" v2="228" v3="407" />+                <face v1="236" v2="241" v3="242" />+                <face v1="236" v2="243" v3="241" />+                <face v1="252" v2="253" v3="254" />+                <face v1="254" v2="413" v3="252" />+                <face v1="260" v2="1056" v3="262" />+                <face v1="268" v2="263" v3="266" />+                <face v1="268" v2="270" v3="271" />+                <face v1="268" v2="272" v3="270" />+                <face v1="273" v2="274" v3="275" />+                <face v1="273" v2="883" v3="274" />+                <face v1="278" v2="279" v3="280" />+                <face v1="278" v2="281" v3="279" />+                <face v1="282" v2="283" v3="284" />+                <face v1="285" v2="1042" v3="287" />+                <face v1="285" v2="284" v3="1042" />+                <face v1="292" v2="24" v3="293" />+                <face v1="292" v2="21" v3="24" />+                <face v1="260" v2="262" v3="287" />+                <face v1="285" v2="965" v3="296" />+                <face v1="296" v2="297" v3="285" />+                <face v1="89" v2="299" v3="298" />+                <face v1="105" v2="300" v3="301" />+                <face v1="303" v2="98" v3="97" />+                <face v1="97" v2="307" v3="102" />+                <face v1="303" v2="100" v3="309" />+                <face v1="310" v2="311" v3="124" />+                <face v1="124" v2="1227" v3="310" />+                <face v1="1323" v2="314" v3="315" />+                <face v1="316" v2="63" v3="71" />+                <face v1="316" v2="110" v3="63" />+                <face v1="315" v2="317" v3="1323" />+                <face v1="319" v2="320" v3="321" />+                <face v1="323" v2="320" v3="314" />+                <face v1="323" v2="119" v3="320" />+                <face v1="324" v2="92" v3="91" />+                <face v1="90" v2="328" v3="91" />+                <face v1="90" v2="317" v3="328" />+                <face v1="329" v2="330" v3="92" />+                <face v1="331" v2="332" v3="333" />+                <face v1="333" v2="43" v3="331" />+                <face v1="43" v2="335" v3="44" />+                <face v1="43" v2="337" v3="338" />+                <face v1="339" v2="340" v3="45" />+                <face v1="341" v2="342" v3="331" />+                <face v1="337" v2="344" v3="345" />+                <face v1="337" v2="43" v3="344" />+                <face v1="347" v2="348" v3="349" />+                <face v1="310" v2="89" v3="311" />+                <face v1="1091" v2="352" v3="353" />+                <face v1="355" v2="357" v3="356" />+                <face v1="359" v2="355" v3="154" />+                <face v1="359" v2="358" v3="355" />+                <face v1="148" v2="359" v3="152" />+                <face v1="360" v2="361" v3="362" />+                <face v1="363" v2="170" v3="364" />+                <face v1="170" v2="165" v3="364" />+                <face v1="186" v2="365" v3="184" />+                <face v1="186" v2="366" v3="365" />+                <face v1="367" v2="368" v3="369" />+                <face v1="1348" v2="1345" v3="179" />+                <face v1="170" v2="168" v3="222" />+                <face v1="375" v2="144" v3="376" />+                <face v1="375" v2="145" v3="144" />+                <face v1="384" v2="1329" v3="382" />+                <face v1="385" v2="93" v3="324" />+                <face v1="386" v2="1000" v3="181" />+                <face v1="386" v2="162" v3="157" />+                <face v1="144" v2="393" v3="376" />+                <face v1="393" v2="1075" v3="376" />+                <face v1="395" v2="396" v3="165" />+                <face v1="413" v2="397" v3="252" />+                <face v1="397" v2="398" v3="252" />+                <face v1="132" v2="399" v3="36" />+                <face v1="36" v2="971" v3="1321" />+                <face v1="404" v2="243" v3="1278" />+                <face v1="404" v2="241" v3="243" />+                <face v1="406" v2="254" v3="407" />+                <face v1="408" v2="409" v3="410" />+                <face v1="408" v2="242" v3="409" />+                <face v1="411" v2="412" v3="31" />+                <face v1="411" v2="407" v3="412" />+                <face v1="397" v2="413" v3="6" />+                <face v1="421" v2="422" v3="423" />+                <face v1="424" v2="425" v3="426" />+                <face v1="433" v2="434" v3="435" />+                <face v1="433" v2="436" v3="434" />+                <face v1="483" v2="824" v3="488" />+                <face v1="440" v2="441" v3="442" />+                <face v1="444" v2="446" v3="433" />+                <face v1="447" v2="444" v3="449" />+                <face v1="451" v2="649" v3="453" />+                <face v1="458" v2="459" v3="460" />+                <face v1="469" v2="470" v3="471" />+                <face v1="469" v2="472" v3="470" />+                <face v1="477" v2="478" v3="436" />+                <face v1="1193" v2="484" v3="481" />+                <face v1="484" v2="762" v3="481" />+                <face v1="489" v2="490" v3="491" />+                <face v1="492" v2="489" v3="491" />+                <face v1="492" v2="1489" v3="489" />+                <face v1="497" v2="498" v3="499" />+                <face v1="501" v2="502" v3="503" />+                <face v1="504" v2="503" v3="502" />+                <face v1="504" v2="505" v3="503" />+                <face v1="506" v2="507" v3="508" />+                <face v1="506" v2="509" v3="507" />+                <face v1="510" v2="466" v3="511" />+                <face v1="788" v2="529" v3="916" />+                <face v1="530" v2="531" v3="532" />+                <face v1="532" v2="533" v3="530" />+                <face v1="539" v2="540" v3="541" />+                <face v1="540" v2="543" v3="546" />+                <face v1="541" v2="547" v3="539" />+                <face v1="553" v2="554" v3="555" />+                <face v1="558" v2="559" v3="556" />+                <face v1="560" v2="561" v3="562" />+                <face v1="562" v2="563" v3="560" />+                <face v1="564" v2="565" v3="566" />+                <face v1="566" v2="567" v3="564" />+                <face v1="568" v2="569" v3="570" />+                <face v1="570" v2="571" v3="568" />+                <face v1="555" v2="575" v3="576" />+                <face v1="553" v2="577" v3="578" />+                <face v1="579" v2="580" v3="581" />+                <face v1="580" v2="582" v3="581" />+                <face v1="583" v2="898" v3="585" />+                <face v1="766" v2="588" v3="583" />+                <face v1="588" v2="898" v3="583" />+                <face v1="597" v2="600" v3="593" />+                <face v1="603" v2="600" v3="649" />+                <face v1="573" v2="605" v3="590" />+                <face v1="606" v2="607" v3="894" />+                <face v1="603" v2="451" v3="611" />+                <face v1="831" v2="614" v3="615" />+                <face v1="614" v2="616" v3="615" />+                <face v1="440" v2="617" v3="422" />+                <face v1="449" v2="435" v3="421" />+                <face v1="444" v2="435" v3="449" />+                <face v1="444" v2="433" v3="435" />+                <face v1="619" v2="620" v3="621" />+                <face v1="621" v2="622" v3="619" />+                <face v1="626" v2="457" v3="627" />+                <face v1="434" v2="436" v3="478" />+                <face v1="634" v2="1417" v3="884" />+                <face v1="637" v2="1581" v3="638" />+                <face v1="641" v2="425" v3="642" />+                <face v1="641" v2="426" v3="425" />+                <face v1="643" v2="427" v3="426" />+                <face v1="645" v2="643" v3="646" />+                <face v1="646" v2="649" v3="645" />+                <face v1="647" v2="649" v3="648" />+                <face v1="451" v2="603" v3="649" />+                <face v1="812" v2="453" v3="646" />+                <face v1="646" v2="641" v3="812" />+                <face v1="494" v2="653" v3="651" />+                <face v1="690" v2="693" v3="656" />+                <face v1="494" v2="690" v3="656" />+                <face v1="670" v2="671" v3="503" />+                <face v1="694" v2="673" v3="674" />+                <face v1="666" v2="676" v3="675" />+                <face v1="670" v2="505" v3="678" />+                <face v1="680" v2="681" v3="98" />+                <face v1="681" v2="59" v3="98" />+                <face v1="682" v2="683" v3="684" />+                <face v1="682" v2="685" v3="683" />+                <face v1="686" v2="687" v3="688" />+                <face v1="494" v2="651" v3="690" />+                <face v1="692" v2="693" v3="688" />+                <face v1="694" v2="498" v3="497" />+                <face v1="497" v2="502" v3="694" />+                <face v1="695" v2="1588" v3="866" />+                <face v1="499" v2="699" v3="700" />+                <face v1="701" v2="702" v3="703" />+                <face v1="701" v2="704" v3="702" />+                <face v1="708" v2="709" v3="707" />+                <face v1="707" v2="701" v3="703" />+                <face v1="463" v2="707" v3="712" />+                <face v1="701" v2="707" v3="713" />+                <face v1="719" v2="720" v3="607" />+                <face v1="719" v2="721" v3="720" />+                <face v1="511" v2="722" v3="510" />+                <face v1="511" v2="466" v3="722" />+                <face v1="719" v2="725" v3="721" />+                <face v1="727" v2="728" v3="543" />+                <face v1="728" v2="546" v3="543" />+                <face v1="556" v2="559" v3="1601" />+                <face v1="1601" v2="573" v3="556" />+                <face v1="733" v2="734" v3="735" />+                <face v1="733" v2="736" v3="734" />+                <face v1="569" v2="552" v3="570" />+                <face v1="569" v2="550" v3="552" />+                <face v1="566" v2="737" v3="567" />+                <face v1="566" v2="739" v3="737" />+                <face v1="563" v2="739" v3="560" />+                <face v1="563" v2="740" v3="739" />+                <face v1="745" v2="746" v3="747" />+                <face v1="747" v2="748" v3="745" />+                <face v1="749" v2="750" v3="751" />+                <face v1="751" v2="752" v3="749" />+                <face v1="547" v2="753" v3="754" />+                <face v1="559" v2="756" v3="757" />+                <face v1="758" v2="647" v3="759" />+                <face v1="759" v2="760" v3="758" />+                <face v1="761" v2="762" v3="581" />+                <face v1="762" v2="484" v3="581" />+                <face v1="916" v2="766" v3="788" />+                <face v1="767" v2="497" v3="769" />+                <face v1="769" v2="506" v3="767" />+                <face v1="678" v2="507" v3="771" />+                <face v1="550" v2="775" v3="776" />+                <face v1="550" v2="593" v3="775" />+                <face v1="734" v2="593" v3="550" />+                <face v1="777" v2="742" v3="778" />+                <face v1="742" v2="741" v3="778" />+                <face v1="752" v2="751" v3="783" />+                <face v1="740" v2="563" v3="741" />+                <face v1="555" v2="576" v3="786" />+                <face v1="787" v2="529" v3="788" />+                <face v1="789" v2="534" v3="790" />+                <face v1="534" v2="532" v3="790" />+                <face v1="534" v2="737" v3="533" />+                <face v1="795" v2="722" v3="1503" />+                <face v1="795" v2="510" v3="722" />+                <face v1="797" v2="472" v3="798" />+                <face v1="797" v2="470" v3="472" />+                <face v1="1559" v2="621" v3="620" />+                <face v1="801" v2="627" v3="454" />+                <face v1="801" v2="803" v3="627" />+                <face v1="808" v2="622" v3="469" />+                <face v1="469" v2="809" v3="808" />+                <face v1="815" v2="816" v3="817" />+                <face v1="819" v2="820" v3="617" />+                <face v1="820" v2="821" v3="617" />+                <face v1="419" v2="418" v3="811" />+                <face v1="457" v2="454" v3="627" />+                <face v1="825" v2="622" v3="808" />+                <face v1="825" v2="619" v3="622" />+                <face v1="809" v2="471" v3="826" />+                <face v1="809" v2="469" v3="471" />+                <face v1="827" v2="803" v3="801" />+                <face v1="829" v2="470" v3="797" />+                <face v1="829" v2="471" v3="470" />+                <face v1="722" v2="466" v3="463" />+                <face v1="463" v2="1503" v3="722" />+                <face v1="466" v2="523" v3="831" />+                <face v1="832" v2="811" v3="418" />+                <face v1="832" v2="833" v3="811" />+                <face v1="737" v2="534" v3="789" />+                <face v1="562" v2="1523" v3="563" />+                <face v1="1523" v2="741" v3="563" />+                <face v1="1485" v2="699" v3="871" />+                <face v1="767" v2="506" v3="508" />+                <face v1="790" v2="759" v3="840" />+                <face v1="790" v2="787" v3="759" />+                <face v1="595" v2="1515" v3="597" />+                <face v1="595" v2="736" v3="1515" />+                <face v1="559" v2="1521" v3="1601" />+                <face v1="564" v2="746" v3="745" />+                <face v1="567" v2="736" v3="733" />+                <face v1="567" v2="737" v3="736" />+                <face v1="570" v2="552" v3="578" />+                <face v1="753" v2="541" v3="540" />+                <face v1="753" v2="547" v3="541" />+                <face v1="754" v2="756" v3="547" />+                <face v1="756" v2="559" v3="547" />+                <face v1="846" v2="776" v3="775" />+                <face v1="775" v2="611" v3="846" />+                <face v1="691" v2="876" v3="850" />+                <face v1="851" v2="938" v3="86" />+                <face v1="349" v2="460" v3="459" />+                <face v1="349" v2="348" v3="460" />+                <face v1="715" v2="704" v3="713" />+                <face v1="704" v2="701" v3="713" />+                <face v1="712" v2="854" v3="463" />+                <face v1="711" v2="855" v3="856" />+                <face v1="709" v2="713" v3="707" />+                <face v1="705" v2="708" v3="707" />+                <face v1="703" v2="702" v3="712" />+                <face v1="712" v2="707" v3="703" />+                <face v1="856" v2="857" v3="705" />+                <face v1="705" v2="711" v3="856" />+                <face v1="685" v2="682" v3="858" />+                <face v1="859" v2="692" v3="683" />+                <face v1="859" v2="693" v3="692" />+                <face v1="504" v2="767" v3="508" />+                <face v1="504" v2="497" v3="767" />+                <face v1="687" v2="686" v3="720" />+                <face v1="864" v2="686" v3="865" />+                <face v1="866" v2="692" v3="688" />+                <face v1="688" v2="1491" v3="866" />+                <face v1="868" v2="501" v3="503" />+                <face v1="503" v2="671" v3="868" />+                <face v1="688" v2="687" v3="1491" />+                <face v1="515" v2="691" v3="850" />+                <face v1="850" v2="1500" v3="515" />+                <face v1="490" v2="489" v3="664" />+                <face v1="660" v2="870" v3="489" />+                <face v1="660" v2="871" v3="870" />+                <face v1="874" v2="653" v3="494" />+                <face v1="875" v2="876" v3="862" />+                <face v1="814" v2="641" v3="642" />+                <face v1="814" v2="812" v3="641" />+                <face v1="646" v2="453" v3="649" />+                <face v1="647" v2="758" v3="649" />+                <face v1="758" v2="488" v3="649" />+                <face v1="646" v2="643" v3="641" />+                <face v1="643" v2="426" v3="641" />+                <face v1="426" v2="427" v3="424" />+                <face v1="879" v2="880" v3="881" />+                <face v1="879" v2="882" v3="880" />+                <face v1="273" v2="820" v3="883" />+                <face v1="630" v2="884" v3="431" />+                <face v1="431" v2="477" v3="436" />+                <face v1="454" v2="451" v3="801" />+                <face v1="801" v2="451" v3="886" />+                <face v1="827" v2="887" v3="832" />+                <face v1="832" v2="418" v3="827" />+                <face v1="798" v2="1559" v3="888" />+                <face v1="593" v2="603" v3="775" />+                <face v1="603" v2="593" v3="600" />+                <face v1="648" v2="600" v3="597" />+                <face v1="648" v2="649" v3="600" />+                <face v1="593" v2="595" v3="597" />+                <face v1="894" v2="895" v3="896" />+                <face v1="896" v2="556" v3="894" />+                <face v1="575" v2="903" v3="1525" />+                <face v1="575" v2="555" v3="903" />+                <face v1="1532" v2="906" v3="907" />+                <face v1="1532" v2="752" v3="906" />+                <face v1="908" v2="909" v3="910" />+                <face v1="908" v2="911" v3="909" />+                <face v1="750" v2="571" v3="570" />+                <face v1="570" v2="577" v3="750" />+                <face v1="565" v2="561" v3="560" />+                <face v1="560" v2="566" v3="565" />+                <face v1="896" v2="558" v3="556" />+                <face v1="903" v2="555" v3="554" />+                <face v1="554" v2="573" v3="903" />+                <face v1="593" v2="734" v3="595" />+                <face v1="734" v2="736" v3="595" />+                <face v1="737" v2="739" v3="533" />+                <face v1="530" v2="739" v3="740" />+                <face v1="546" v2="753" v3="540" />+                <face v1="539" v2="543" v3="540" />+                <face v1="916" v2="529" v3="531" />+                <face v1="921" v2="922" v3="923" />+                <face v1="921" v2="924" v3="922" />+                <face v1="614" v2="831" v3="523" />+                <face v1="691" v2="515" v3="516" />+                <face v1="894" v2="864" v3="895" />+                <face v1="894" v2="720" v3="864" />+                <face v1="721" v2="466" v3="510" />+                <face v1="501" v2="694" v3="502" />+                <face v1="1489" v2="660" v3="489" />+                <face v1="98" v2="870" v3="680" />+                <face v1="699" v2="1485" v3="931" />+                <face v1="685" v2="859" v3="683" />+                <face v1="693" v2="690" v3="686" />+                <face v1="86" v2="85" v3="851" />+                <face v1="857" v2="934" v3="935" />+                <face v1="937" v2="86" v3="938" />+                <face v1="939" v2="715" v3="940" />+                <face v1="715" v2="943" v3="940" />+                <face v1="671" v2="942" v3="943" />+                <face v1="943" v2="868" v3="671" />+                <face v1="673" v2="945" v3="946" />+                <face v1="945" v2="851" v3="946" />+                <face v1="946" v2="62" v3="59" />+                <face v1="59" v2="681" v3="946" />+                <face v1="582" v2="921" v3="581" />+                <face v1="582" v2="917" v3="921" />+                <face v1="711" v2="705" v3="707" />+                <face v1="614" v2="454" v3="457" />+                <face v1="614" v2="467" v3="454" />+                <face v1="447" v2="423" v3="952" />+                <face v1="447" v2="449" v3="423" />+                <face v1="440" v2="442" v3="819" />+                <face v1="819" v2="617" v3="440" />+                <face v1="954" v2="634" v3="884" />+                <face v1="421" v2="423" v3="449" />+                <face v1="419" v2="955" v3="626" />+                <face v1="274" v2="281" v3="275" />+                <face v1="281" v2="14" v3="275" />+                <face v1="16" v2="275" v3="14" />+                <face v1="16" v2="959" v3="275" />+                <face v1="960" v2="963" v3="962" />+                <face v1="407" v2="411" v3="406" />+                <face v1="1321" v2="971" v3="972" />+                <face v1="1231" v2="971" v3="36" />+                <face v1="1073" v2="165" v3="396" />+                <face v1="376" v2="396" v3="395" />+                <face v1="376" v2="1075" v3="396" />+                <face v1="143" v2="393" v3="144" />+                <face v1="196" v2="194" v3="195" />+                <face v1="975" v2="976" v3="189" />+                <face v1="978" v2="979" v3="980" />+                <face v1="979" v2="981" v3="980" />+                <face v1="218" v2="168" v3="982" />+                <face v1="352" v2="227" v3="218" />+                <face v1="984" v2="985" v3="986" />+                <face v1="986" v2="1028" v3="984" />+                <face v1="143" v2="210" v3="139" />+                <face v1="143" v2="391" v3="210" />+                <face v1="991" v2="992" v3="993" />+                <face v1="991" v2="53" v3="992" />+                <face v1="145" v2="293" v3="24" />+                <face v1="24" v2="146" v3="145" />+                <face v1="356" v2="154" v3="355" />+                <face v1="976" v2="996" v3="997" />+                <face v1="976" v2="975" v3="996" />+                <face v1="998" v2="368" v3="367" />+                <face v1="367" v2="999" v3="998" />+                <face v1="1000" v2="981" v3="979" />+                <face v1="1000" v2="386" v3="981" />+                <face v1="161" v2="162" v3="386" />+                <face v1="386" v2="180" v3="161" />+                <face v1="364" v2="165" v3="161" />+                <face v1="161" v2="183" v3="364" />+                <face v1="1002" v2="168" v3="363" />+                <face v1="168" v2="170" v3="363" />+                <face v1="358" v2="359" v3="148" />+                <face v1="1348" v2="179" v3="171" />+                <face v1="171" v2="1003" v3="1348" />+                <face v1="152" v2="1004" v3="1005" />+                <face v1="152" v2="1006" v3="1004" />+                <face v1="1012" v2="323" v3="1008" />+                <face v1="323" v2="116" v3="1008" />+                <face v1="1079" v2="1032" v3="137" />+                <face v1="345" v2="72" v3="1335" />+                <face v1="345" v2="344" v3="72" />+                <face v1="331" v2="43" v3="341" />+                <face v1="43" v2="338" v3="335" />+                <face v1="333" v2="332" v3="344" />+                <face v1="344" v2="43" v3="333" />+                <face v1="1016" v2="1017" v3="1018" />+                <face v1="1023" v2="327" v3="109" />+                <face v1="109" v2="108" v3="1023" />+                <face v1="315" v2="328" v3="317" />+                <face v1="311" v2="1024" v3="124" />+                <face v1="1024" v2="1032" v3="124" />+                <face v1="1025" v2="1026" v3="105" />+                <face v1="315" v2="314" v3="320" />+                <face v1="1027" v2="90" v3="330" />+                <face v1="90" v2="92" v3="330" />+                <face v1="98" v2="59" v3="61" />+                <face v1="61" v2="96" v3="98" />+                <face v1="1032" v2="1030" v3="1031" />+                <face v1="1033" v2="1034" v3="109" />+                <face v1="316" v2="71" v3="1035" />+                <face v1="97" v2="100" v3="303" />+                <face v1="97" v2="102" v3="100" />+                <face v1="102" v2="1038" v3="385" />+                <face v1="385" v2="1209" v3="102" />+                <face v1="1036" v2="324" v3="328" />+                <face v1="1026" v2="300" v3="105" />+                <face v1="287" v2="262" v3="965" />+                <face v1="965" v2="285" v3="287" />+                <face v1="224" v2="407" v3="260" />+                <face v1="287" v2="1041" v3="260" />+                <face v1="287" v2="1042" v3="1041" />+                <face v1="284" v2="283" v3="1042" />+                <face v1="297" v2="1043" v3="285" />+                <face v1="1043" v2="284" v3="285" />+                <face v1="11" v2="1138" v3="12" />+                <face v1="1046" v2="1158" v3="1047" />+                <face v1="1052" v2="1053" v3="1050" />+                <face v1="1050" v2="263" v3="1052" />+                <face v1="11" v2="271" v3="270" />+                <face v1="411" v2="31" v3="6" />+                <face v1="1056" v2="260" v3="407" />+                <face v1="8" v2="1057" v3="26" />+                <face v1="8" v2="1058" v3="1057" />+                <face v1="10" v2="1058" v3="8" />+                <face v1="1059" v2="1060" v3="0" />+                <face v1="227" v2="228" v3="226" />+                <face v1="222" v2="226" v3="223" />+                <face v1="1062" v2="213" v3="193" />+                <face v1="193" v2="1003" v3="1062" />+                <face v1="1065" v2="391" v3="146" />+                <face v1="991" v2="202" v3="56" />+                <face v1="991" v2="48" v3="202" />+                <face v1="360" v2="198" v3="197" />+                <face v1="362" v2="1069" v3="1070" />+                <face v1="1070" v2="1071" v3="362" />+                <face v1="183" v2="182" v3="369" />+                <face v1="369" v2="364" v3="183" />+                <face v1="386" v2="181" v3="180" />+                <face v1="177" v2="172" v3="171" />+                <face v1="171" v2="179" v3="177" />+                <face v1="195" v2="213" v3="197" />+                <face v1="218" v2="982" v3="361" />+                <face v1="361" v2="213" v3="218" />+                <face v1="148" v2="355" v3="358" />+                <face v1="1006" v2="152" v3="359" />+                <face v1="149" v2="148" v3="152" />+                <face v1="1073" v2="989" v3="1074" />+                <face v1="1073" v2="1075" v3="989" />+                <face v1="139" v2="393" v3="143" />+                <face v1="1201" v2="127" v3="126" />+                <face v1="1201" v2="1227" v3="127" />+                <face v1="1079" v2="124" v3="1032" />+                <face v1="1080" v2="1231" v3="116" />+                <face v1="108" v2="1028" v3="1081" />+                <face v1="108" v2="316" v3="1028" />+                <face v1="316" v2="108" v3="110" />+                <face v1="1018" v2="327" v3="1023" />+                <face v1="1023" v2="1082" v3="1018" />+                <face v1="1083" v2="309" v3="100" />+                <face v1="1084" v2="72" v3="74" />+                <face v1="74" v2="331" v3="1084" />+                <face v1="1085" v2="52" v3="53" />+                <face v1="263" v2="1050" v3="266" />+                <face v1="127" v2="39" v3="41" />+                <face v1="242" v2="1087" v3="409" />+                <face v1="242" v2="241" v3="1087" />+                <face v1="341" v2="340" v3="342" />+                <face v1="348" v2="347" v3="1090" />+                <face v1="412" v2="1091" v3="31" />+                <face v1="8" v2="26" v3="30" />+                <face v1="26" v2="1092" v3="30" />+                <face v1="26" v2="1162" v3="1092" />+                <face v1="17" v2="1093" v3="15" />+                <face v1="21" v2="289" v3="56" />+                <face v1="1058" v2="263" v3="1057" />+                <face v1="284" v2="1043" v3="282" />+                <face v1="9" v2="19" v3="10" />+                <face v1="1264" v2="36" v3="1076" />+                <face v1="1111" v2="1107" v3="1090" />+                <face v1="1121" v2="399" v3="132" />+                <face v1="399" v2="1121" v3="1122" />+                <face v1="1059" v2="399" v3="1123" />+                <face v1="399" v2="0" v3="34" />+                <face v1="31" v2="34" v3="6" />+                <face v1="10" v2="18" v3="1052" />+                <face v1="10" v2="19" v3="18" />+                <face v1="1127" v2="1053" v3="1128" />+                <face v1="1053" v2="1127" v3="1129" />+                <face v1="1130" v2="1131" v3="1132" />+                <face v1="1131" v2="1130" v3="1133" />+                <face v1="1133" v2="1130" v3="1046" />+                <face v1="1135" v2="1046" v3="1152" />+                <face v1="282" v2="1138" v3="1152" />+                <face v1="278" v2="1093" v3="17" />+                <face v1="1093" v2="278" v3="1140" />+                <face v1="268" v2="271" v3="245" />+                <face v1="15" v2="1093" v3="18" />+                <face v1="268" v2="1057" v3="263" />+                <face v1="1057" v2="268" v3="245" />+                <face v1="1148" v2="1146" v3="1147" />+                <face v1="1149" v2="1047" v3="1151" />+                <face v1="1149" v2="1152" v3="1047" />+                <face v1="1158" v2="1153" v3="1047" />+                <face v1="1155" v2="1156" v3="1157" />+                <face v1="1155" v2="1158" v3="1156" />+                <face v1="1159" v2="278" v3="280" />+                <face v1="278" v2="1159" v3="1140" />+                <face v1="16" v2="19" v3="959" />+                <face v1="16" v2="15" v3="19" />+                <face v1="1160" v2="1161" v3="1162" />+                <face v1="1160" v2="1163" v3="1161" />+                <face v1="1092" v2="1162" v3="1161" />+                <face v1="1451" v2="9" v3="29" />+                <face v1="1008" v2="116" v3="1231" />+                <face v1="1107" v2="960" v3="1173" />+                <face v1="1111" v2="960" v3="1107" />+                <face v1="34" v2="36" v3="399" />+                <face v1="36" v2="34" v3="1231" />+                <face v1="39" v2="127" v3="1227" />+                <face v1="303" v2="1185" v3="1186" />+                <face v1="309" v2="1185" v3="303" />+                <face v1="1189" v2="253" v3="252" />+                <face v1="1189" v2="970" v3="253" />+                <face v1="48" v2="991" v3="46" />+                <face v1="1079" v2="1085" v3="1192" />+                <face v1="1079" v2="52" v3="1085" />+                <face v1="1085" v2="1193" v3="1194" />+                <face v1="1085" v2="53" v3="1193" />+                <face v1="301" v2="1203" v3="1204" />+                <face v1="301" v2="300" v3="1203" />+                <face v1="320" v2="1025" v3="328" />+                <face v1="1017" v2="307" v3="1033" />+                <face v1="1017" v2="1038" v3="307" />+                <face v1="1206" v2="309" v3="1207" />+                <face v1="1185" v2="309" v3="1206" />+                <face v1="1212" v2="1209" v3="1036" />+                <face v1="1212" v2="1036" v3="105" />+                <face v1="1082" v2="1023" v3="1214" />+                <face v1="1216" v2="1214" v3="382" />+                <face v1="1082" v2="1214" v3="1216" />+                <face v1="1217" v2="112" v3="330" />+                <face v1="1027" v2="330" v3="112" />+                <face v1="1029" v2="1035" v3="1220" />+                <face v1="1080" v2="971" v3="1231" />+                <face v1="1080" v2="984" v3="971" />+                <face v1="137" v2="1032" v3="1031" />+                <face v1="1222" v2="1194" v3="1224" />+                <face v1="1222" v2="1192" v3="1194" />+                <face v1="1222" v2="1227" v3="1079" />+                <face v1="1222" v2="1183" v3="1227" />+                <face v1="1227" v2="1201" v3="1228" />+                <face v1="1321" v2="342" v3="36" />+                <face v1="36" v2="1107" v3="1076" />+                <face v1="340" v2="1107" v3="36" />+                <face v1="1239" v2="152" v3="1005" />+                <face v1="152" v2="1239" v3="149" />+                <face v1="1004" v2="989" v3="139" />+                <face v1="396" v2="1075" v3="1073" />+                <face v1="1074" v2="989" v3="1006" />+                <face v1="395" v2="170" v3="1242" />+                <face v1="170" v2="395" v3="165" />+                <face v1="1073" v2="1074" v3="162" />+                <face v1="157" v2="1006" v3="154" />+                <face v1="154" v2="1006" v3="359" />+                <face v1="177" v2="355" v3="148" />+                <face v1="177" v2="357" v3="355" />+                <face v1="157" v2="981" v3="386" />+                <face v1="356" v2="981" v3="157" />+                <face v1="213" v2="360" v3="197" />+                <face v1="361" v2="360" v3="213" />+                <face v1="193" v2="213" v3="195" />+                <face v1="978" v2="365" v3="366" />+                <face v1="995" v2="365" v3="978" />+                <face v1="1246" v2="181" v3="1000" />+                <face v1="369" v2="363" v3="364" />+                <face v1="368" v2="363" v3="369" />+                <face v1="1069" v2="998" v3="1070" />+                <face v1="1069" v2="1002" v3="998" />+                <face v1="362" v2="996" v3="198" />+                <face v1="362" v2="1071" v3="996" />+                <face v1="1248" v2="1249" v3="975" />+                <face v1="1249" v2="1248" v3="1250" />+                <face v1="997" v2="367" v3="1252" />+                <face v1="201" v2="46" v3="1236" />+                <face v1="46" v2="201" v3="48" />+                <face v1="48" v2="201" v3="202" />+                <face v1="202" v2="201" v3="203" />+                <face v1="1065" v2="210" v3="391" />+                <face v1="1065" v2="203" v3="210" />+                <face v1="201" v2="381" v3="139" />+                <face v1="226" v2="228" v3="224" />+                <face v1="213" v2="1260" v3="218" />+                <face v1="1260" v2="213" v3="1062" />+                <face v1="121" v2="212" v3="119" />+                <face v1="1008" v2="1262" v3="1012" />+                <face v1="1262" v2="1008" v3="353" />+                <face v1="228" v2="1091" v3="407" />+                <face v1="1263" v2="963" v3="1116" />+                <face v1="1173" v2="1264" v3="1107" />+                <face v1="132" v2="1265" v3="1266" />+                <face v1="36" v2="1265" v3="132" />+                <face v1="29" v2="1271" v3="1272" />+                <face v1="1268" v2="1275" v3="236" />+                <face v1="29" v2="1276" v3="1271" />+                <face v1="1275" v2="237" v3="236" />+                <face v1="1277" v2="29" v3="30" />+                <face v1="1276" v2="29" v3="1277" />+                <face v1="30" v2="1278" v3="1277" />+                <face v1="236" v2="237" v3="243" />+                <face v1="30" v2="1280" v3="1278" />+                <face v1="30" v2="1092" v3="1280" />+                <face v1="1280" v2="248" v3="404" />+                <face v1="1280" v2="249" v3="248" />+                <face v1="1162" v2="245" v3="13" />+                <face v1="249" v2="1087" v3="248" />+                <face v1="249" v2="1281" v3="1087" />+                <face v1="12" v2="1162" v3="13" />+                <face v1="1162" v2="12" v3="1160" />+                <face v1="965" v2="1281" v3="1163" />+                <face v1="1281" v2="965" v3="1282" />+                <face v1="1056" v2="1282" v3="965" />+                <face v1="262" v2="1056" v3="965" />+                <face v1="1093" v2="1128" v3="18" />+                <face v1="1093" v2="1140" v3="1128" />+                <face v1="1050" v2="1053" v3="1129" />+                <face v1="1156" v2="1127" v3="1159" />+                <face v1="1127" v2="1156" v3="1132" />+                <face v1="1285" v2="1286" v3="1284" />+                <face v1="1287" v2="1131" v3="1133" />+                <face v1="266" v2="1131" v3="1287" />+                <face v1="1155" v2="1288" v3="1289" />+                <face v1="1157" v2="1288" v3="1155" />+                <face v1="272" v2="1287" v3="1133" />+                <face v1="266" v2="1287" v3="272" />+                <face v1="1130" v2="1158" v3="1046" />+                <face v1="1291" v2="1294" v3="1298" />+                <face v1="1133" v2="1135" v3="11" />+                <face v1="1289" v2="1297" v3="1153" />+                <face v1="1046" v2="1047" v3="1152" />+                <face v1="11" v2="1135" v3="1138" />+                <face v1="1151" v2="1302" v3="1149" />+                <face v1="1151" v2="1297" v3="1302" />+                <face v1="1043" v2="12" v3="1138" />+                <face v1="12" v2="1043" v3="297" />+                <face v1="1152" v2="1147" v3="282" />+                <face v1="1148" v2="1308" v3="1146" />+                <face v1="1147" v2="1042" v3="283" />+                <face v1="1147" v2="288" v3="1042" />+                <face v1="1581" v2="1311" v3="288" />+                <face v1="1042" v2="1313" v3="1041" />+                <face v1="260" v2="292" v3="224" />+                <face v1="260" v2="1041" v3="292" />+                <face v1="1313" v2="289" v3="21" />+                <face v1="1036" v2="1025" v3="105" />+                <face v1="1036" v2="328" v3="1025" />+                <face v1="1209" v2="385" v3="324" />+                <face v1="1038" v2="102" v3="307" />+                <face v1="1320" v2="1207" v3="1083" />+                <face v1="1083" v2="1207" v3="309" />+                <face v1="1321" v2="331" v3="342" />+                <face v1="1084" v2="331" v3="1321" />+                <face v1="126" v2="1206" v3="1201" />+                <face v1="41" v2="1206" v3="126" />+                <face v1="1228" v2="1201" v3="1322" />+                <face v1="1031" v2="319" v3="321" />+                <face v1="1031" v2="1030" v3="319" />+                <face v1="117" v2="1323" v3="1080" />+                <face v1="1080" v2="985" v3="984" />+                <face v1="1080" v2="1325" v3="985" />+                <face v1="1035" v2="1028" v3="316" />+                <face v1="1029" v2="1028" v3="1035" />+                <face v1="61" v2="1033" v3="96" />+                <face v1="61" v2="1034" v3="1033" />+                <face v1="1035" v2="1084" v3="1321" />+                <face v1="1035" v2="70" v3="1084" />+                <face v1="339" v2="1090" v3="340" />+                <face v1="339" v2="348" v3="1090" />+                <face v1="1220" v2="1035" v3="1321" />+                <face v1="89" v2="1024" v3="311" />+                <face v1="1327" v2="1024" v3="89" />+                <face v1="1024" v2="1204" v3="1032" />+                <face v1="1030" v2="1203" v3="319" />+                <face v1="320" v2="328" v3="315" />+                <face v1="382" v2="1081" v3="384" />+                <face v1="382" v2="1214" v3="1081" />+                <face v1="1021" v2="112" v3="1329" />+                <face v1="317" v2="112" v3="1021" />+                <face v1="317" v2="1027" v3="112" />+                <face v1="1330" v2="1217" v3="1331" />+                <face v1="1216" v2="1332" v3="1082" />+                <face v1="1332" v2="1216" v3="1333" />+                <face v1="1082" v2="1016" v3="1018" />+                <face v1="45" v2="82" v3="339" />+                <face v1="44" v2="82" v3="45" />+                <face v1="80" v2="335" v3="78" />+                <face v1="335" v2="80" v3="44" />+                <face v1="76" v2="337" v3="345" />+                <face v1="337" v2="76" v3="338" />+                <face v1="344" v2="74" v3="72" />+                <face v1="74" v2="344" v3="332" />+                <face v1="1335" v2="69" v3="66" />+                <face v1="66" v2="63" v3="1034" />+                <face v1="1336" v2="81" v3="80" />+                <face v1="1337" v2="81" v3="1336" />+                <face v1="86" v2="76" v3="84" />+                <face v1="1335" v2="72" v3="69" />+                <face v1="92" v2="324" v3="93" />+                <face v1="104" v2="1209" v3="1212" />+                <face v1="149" v2="1236" v3="176" />+                <face v1="1236" v2="1340" v3="176" />+                <face v1="1236" v2="138" v3="1340" />+                <face v1="321" v2="119" v3="1031" />+                <face v1="137" v2="50" v3="1079" />+                <face v1="121" v2="323" v3="1012" />+                <face v1="121" v2="119" v3="323" />+                <face v1="1220" v2="1321" v3="972" />+                <face v1="381" v2="1005" v3="1004" />+                <face v1="1262" v2="1062" v3="212" />+                <face v1="1262" v2="1260" v3="1062" />+                <face v1="212" v2="1003" v3="171" />+                <face v1="1003" v2="212" v3="1062" />+                <face v1="1341" v2="367" v3="997" />+                <face v1="1002" v2="982" v3="168" />+                <face v1="1069" v2="982" v3="1002" />+                <face v1="183" v2="161" v3="180" />+                <face v1="980" v2="995" v3="978" />+                <face v1="980" v2="357" v3="995" />+                <face v1="1250" v2="1343" v3="194" />+                <face v1="1344" v2="185" v3="1345" />+                <face v1="185" v2="1344" v3="187" />+                <face v1="188" v2="181" v3="1246" />+                <face v1="1252" v2="182" v3="181" />+                <face v1="367" v2="182" v3="1252" />+                <face v1="998" v2="1341" v3="1070" />+                <face v1="1341" v2="998" v3="999" />+                <face v1="997" v2="996" v3="1071" />+                <face v1="189" v2="1248" v3="975" />+                <face v1="179" v2="995" v3="357" />+                <face v1="1345" v2="995" v3="179" />+                <face v1="1065" v2="146" v3="21" />+                <face v1="1242" v2="222" v3="223" />+                <face v1="1242" v2="170" v3="222" />+                <face v1="56" v2="1065" v3="21" />+                <face v1="1075" v2="139" v3="989" />+                <face v1="143" v2="146" v3="391" />+                <face v1="985" v2="384" v3="986" />+                <face v1="984" v2="972" v3="971" />+                <face v1="984" v2="1028" v3="972" />+                <face v1="227" v2="168" v3="218" />+                <face v1="187" v2="1344" v3="1350" />+                <face v1="979" v2="366" v3="1351" />+                <face v1="979" v2="978" v3="366" />+                <face v1="356" v2="980" v3="981" />+                <face v1="193" v2="1348" v3="1003" />+                <face v1="193" v2="1343" v3="1348" />+                <face v1="1249" v2="196" v3="975" />+                <face v1="188" v2="189" v3="976" />+                <face v1="340" v2="36" v3="342" />+                <face v1="1275" v2="1548" v3="1355" />+                <face v1="1275" v2="1268" v3="1548" />+                <face v1="237" v2="1356" v3="1278" />+                <face v1="1358" v2="970" v3="1087" />+                <face v1="1358" v2="253" v3="970" />+                <face v1="1361" v2="236" v3="966" />+                <face v1="966" v2="236" v3="1362" />+                <face v1="1189" v2="1363" v3="1364" />+                <face v1="1363" v2="1189" v3="1365" />+                <face v1="347" v2="1116" v3="1090" />+                <face v1="1116" v2="347" v3="349" />+                <face v1="962" v2="1263" v3="1366" />+                <face v1="1263" v2="962" v3="963" />+                <face v1="1368" v2="1173" v3="960" />+                <face v1="1371" v2="1265" v3="1264" />+                <face v1="1373" v2="1121" v3="1266" />+                <face v1="1121" v2="1373" v3="1376" />+                <face v1="1122" v2="1377" v3="1123" />+                <face v1="1122" v2="1378" v3="1377" />+                <face v1="279" v2="274" v3="1285" />+                <face v1="281" v2="274" v3="279" />+                <face v1="1289" v2="1284" v3="1291" />+                <face v1="1288" v2="1284" v3="1289" />+                <face v1="1289" v2="1298" v3="1297" />+                <face v1="1297" v2="1304" v3="1302" />+                <face v1="1297" v2="1300" v3="1304" />+                <face v1="1581" v2="1308" v3="1304" />+                <face v1="1379" v2="1102" v3="1381" />+                <face v1="1386" v2="520" v3="1543" />+                <face v1="458" v2="1392" v3="1116" />+                <face v1="1396" v2="831" v3="1397" />+                <face v1="831" v2="1398" v3="1399" />+                <face v1="626" v2="958" v3="614" />+                <face v1="955" v2="958" v3="626" />+                <face v1="955" v2="1400" v3="958" />+                <face v1="719" v2="846" v3="611" />+                <face v1="467" v2="1403" v3="454" />+                <face v1="1404" v2="1405" v3="1406" />+                <face v1="1404" v2="953" v3="1405" />+                <face v1="1407" v2="1408" v3="1409" />+                <face v1="1407" v2="1410" v3="1408" />+                <face v1="1414" v2="1413" v3="1568" />+                <face v1="1436" v2="1414" v3="1417" />+                <face v1="1451" v2="422" v3="821" />+                <face v1="1451" v2="423" v3="422" />+                <face v1="954" v2="630" v3="1420" />+                <face v1="954" v2="884" v3="630" />+                <face v1="1405" v2="435" v3="434" />+                <face v1="421" v2="435" v3="1405" />+                <face v1="820" v2="1421" v3="821" />+                <face v1="1421" v2="820" v3="273" />+                <face v1="824" v2="56" v3="289" />+                <face v1="878" v2="1428" v3="643" />+                <face v1="1428" v2="878" v3="1430" />+                <face v1="1431" v2="1428" v3="637" />+                <face v1="1433" v2="638" v3="1435" />+                <face v1="1433" v2="1436" v3="638" />+                <face v1="1437" v2="1435" v3="1439" />+                <face v1="1441" v2="879" v3="1442" />+                <face v1="1441" v2="1443" v3="879" />+                <face v1="814" v2="1444" v3="812" />+                <face v1="1444" v2="814" v3="1445" />+                <face v1="1449" v2="1447" v3="446" />+                <face v1="1451" v2="1272" v3="952" />+                <face v1="1392" v2="816" v3="1116" />+                <face v1="458" v2="855" v3="1386" />+                <face v1="1500" v2="516" v3="515" />+                <face v1="940" v2="942" v3="1463" />+                <face v1="940" v2="943" v3="942" />+                <face v1="1464" v2="851" v3="945" />+                <face v1="1408" v2="477" v3="1409" />+                <face v1="477" v2="1408" v3="478" />+                <face v1="581" v2="923" v3="761" />+                <face v1="921" v2="923" v3="581" />+                <face v1="56" v2="483" v3="1193" />+                <face v1="673" v2="946" v3="681" />+                <face v1="85" v2="946" v3="851" />+                <face v1="946" v2="85" v3="62" />+                <face v1="939" v2="1463" v3="854" />+                <face v1="939" v2="940" v3="1463" />+                <face v1="938" v2="1464" v3="715" />+                <face v1="935" v2="86" v3="937" />+                <face v1="856" v2="934" v3="857" />+                <face v1="856" v2="460" v3="934" />+                <face v1="1471" v2="1472" v3="1206" />+                <face v1="1472" v2="1475" v3="1476" />+                <face v1="1475" v2="1472" v3="1471" />+                <face v1="1478" v2="1479" v3="666" />+                <face v1="1479" v2="1478" v3="874" />+                <face v1="651" v2="1481" v3="1482" />+                <face v1="651" v2="653" v3="1481" />+                <face v1="674" v2="870" v3="871" />+                <face v1="680" v2="870" v3="674" />+                <face v1="1186" v2="664" v3="98" />+                <face v1="1486" v2="1489" v3="492" />+                <face v1="862" v2="1489" v3="875" />+                <face v1="862" v2="494" v3="1489" />+                <face v1="678" v2="504" v3="508" />+                <face v1="678" v2="505" v3="504" />+                <face v1="506" v2="1491" v3="509" />+                <face v1="695" v2="1491" v3="506" />+                <face v1="866" v2="1491" v3="695" />+                <face v1="678" v2="795" v3="670" />+                <face v1="720" v2="510" v3="687" />+                <face v1="720" v2="721" v3="510" />+                <face v1="1494" v2="864" v3="676" />+                <face v1="1494" v2="895" v3="864" />+                <face v1="923" v2="691" v3="516" />+                <face v1="923" v2="666" v3="691" />+                <face v1="516" v2="481" v3="762" />+                <face v1="1496" v2="481" v3="516" />+                <face v1="1499" v2="1224" v3="1496" />+                <face v1="1499" v2="1183" v3="1224" />+                <face v1="1471" v2="1499" v3="1500" />+                <face v1="1471" v2="39" v3="1499" />+                <face v1="467" v2="725" v3="1403" />+                <face v1="725" v2="467" v3="466" />+                <face v1="922" v2="676" v3="666" />+                <face v1="676" v2="922" v3="1494" />+                <face v1="917" v2="924" v3="921" />+                <face v1="1508" v2="924" v3="1510" />+                <face v1="1511" v2="924" v3="1508" />+                <face v1="1515" v2="790" v3="840" />+                <face v1="789" v2="790" v3="1515" />+                <face v1="546" v2="531" v3="530" />+                <face v1="546" v2="728" v3="531" />+                <face v1="530" v2="753" v3="546" />+                <face v1="913" v2="539" v3="558" />+                <face v1="754" v2="777" v3="756" />+                <face v1="740" v2="742" v3="530" />+                <face v1="739" v2="530" v3="533" />+                <face v1="736" v2="737" v3="1515" />+                <face v1="896" v2="913" v3="558" />+                <face v1="1519" v2="913" v3="896" />+                <face v1="1520" v2="1521" v3="757" />+                <face v1="741" v2="1523" v3="1522" />+                <face v1="735" v2="746" v3="733" />+                <face v1="746" v2="735" v3="747" />+                <face v1="577" v2="751" v3="750" />+                <face v1="1525" v2="1526" v3="1527" />+                <face v1="1525" v2="1528" v3="1526" />+                <face v1="907" v2="906" v3="911" />+                <face v1="749" v2="752" v3="1532" />+                <face v1="731" v2="917" v3="582" />+                <face v1="731" v2="1508" v3="1510" />+                <face v1="582" v2="585" v3="731" />+                <face v1="585" v2="579" v3="1537" />+                <face v1="585" v2="580" v3="579" />+                <face v1="585" v2="900" v3="731" />+                <face v1="898" v2="900" v3="585" />+                <face v1="766" v2="1537" v3="760" />+                <face v1="766" v2="585" v3="1537" />+                <face v1="837" v2="900" v3="898" />+                <face v1="896" v2="1494" v3="1519" />+                <face v1="896" v2="895" v3="1494" />+                <face v1="550" v2="573" v3="554" />+                <face v1="1540" v2="550" v3="776" />+                <face v1="611" v2="775" v3="603" />+                <face v1="454" v2="611" v3="451" />+                <face v1="466" v2="1544" v3="1543" />+                <face v1="821" v2="1421" v3="1451" />+                <face v1="1271" v2="1549" v3="1550" />+                <face v1="1549" v2="1271" v3="1548" />+                <face v1="1550" v2="1551" v3="1552" />+                <face v1="1551" v2="1550" v3="1549" />+                <face v1="829" v2="1552" v3="1551" />+                <face v1="797" v2="1552" v3="829" />+                <face v1="797" v2="1556" v3="1552" />+                <face v1="444" v2="888" v3="1449" />+                <face v1="888" v2="444" v3="1556" />+                <face v1="622" v2="472" v3="469" />+                <face v1="621" v2="472" v3="622" />+                <face v1="1557" v2="1449" v3="888" />+                <face v1="1557" v2="1444" v3="1449" />+                <face v1="1559" v2="1558" v3="1557" />+                <face v1="642" v2="1445" v3="814" />+                <face v1="642" v2="634" v3="1445" />+                <face v1="1559" v2="886" v3="1558" />+                <face v1="801" v2="886" v3="1559" />+                <face v1="418" v2="803" v3="827" />+                <face v1="451" v2="453" v3="886" />+                <face v1="418" v2="627" v3="803" />+                <face v1="419" v2="627" v3="418" />+                <face v1="431" v2="884" v3="477" />+                <face v1="442" v2="880" v3="819" />+                <face v1="442" v2="881" v3="880" />+                <face v1="434" v2="1406" v3="1405" />+                <face v1="1442" v2="1404" v3="1410" />+                <face v1="1442" v2="1560" v3="1404" />+                <face v1="883" v2="1561" v3="1285" />+                <face v1="882" v2="1443" v3="1562" />+                <face v1="1443" v2="882" v3="879" />+                <face v1="1437" v2="1407" v3="1564" />+                <face v1="1437" v2="1441" v3="1407" />+                <face v1="1286" v2="1565" v3="1294" />+                <face v1="1565" v2="1286" v3="1566" />+                <face v1="1435" v2="1569" v3="1439" />+                <face v1="1433" v2="1437" v3="1413" />+                <face v1="1298" v2="1294" v3="1573" />+                <face v1="1435" v2="638" v3="1575" />+                <face v1="1304" v2="1576" v3="1577" />+                <face v1="1304" v2="1639" v3="1576" />+                <face v1="425" v2="424" v3="1417" />+                <face v1="427" v2="1428" v3="424" />+                <face v1="1581" v2="1304" v3="1577" />+                <face v1="1430" v2="878" v3="1581" />+                <face v1="824" v2="643" v3="1582" />+                <face v1="289" v2="878" v3="824" />+                <face v1="289" v2="1311" v3="878" />+                <face v1="1582" v2="649" v3="488" />+                <face v1="649" v2="1582" v3="645" />+                <face v1="762" v2="761" v3="923" />+                <face v1="874" v2="494" v3="1479" />+                <face v1="1485" v2="660" v3="656" />+                <face v1="491" v2="1472" v3="492" />+                <face v1="1476" v2="1486" v3="1472" />+                <face v1="1486" v2="1476" v3="875" />+                <face v1="664" v2="870" v3="98" />+                <face v1="489" v2="870" v3="664" />+                <face v1="463" v2="711" v3="707" />+                <face v1="463" v2="855" v3="711" />+                <face v1="1491" v2="687" v3="510" />+                <face v1="509" v2="1491" v3="510" />+                <face v1="868" v2="694" v3="501" />+                <face v1="868" v2="673" v3="694" />+                <face v1="670" v2="942" v3="671" />+                <face v1="499" v2="674" v3="699" />+                <face v1="498" v2="674" v3="499" />+                <face v1="498" v2="694" v3="674" />+                <face v1="690" v2="1482" v3="686" />+                <face v1="690" v2="651" v3="1482" />+                <face v1="1479" v2="862" v3="876" />+                <face v1="1479" v2="494" v3="862" />+                <face v1="675" v2="1478" v3="666" />+                <face v1="675" v2="1481" v3="1478" />+                <face v1="865" v2="686" v3="1482" />+                <face v1="502" v2="497" v3="504" />+                <face v1="866" v2="683" v3="692" />+                <face v1="683" v2="866" v3="684" />+                <face v1="1589" v2="682" v3="1591" />+                <face v1="858" v2="682" v3="1589" />+                <face v1="700" v2="497" v3="499" />+                <face v1="1597" v2="497" v3="700" />+                <face v1="935" v2="705" v3="857" />+                <face v1="709" v2="937" v3="938" />+                <face v1="708" v2="937" v3="709" />+                <face v1="702" v2="854" v3="712" />+                <face v1="702" v2="939" v3="854" />+                <face v1="868" v2="945" v3="673" />+                <face v1="868" v2="943" v3="945" />+                <face v1="934" v2="348" v3="1337" />+                <face v1="934" v2="460" v3="348" />+                <face v1="86" v2="935" v3="1336" />+                <face v1="1464" v2="938" v3="851" />+                <face v1="1475" v2="1500" v3="850" />+                <face v1="1475" v2="1598" v3="1500" />+                <face v1="1476" v2="876" v3="875" />+                <face v1="1486" v2="875" v3="1489" />+                <face v1="1476" v2="850" v3="876" />+                <face v1="1475" v2="850" v3="1476" />+                <face v1="1511" v2="1600" v3="924" />+                <face v1="1511" v2="543" v3="1600" />+                <face v1="1494" v2="924" v3="1519" />+                <face v1="1494" v2="922" v3="924" />+                <face v1="686" v2="864" v3="720" />+                <face v1="837" v2="1511" v3="1508" />+                <face v1="837" v2="727" v3="1511" />+                <face v1="1540" v2="846" v3="606" />+                <face v1="1540" v2="776" v3="846" />+                <face v1="590" v2="605" v3="894" />+                <face v1="1601" v2="1521" v3="1602" />+                <face v1="745" v2="748" v3="1603" />+                <face v1="577" v2="570" v3="578" />+                <face v1="575" v2="1527" v3="576" />+                <face v1="910" v2="1521" v3="1520" />+                <face v1="909" v2="1521" v3="910" />+                <face v1="1523" v2="907" v3="1522" />+                <face v1="1532" v2="562" v3="561" />+                <face v1="564" v2="745" v3="565" />+                <face v1="749" v2="568" v3="571" />+                <face v1="1603" v2="568" v3="749" />+                <face v1="1528" v2="906" v3="1526" />+                <face v1="906" v2="1528" v3="911" />+                <face v1="530" v2="754" v3="753" />+                <face v1="597" v2="840" v3="648" />+                <face v1="597" v2="1515" v3="840" />+                <face v1="579" v2="484" v3="483" />+                <face v1="581" v2="484" v3="579" />+                <face v1="648" v2="759" v3="647" />+                <face v1="840" v2="759" v3="648" />+                <face v1="758" v2="760" v3="488" />+                <face v1="916" v2="898" v3="588" />+                <face v1="1608" v2="769" v3="497" />+                <face v1="1608" v2="1595" v3="769" />+                <face v1="1528" v2="1601" v3="1602" />+                <face v1="1528" v2="1525" v3="1601" />+                <face v1="1522" v2="908" v3="1609" />+                <face v1="907" v2="908" v3="1522" />+                <face v1="576" v2="751" v3="786" />+                <face v1="1532" v2="1523" v3="562" />+                <face v1="831" v2="1611" v3="1610" />+                <face v1="1549" v2="1613" v3="1551" />+                <face v1="1549" v2="1614" v3="1613" />+                <face v1="887" v2="801" v3="1559" />+                <face v1="887" v2="827" v3="801" />+                <face v1="1615" v2="236" v3="1360" />+                <face v1="1615" v2="805" v3="236" />+                <face v1="826" v2="471" v3="1619" />+                <face v1="825" v2="832" v3="619" />+                <face v1="833" v2="832" v3="825" />+                <face v1="1392" v2="817" v3="816" />+                <face v1="1543" v2="1620" v3="1623" />+                <face v1="1543" v2="1624" v3="1620" />+                <face v1="1610" v2="1624" v3="1544" />+                <face v1="1610" v2="1626" v3="1624" />+                <face v1="1396" v2="1626" v3="1611" />+                <face v1="1399" v2="1629" v3="1397" />+                <face v1="1399" v2="1630" v3="1629" />+                <face v1="1398" v2="616" v3="1631" />+                <face v1="615" v2="616" v3="1398" />+                <face v1="819" v2="883" v3="820" />+                <face v1="819" v2="880" v3="883" />+                <face v1="1561" v2="1562" v3="1566" />+                <face v1="1562" v2="1561" v3="882" />+                <face v1="1565" v2="1569" v3="1573" />+                <face v1="1632" v2="1575" v3="638" />+                <face v1="1632" v2="1573" v3="1575" />+                <face v1="1581" v2="1577" v3="638" />+                <face v1="1577" v2="1632" v3="638" />+                <face v1="1573" v2="1569" v3="1575" />+                <face v1="1566" v2="1569" v3="1565" />+                <face v1="1569" v2="1566" v3="1562" />+                <face v1="883" v2="882" v3="1561" />+                <face v1="882" v2="883" v3="880" />+                <face v1="1631" v2="1399" v3="1398" />+                <face v1="1631" v2="1630" v3="1399" />+                <face v1="1626" v2="1397" v3="1629" />+                <face v1="1397" v2="1626" v3="1396" />+                <face v1="1611" v2="1626" v3="1610" />+                <face v1="1544" v2="1624" v3="1543" />+                <face v1="1623" v2="1620" v3="817" />+                <face v1="1263" v2="815" v3="1366" />+                <face v1="816" v2="815" v3="1263" />+                <face v1="1116" v2="459" v3="458" />+                <face v1="349" v2="459" v3="1116" />+                <face v1="805" v2="1619" v3="471" />+                <face v1="1619" v2="805" v3="806" />+                <face v1="806" v2="805" v3="1615" />+                <face v1="620" v2="887" v3="1559" />+                <face v1="798" v2="621" v3="1559" />+                <face v1="798" v2="472" v3="621" />+                <face v1="1551" v2="471" v3="829" />+                <face v1="1551" v2="1613" v3="471" />+                <face v1="1548" v2="1614" v3="1549" />+                <face v1="1548" v2="1268" v3="1614" />+                <face v1="529" v2="790" v3="532" />+                <face v1="790" v2="529" v3="787" />+                <face v1="783" v2="751" v3="576" />+                <face v1="1601" v2="903" v3="573" />+                <face v1="1601" v2="1525" v3="903" />+                <face v1="911" v2="908" v3="907" />+                <face v1="742" v2="777" v3="754" />+                <face v1="1609" v2="741" v3="1522" />+                <face v1="1609" v2="778" v3="741" />+                <face v1="1602" v2="911" v3="1528" />+                <face v1="795" v2="771" v3="510" />+                <face v1="795" v2="678" v3="771" />+                <face v1="508" v2="507" v3="678" />+                <face v1="837" v2="898" v3="916" />+                <face v1="916" v2="588" v3="766" />+                <face v1="760" v2="788" v3="766" />+                <face v1="531" v2="529" v3="532" />+                <face v1="579" v2="483" v3="1537" />+                <face v1="488" v2="1537" v3="483" />+                <face v1="488" v2="760" v3="1537" />+                <face v1="559" v2="757" v3="1521" />+                <face v1="783" v2="906" v3="752" />+                <face v1="783" v2="1526" v3="906" />+                <face v1="571" v2="750" v3="749" />+                <face v1="1603" v2="747" v3="568" />+                <face v1="748" v2="747" v3="1603" />+                <face v1="565" v2="1532" v3="561" />+                <face v1="1532" v2="565" v3="745" />+                <face v1="907" v2="1523" v3="1532" />+                <face v1="1609" v2="910" v3="1520" />+                <face v1="910" v2="1609" v3="908" />+                <face v1="909" v2="1602" v3="1521" />+                <face v1="911" v2="1602" v3="909" />+                <face v1="1525" v2="1527" v3="575" />+                <face v1="786" v2="751" v3="577" />+                <face v1="757" v2="777" v3="778" />+                <face v1="757" v2="756" v3="777" />+                <face v1="741" v2="742" v3="740" />+                <face v1="560" v2="739" v3="566" />+                <face v1="550" v2="735" v3="734" />+                <face v1="735" v2="550" v3="569" />+                <face v1="745" v2="1603" v3="749" />+                <face v1="573" v2="894" v3="556" />+                <face v1="590" v2="894" v3="573" />+                <face v1="605" v2="606" v3="894" />+                <face v1="605" v2="1540" v3="606" />+                <face v1="727" v2="837" v3="728" />+                <face v1="720" v2="894" v3="607" />+                <face v1="923" v2="922" v3="666" />+                <face v1="1519" v2="924" v3="913" />+                <face v1="924" v2="1600" v3="913" />+                <face v1="1485" v2="685" v3="931" />+                <face v1="943" v2="715" v3="1464" />+                <face v1="934" v2="1336" v3="935" />+                <face v1="1336" v2="934" v3="1337" />+                <face v1="943" v2="1464" v3="945" />+                <face v1="939" v2="704" v3="715" />+                <face v1="702" v2="704" v3="939" />+                <face v1="713" v2="938" v3="715" />+                <face v1="709" v2="938" v3="713" />+                <face v1="708" v2="935" v3="937" />+                <face v1="705" v2="935" v3="708" />+                <face v1="1608" v2="497" v3="1597" />+                <face v1="1595" v2="1591" v3="769" />+                <face v1="1589" v2="1591" v3="1595" />+                <face v1="1588" v2="684" v3="866" />+                <face v1="1588" v2="695" v3="506" />+                <face v1="859" v2="1485" v3="693" />+                <face v1="859" v2="685" v3="1485" />+                <face v1="688" v2="693" v3="686" />+                <face v1="1482" v2="675" v3="865" />+                <face v1="1482" v2="1481" v3="675" />+                <face v1="666" v2="876" v3="691" />+                <face v1="876" v2="666" v3="1479" />+                <face v1="1503" v2="670" v3="795" />+                <face v1="458" v2="856" v3="855" />+                <face v1="458" v2="460" v3="856" />+                <face v1="1463" v2="670" v3="1503" />+                <face v1="1463" v2="942" v3="670" />+                <face v1="674" v2="681" v3="680" />+                <face v1="674" v2="673" v3="681" />+                <face v1="505" v2="670" v3="503" />+                <face v1="507" v2="510" v3="771" />+                <face v1="507" v2="509" v3="510" />+                <face v1="865" v2="676" v3="864" />+                <face v1="865" v2="675" v3="676" />+                <face v1="1471" v2="1598" v3="1475" />+                <face v1="1206" v2="39" v3="1471" />+                <face v1="39" v2="1206" v3="41" />+                <face v1="854" v2="1503" v3="463" />+                <face v1="1503" v2="854" v3="1463" />+                <face v1="490" v2="1472" v3="491" />+                <face v1="492" v2="1472" v3="1486" />+                <face v1="1485" v2="871" v3="660" />+                <face v1="693" v2="1485" v3="656" />+                <face v1="824" v2="1582" v3="488" />+                <face v1="645" v2="1582" v3="643" />+                <face v1="1311" v2="1581" v3="878" />+                <face v1="643" v2="1428" v3="427" />+                <face v1="1581" v2="637" v3="1430" />+                <face v1="1428" v2="1436" v3="424" />+                <face v1="1428" v2="1431" v3="1436" />+                <face v1="634" v2="425" v3="1417" />+                <face v1="642" v2="425" v3="634" />+                <face v1="1417" v2="1414" v3="884" />+                <face v1="1639" v2="1573" v3="1632" />+                <face v1="1639" v2="1298" v3="1573" />+                <face v1="1413" v2="1436" v3="1433" />+                <face v1="1435" v2="1575" v3="1569" />+                <face v1="884" v2="1414" v3="1568" />+                <face v1="1294" v2="1565" v3="1573" />+                <face v1="1437" v2="1564" v3="1413" />+                <face v1="1563" v2="884" v3="1568" />+                <face v1="884" v2="1563" v3="477" />+                <face v1="1562" v2="1439" v3="1569" />+                <face v1="1439" v2="1562" v3="1443" />+                <face v1="1409" v2="1563" v3="1568" />+                <face v1="1563" v2="1409" v3="477" />+                <face v1="1566" v2="1285" v3="1561" />+                <face v1="1566" v2="1286" v3="1285" />+                <face v1="1410" v2="1441" v3="1442" />+                <face v1="1407" v2="1441" v3="1410" />+                <face v1="1406" v2="478" v3="1408" />+                <face v1="478" v2="1406" v3="434" />+                <face v1="1404" v2="441" v3="953" />+                <face v1="1404" v2="1560" v3="441" />+                <face v1="886" v2="453" v3="812" />+                <face v1="1558" v2="886" v3="812" />+                <face v1="1557" v2="812" v3="1444" />+                <face v1="1558" v2="812" v3="1557" />+                <face v1="1447" v2="634" v3="954" />+                <face v1="1445" v2="634" v3="1447" />+                <face v1="1559" v2="1557" v3="888" />+                <face v1="954" v2="446" v3="1447" />+                <face v1="954" v2="1420" v3="446" />+                <face v1="1420" v2="433" v3="446" />+                <face v1="798" v2="1556" v3="797" />+                <face v1="798" v2="888" v3="1556" />+                <face v1="1556" v2="444" v3="1552" />+                <face v1="1552" v2="444" v3="447" />+                <face v1="805" v2="471" v3="1613" />+                <face v1="952" v2="1552" v3="447" />+                <face v1="1552" v2="952" v3="1550" />+                <face v1="805" v2="1613" v3="1614" />+                <face v1="1550" v2="952" v3="1271" />+                <face v1="805" v2="1268" v3="236" />+                <face v1="805" v2="1614" v3="1268" />+                <face v1="1271" v2="952" v3="1272" />+                <face v1="1544" v2="831" v3="1610" />+                <face v1="831" v2="1544" v3="466" />+                <face v1="1543" v2="1623" v3="1386" />+                <face v1="1116" v2="816" v3="1263" />+                <face v1="606" v2="719" v3="607" />+                <face v1="846" v2="719" v3="606" />+                <face v1="1540" v2="573" v3="550" />+                <face v1="605" v2="573" v3="1540" />+                <face v1="837" v2="731" v3="900" />+                <face v1="766" v2="583" v3="585" />+                <face v1="585" v2="582" v3="580" />+                <face v1="1508" v2="731" v3="837" />+                <face v1="917" v2="731" v3="1510" />+                <face v1="786" v2="553" v3="555" />+                <face v1="577" v2="553" v3="786" />+                <face v1="745" v2="749" v3="1532" />+                <face v1="576" v2="1526" v3="783" />+                <face v1="1527" v2="1526" v3="576" />+                <face v1="747" v2="569" v3="568" />+                <face v1="747" v2="735" v3="569" />+                <face v1="733" v2="564" v3="567" />+                <face v1="564" v2="733" v3="746" />+                <face v1="1520" v2="778" v3="1609" />+                <face v1="778" v2="1520" v3="757" />+                <face v1="553" v2="550" v3="554" />+                <face v1="578" v2="550" v3="553" />+                <face v1="550" v2="578" v3="552" />+                <face v1="530" v2="742" v3="754" />+                <face v1="547" v2="558" v3="539" />+                <face v1="547" v2="559" v3="558" />+                <face v1="539" v2="913" v3="1600" />+                <face v1="1600" v2="543" v3="539" />+                <face v1="737" v2="789" v3="1515" />+                <face v1="532" v2="534" v3="533" />+                <face v1="760" v2="787" v3="788" />+                <face v1="760" v2="759" v3="787" />+                <face v1="916" v2="728" v3="837" />+                <face v1="916" v2="531" v3="728" />+                <face v1="543" v2="1511" v3="727" />+                <face v1="1510" v2="924" v3="917" />+                <face v1="1386" v2="466" v3="520" />+                <face v1="466" v2="1386" v3="463" />+                <face v1="1471" v2="1500" v3="1598" />+                <face v1="1500" v2="1496" v3="516" />+                <face v1="1500" v2="1499" v3="1496" />+                <face v1="1194" v2="1496" v3="1224" />+                <face v1="1194" v2="481" v3="1496" />+                <face v1="516" v2="762" v3="923" />+                <face v1="682" v2="684" v3="1588" />+                <face v1="1588" v2="1591" v3="682" />+                <face v1="1591" v2="1588" v3="769" />+                <face v1="769" v2="1588" v3="506" />+                <face v1="656" v2="1489" v3="494" />+                <face v1="656" v2="660" v3="1489" />+                <face v1="490" v2="1206" v3="1472" />+                <face v1="1206" v2="490" v3="1185" />+                <face v1="871" v2="699" v3="674" />+                <face v1="1481" v2="874" v3="1478" />+                <face v1="1481" v2="653" v3="874" />+                <face v1="824" v2="483" v3="56" />+                <face v1="483" v2="484" v3="1193" />+                <face v1="1193" v2="481" v3="1194" />+                <face v1="887" v2="619" v3="832" />+                <face v1="887" v2="620" v3="619" />+                <face v1="1185" v2="664" v3="1186" />+                <face v1="664" v2="1185" v3="490" />+                <face v1="39" v2="1183" v3="1499" />+                <face v1="466" v2="467" v3="523" />+                <face v1="463" v2="1386" v3="855" />+                <face v1="467" v2="614" v3="523" />+                <face v1="817" v2="1386" v3="1623" />+                <face v1="1386" v2="817" v3="1392" />+                <face v1="725" v2="466" v3="721" />+                <face v1="952" v2="423" v3="1451" />+                <face v1="446" v2="444" v3="1449" />+                <face v1="1449" v2="1445" v3="1447" />+                <face v1="1449" v2="1444" v3="1445" />+                <face v1="422" v2="617" v3="821" />+                <face v1="881" v2="1442" v3="879" />+                <face v1="1560" v2="1442" v3="881" />+                <face v1="1441" v2="1439" v3="1443" />+                <face v1="1441" v2="1437" v3="1439" />+                <face v1="1435" v2="1437" v3="1433" />+                <face v1="1436" v2="637" v3="638" />+                <face v1="1436" v2="1431" v3="637" />+                <face v1="1428" v2="1430" v3="637" />+                <face v1="643" v2="824" v3="878" />+                <face v1="433" v2="431" v3="436" />+                <face v1="441" v2="422" v3="953" />+                <face v1="440" v2="422" v3="441" />+                <face v1="1420" v2="431" v3="433" />+                <face v1="1420" v2="630" v3="431" />+                <face v1="441" v2="881" v3="442" />+                <face v1="1560" v2="881" v3="441" />+                <face v1="1417" v2="424" v3="1436" />+                <face v1="1436" v2="1413" v3="1414" />+                <face v1="1413" v2="1564" v3="1568" />+                <face v1="1409" v2="1564" v3="1407" />+                <face v1="1568" v2="1564" v3="1409" />+                <face v1="1406" v2="1410" v3="1404" />+                <face v1="1408" v2="1410" v3="1406" />+                <face v1="953" v2="421" v3="1405" />+                <face v1="953" v2="422" v3="421" />+                <face v1="1403" v2="719" v3="454" />+                <face v1="1403" v2="725" v3="719" />+                <face v1="719" v2="611" v3="454" />+                <face v1="626" v2="614" v3="457" />+                <face v1="627" v2="419" v3="626" />+                <face v1="831" v2="615" v3="1398" />+                <face v1="1399" v2="1397" v3="831" />+                <face v1="831" v2="1396" v3="1611" />+                <face v1="1386" v2="1392" v3="458" />+                <face v1="466" v2="1543" v3="520" />+                <face v1="1102" v2="1633" v3="1381" />+                <face v1="1308" v2="1581" v3="288" />+                <face v1="1302" v2="1304" v3="1308" />+                <face v1="1297" v2="1298" v3="1300" />+                <face v1="1289" v2="1291" v3="1298" />+                <face v1="1288" v2="1285" v3="1284" />+                <face v1="279" v2="1285" v3="1288" />+                <face v1="1060" v2="1123" v3="1377" />+                <face v1="1123" v2="1060" v3="1059" />+                <face v1="1376" v2="1122" v3="1121" />+                <face v1="1376" v2="1378" v3="1122" />+                <face v1="1371" v2="1266" v3="1265" />+                <face v1="1371" v2="1373" v3="1266" />+                <face v1="1368" v2="1264" v3="1173" />+                <face v1="1368" v2="1371" v3="1264" />+                <face v1="960" v2="1111" v3="963" />+                <face v1="252" v2="1365" v3="1189" />+                <face v1="1365" v2="252" v3="398" />+                <face v1="409" v2="1363" v3="410" />+                <face v1="409" v2="1364" v3="1363" />+                <face v1="408" v2="236" v3="242" />+                <face v1="1362" v2="236" v3="408" />+                <face v1="236" v2="1361" v3="1360" />+                <face v1="407" v2="253" v3="1358" />+                <face v1="407" v2="254" v3="253" />+                <face v1="404" v2="1087" v3="241" />+                <face v1="248" v2="1087" v3="404" />+                <face v1="1278" v2="243" v3="237" />+                <face v1="237" v2="1355" v3="1356" />+                <face v1="237" v2="1275" v3="1355" />+                <face v1="1266" v2="1121" v3="132" />+                <face v1="196" v2="1249" v3="194" />+                <face v1="186" v2="1351" v3="366" />+                <face v1="1348" v2="1350" v3="1344" />+                <face v1="1348" v2="1343" v3="1350" />+                <face v1="382" v2="111" v3="1216" />+                <face v1="111" v2="382" v3="1329" />+                <face v1="111" v2="1333" v3="1216" />+                <face v1="111" v2="1330" v3="1333" />+                <face v1="146" v2="24" v3="21" />+                <face v1="1075" v2="393" v3="139" />+                <face v1="145" v2="225" v3="293" />+                <face v1="225" v2="145" v3="375" />+                <face v1="56" v2="53" v3="991" />+                <face v1="375" v2="223" v3="225" />+                <face v1="375" v2="1242" v3="223" />+                <face v1="157" v2="154" v3="356" />+                <face v1="189" v2="1350" v3="1248" />+                <face v1="187" v2="1350" v3="189" />+                <face v1="1070" v2="997" v3="1071" />+                <face v1="997" v2="1070" v3="1341" />+                <face v1="367" v2="369" v3="182" />+                <face v1="1252" v2="181" v3="188" />+                <face v1="186" v2="1246" v3="1351" />+                <face v1="188" v2="1246" v3="186" />+                <face v1="1345" v2="184" v3="365" />+                <face v1="184" v2="1345" v3="185" />+                <face v1="1250" v2="194" v3="1249" />+                <face v1="360" v2="362" v3="198" />+                <face v1="362" v2="982" v3="1069" />+                <face v1="362" v2="361" v3="982" />+                <face v1="999" v2="367" v3="1341" />+                <face v1="1344" v2="1345" v3="1348" />+                <face v1="353" v2="1260" v3="1262" />+                <face v1="353" v2="352" v3="1260" />+                <face v1="1239" v2="1005" v3="381" />+                <face v1="320" v2="119" v3="321" />+                <face v1="138" v2="1635" v3="1340" />+                <face v1="138" v2="137" v3="1635" />+                <face v1="149" v2="1239" v3="1236" />+                <face v1="310" v2="1636" v3="89" />+                <face v1="1636" v2="310" v3="1322" />+                <face v1="299" v2="104" v3="1212" />+                <face v1="104" v2="299" v3="1320" />+                <face v1="299" v2="89" v3="1636" />+                <face v1="1227" v2="1322" v3="310" />+                <face v1="1227" v2="1228" v3="1322" />+                <face v1="76" v2="1335" v3="84" />+                <face v1="1336" v2="80" v3="86" />+                <face v1="348" v2="81" v3="1337" />+                <face v1="63" v2="109" v3="1034" />+                <face v1="66" v2="69" v3="63" />+                <face v1="331" v2="74" v3="332" />+                <face v1="78" v2="338" v3="76" />+                <face v1="338" v2="78" v3="335" />+                <face v1="44" v2="80" v3="82" />+                <face v1="1016" v2="1082" v3="1332" />+                <face v1="1217" v2="1330" v3="111" />+                <face v1="330" v2="1331" v3="1217" />+                <face v1="1331" v2="330" v3="329" />+                <face v1="1027" v2="317" v3="90" />+                <face v1="1214" v2="108" v3="1081" />+                <face v1="1214" v2="1023" v3="108" />+                <face v1="1204" v2="1030" v3="1032" />+                <face v1="1204" v2="1203" v3="1030" />+                <face v1="298" v2="1327" v3="89" />+                <face v1="298" v2="105" v3="1327" />+                <face v1="319" v2="1025" v3="320" />+                <face v1="319" v2="1026" v3="1025" />+                <face v1="1033" v2="1018" v3="1017" />+                <face v1="1033" v2="327" v3="1018" />+                <face v1="1033" v2="109" v3="327" />+                <face v1="70" v2="1035" v3="71" />+                <face v1="109" v2="63" v3="110" />+                <face v1="1080" v2="1323" v3="1325" />+                <face v1="314" v2="1323" v3="117" />+                <face v1="45" v2="341" v3="43" />+                <face v1="45" v2="340" v3="341" />+                <face v1="1320" v2="1636" v3="1207" />+                <face v1="299" v2="1636" v3="1320" />+                <face v1="1209" v2="324" v3="1036" />+                <face v1="105" v2="301" v3="1327" />+                <face v1="993" v2="53" v3="50" />+                <face v1="53" v2="993" v3="992" />+                <face v1="293" v2="224" v3="292" />+                <face v1="225" v2="224" v3="293" />+                <face v1="292" v2="1313" v3="21" />+                <face v1="1041" v2="1313" v3="292" />+                <face v1="288" v2="1311" v3="289" />+                <face v1="1042" v2="289" v3="1313" />+                <face v1="1042" v2="288" v3="289" />+                <face v1="288" v2="1146" v3="1308" />+                <face v1="282" v2="1147" v3="283" />+                <face v1="1149" v2="1308" v3="1148" />+                <face v1="1149" v2="1302" v3="1308" />+                <face v1="1138" v2="282" v3="1043" />+                <face v1="1153" v2="1297" v3="1151" />+                <face v1="11" v2="272" v3="1133" />+                <face v1="272" v2="11" v3="270" />+                <face v1="1155" v2="1289" v3="1153" />+                <face v1="1291" v2="1286" v3="1294" />+                <face v1="1284" v2="1286" v3="1291" />+                <face v1="1132" v2="1158" v3="1130" />+                <face v1="1132" v2="1156" v3="1158" />+                <face v1="1157" v2="279" v3="1288" />+                <face v1="280" v2="279" v3="1157" />+                <face v1="274" v2="883" v3="1285" />+                <face v1="1128" v2="1159" v3="1127" />+                <face v1="1128" v2="1140" v3="1159" />+                <face v1="281" v2="17" v3="14" />+                <face v1="281" v2="278" v3="17" />+                <face v1="266" v2="272" v3="268" />+                <face v1="411" v2="413" v3="406" />+                <face v1="413" v2="411" v3="6" />+                <face v1="406" v2="413" v3="254" />+                <face v1="1056" v2="1358" v3="1282" />+                <face v1="1358" v2="1056" v3="407" />+                <face v1="1160" v2="297" v3="296" />+                <face v1="1160" v2="12" v3="297" />+                <face v1="1282" v2="1087" v3="1281" />+                <face v1="1358" v2="1087" v3="1282" />+                <face v1="1161" v2="1281" v3="249" />+                <face v1="1161" v2="1163" v3="1281" />+                <face v1="970" v2="1364" v3="1087" />+                <face v1="1364" v2="970" v3="1189" />+                <face v1="1087" v2="1364" v3="409" />+                <face v1="249" v2="1092" v3="1161" />+                <face v1="1280" v2="1092" v3="249" />+                <face v1="26" v2="245" v3="1162" />+                <face v1="1280" v2="404" v3="1278" />+                <face v1="26" v2="1057" v3="245" />+                <face v1="1356" v2="1277" v3="1278" />+                <face v1="1356" v2="1276" v3="1277" />+                <face v1="1355" v2="1276" v3="1356" />+                <face v1="1355" v2="1271" v3="1276" />+                <face v1="1548" v2="1271" v3="1355" />+                <face v1="1451" v2="1421" v3="959" />+                <face v1="1264" v2="1265" v3="36" />+                <face v1="407" v2="1091" v3="412" />+                <face v1="352" v2="1091" v3="228" />+                <face v1="1012" v2="212" v3="121" />+                <face v1="212" v2="1012" v3="1262" />+                <face v1="352" v2="218" v3="1260" />+                <face v1="1635" v2="172" v3="1340" />+                <face v1="1635" v2="119" v3="172" />+                <face v1="203" v2="201" v3="139" />+                <face v1="56" v2="202" v3="1065" />+                <face v1="1236" v2="381" v3="201" />+                <face v1="188" v2="997" v3="1252" />+                <face v1="188" v2="976" v3="997" />+                <face v1="187" v2="188" v3="186" />+                <face v1="187" v2="189" v3="188" />+                <face v1="1248" v2="1343" v3="1250" />+                <face v1="1248" v2="1350" v3="1343" />+                <face v1="975" v2="198" v3="996" />+                <face v1="198" v2="975" v3="196" />+                <face v1="368" v2="1002" v3="363" />+                <face v1="998" v2="1002" v3="368" />+                <face v1="1351" v2="1000" v3="979" />+                <face v1="1351" v2="1246" v3="1000" />+                <face v1="1345" v2="365" v3="995" />+                <face v1="172" v2="176" v3="1340" />+                <face v1="162" v2="161" v3="1073" />+                <face v1="357" v2="980" v3="356" />+                <face v1="148" v2="149" v3="177" />+                <face v1="1006" v2="162" v3="1074" />+                <face v1="162" v2="1006" v3="157" />+                <face v1="989" v2="1004" v3="1006" />+                <face v1="376" v2="1242" v3="375" />+                <face v1="1242" v2="376" v3="395" />+                <face v1="139" v2="381" v3="1004" />+                <face v1="381" v2="1236" v3="1239" />+                <face v1="46" v2="138" v3="1236" />+                <face v1="1635" v2="137" v3="1031" />+                <face v1="1008" v2="1231" v3="34" />+                <face v1="1183" v2="39" v3="1227" />+                <face v1="1224" v2="1183" v3="1222" />+                <face v1="1079" v2="1192" v3="1222" />+                <face v1="119" v2="1635" v3="1031" />+                <face v1="117" v2="323" v3="314" />+                <face v1="117" v2="116" v3="323" />+                <face v1="1028" v2="1220" v3="972" />+                <face v1="1029" v2="1220" v3="1028" />+                <face v1="1021" v2="1323" v3="317" />+                <face v1="1323" v2="1329" v3="1325" />+                <face v1="1329" v2="1323" v3="1021" />+                <face v1="384" v2="1325" v3="1329" />+                <face v1="384" v2="985" v3="1325" />+                <face v1="1081" v2="986" v3="384" />+                <face v1="1081" v2="1028" v3="986" />+                <face v1="1212" v2="298" v3="299" />+                <face v1="1212" v2="105" v3="298" />+                <face v1="104" v2="1320" v3="1083" />+                <face v1="100" v2="104" v3="1083" />+                <face v1="98" v2="303" v3="1186" />+                <face v1="97" v2="1033" v3="307" />+                <face v1="1033" v2="97" v3="96" />+                <face v1="1038" v2="93" v3="385" />+                <face v1="1038" v2="1017" v3="93" />+                <face v1="328" v2="324" v3="91" />+                <face v1="1203" v2="1026" v3="319" />+                <face v1="1203" v2="300" v3="1026" />+                <face v1="1327" v2="1204" v3="1024" />+                <face v1="301" v2="1204" v3="1327" />+                <face v1="1322" v2="1207" v3="1636" />+                <face v1="1201" v2="1207" v3="1322" />+                <face v1="1207" v2="1201" v3="1206" />+                <face v1="81" v2="339" v3="82" />+                <face v1="81" v2="348" v3="339" />+                <face v1="86" v2="80" v3="78" />+                <face v1="345" v2="1335" v3="76" />+                <face v1="62" v2="85" v3="60" />+                <face v1="60" v2="1034" v3="61" />+                <face v1="60" v2="66" v3="1034" />+                <face v1="53" v2="56" v3="1193" />+                <face v1="1079" v2="53" v3="52" />+                <face v1="1085" v2="1194" v3="1192" />+                <face v1="50" v2="991" v3="993" />+                <face v1="991" v2="50" v3="46" />+                <face v1="266" v2="1129" v3="1131" />+                <face v1="1050" v2="1129" v3="266" />+                <face v1="84" v2="66" v3="60" />+                <face v1="66" v2="84" v3="1335" />+                <face v1="70" v2="72" v3="1084" />+                <face v1="70" v2="69" v3="72" />+                <face v1="1079" v2="1227" v3="124" />+                <face v1="340" v2="1090" v3="1107" />+                <face v1="1116" v2="963" v3="1111" />+                <face v1="1272" v2="1451" v3="29" />+                <face v1="1163" v2="296" v3="965" />+                <face v1="1160" v2="296" v3="1163" />+                <face v1="280" v2="1156" v3="1159" />+                <face v1="280" v2="1157" v3="1156" />+                <face v1="1153" v2="1158" v3="1155" />+                <face v1="1151" v2="1047" v3="1153" />+                <face v1="1148" v2="1152" v3="1149" />+                <face v1="1148" v2="1147" v3="1152" />+                <face v1="1146" v2="288" v3="1147" />+                <face v1="1421" v2="275" v3="959" />+                <face v1="273" v2="275" v3="1421" />+                <face v1="1058" v2="1052" v3="263" />+                <face v1="1052" v2="1058" v3="10" />+                <face v1="271" v2="13" v3="245" />+                <face v1="271" v2="11" v3="13" />+                <face v1="19" v2="1451" v3="959" />+                <face v1="19" v2="9" v3="1451" />+                <face v1="1135" v2="1152" v3="1138" />+                <face v1="1133" v2="1046" v3="1135" />+                <face v1="1129" v2="1132" v3="1131" />+                <face v1="1129" v2="1127" v3="1132" />+                <face v1="1052" v2="1128" v3="1053" />+                <face v1="1052" v2="18" v3="1128" />+                <face v1="1008" v2="34" v3="31" />+                <face v1="353" v2="1008" v3="1091" />+                <face v1="31" v2="1091" v3="1008" />+                <face v1="1" v2="6" v3="34" />+                <face v1="1" v2="5" v3="6" />+                <face v1="1" v2="1640" v3="5" />+                <face v1="1059" v2="0" v3="399" />+                <face v1="1123" v2="399" v3="1122" />+                <face v1="1111" v2="1090" v3="1116" />+                <face v1="1076" v2="1107" v3="1264" />+                <face v1="1099" v2="1379" v3="1641" />+                <face v1="1099" v2="1102" v3="1379" />+            </lodfacelist>+            <lodfacelist submeshindex="2" numfaces="226">+                <face v1="4" v2="5" v3="9" />+                <face v1="4" v2="7" v3="5" />+                <face v1="12" v2="13" v3="14" />+                <face v1="12" v2="15" v3="13" />+                <face v1="16" v2="14" v3="18" />+                <face v1="16" v2="12" v3="14" />+                <face v1="20" v2="21" v3="22" />+                <face v1="20" v2="23" v3="21" />+                <face v1="24" v2="20" v3="22" />+                <face v1="24" v2="27" v3="20" />+                <face v1="28" v2="27" v3="30" />+                <face v1="28" v2="31" v3="27" />+                <face v1="32" v2="33" v3="34" />+                <face v1="32" v2="35" v3="33" />+                <face v1="36" v2="39" v3="32" />+                <face v1="40" v2="41" v3="42" />+                <face v1="40" v2="43" v3="41" />+                <face v1="44" v2="45" v3="46" />+                <face v1="52" v2="53" v3="54" />+                <face v1="52" v2="55" v3="53" />+                <face v1="12" v2="59" v3="57" />+                <face v1="60" v2="83" v3="62" />+                <face v1="60" v2="57" v3="83" />+                <face v1="64" v2="62" v3="66" />+                <face v1="64" v2="60" v3="62" />+                <face v1="68" v2="69" v3="70" />+                <face v1="68" v2="71" v3="69" />+                <face v1="72" v2="68" v3="70" />+                <face v1="11" v2="60" v3="64" />+                <face v1="15" v2="57" v3="60" />+                <face v1="57" v2="15" v3="12" />+                <face v1="59" v2="12" v3="16" />+                <face v1="20" v2="55" v3="23" />+                <face v1="53" v2="55" v3="20" />+                <face v1="27" v2="49" v3="20" />+                <face v1="45" v2="27" v3="31" />+                <face v1="35" v2="43" v3="33" />+                <face v1="41" v2="43" v3="35" />+                <face v1="68" v2="72" v3="5" />+                <face v1="7" v2="71" v3="68" />+                <face v1="71" v2="7" v3="4" />+                <face v1="81" v2="52" v3="54" />+                <face v1="57" v2="81" v3="83" />+                <face v1="66" v2="83" v3="87" />+                <face v1="66" v2="62" v3="83" />+                <face v1="90" v2="69" v3="87" />+                <face v1="90" v2="70" v3="69" />+                <face v1="42" v2="78" v3="90" />+                <face v1="40" v2="42" v3="96" />+                <face v1="44" v2="46" v3="96" />+                <face v1="102" v2="13" v3="9" />+                <face v1="21" v2="18" v3="102" />+                <face v1="30" v2="24" v3="106" />+                <face v1="111" v2="34" v3="28" />+                <face v1="115" v2="32" v3="113" />+                <face v1="5" v2="36" v3="115" />+                <face v1="5" v2="115" v3="119" />+                <face v1="120" v2="121" v3="122" />+                <face v1="124" v2="125" v3="126" />+                <face v1="124" v2="127" v3="125" />+                <face v1="128" v2="131" v3="133" />+                <face v1="136" v2="139" v3="138" />+                <face v1="106" v2="143" v3="141" />+                <face v1="102" v2="143" v3="106" />+                <face v1="144" v2="102" v3="145" />+                <face v1="145" v2="102" v3="147" />+                <face v1="147" v2="119" v3="149" />+                <face v1="119" v2="147" v3="102" />+                <face v1="83" v2="152" v3="151" />+                <face v1="83" v2="154" v3="152" />+                <face v1="156" v2="81" v3="158" />+                <face v1="158" v2="81" v3="196" />+                <face v1="143" v2="121" v3="141" />+                <face v1="143" v2="124" v3="122" />+                <face v1="127" v2="145" v3="131" />+                <face v1="145" v2="127" v3="144" />+                <face v1="131" v2="147" v3="134" />+                <face v1="147" v2="131" v3="145" />+                <face v1="134" v2="149" v3="139" />+                <face v1="149" v2="134" v3="147" />+                <face v1="138" v2="151" v3="136" />+                <face v1="152" v2="133" v3="151" />+                <face v1="133" v2="154" v3="128" />+                <face v1="154" v2="133" v3="152" />+                <face v1="125" v2="158" v3="126" />+                <face v1="158" v2="125" v3="156" />+                <face v1="196" v2="120" v3="158" />+                <face v1="161" v2="162" v3="163" />+                <face v1="165" v2="166" v3="167" />+                <face v1="168" v2="166" v3="165" />+                <face v1="170" v2="171" v3="168" />+                <face v1="171" v2="174" v3="175" />+                <face v1="174" v2="171" v3="170" />+                <face v1="139" v2="177" v3="178" />+                <face v1="177" v2="139" v3="149" />+                <face v1="178" v2="181" v3="182" />+                <face v1="181" v2="178" v3="177" />+                <face v1="184" v2="185" v3="186" />+                <face v1="185" v2="184" v3="181" />+                <face v1="188" v2="192" v3="190" />+                <face v1="192" v2="188" v3="191" />+                <face v1="192" v2="193" v3="194" />+                <face v1="141" v2="193" v3="192" />+                <face v1="196" v2="163" v3="198" />+                <face v1="161" v2="163" v3="196" />+                <face v1="96" v2="168" v3="165" />+                <face v1="90" v2="168" v3="96" />+                <face v1="168" v2="90" v3="170" />+                <face v1="170" v2="90" v3="174" />+                <face v1="119" v2="177" v3="149" />+                <face v1="115" v2="181" v3="177" />+                <face v1="181" v2="115" v3="185" />+                <face v1="191" v2="111" v3="192" />+                <face v1="111" v2="191" v3="113" />+                <face v1="111" v2="141" v3="192" />+                <face v1="106" v2="141" v3="111" />+                <face v1="81" v2="161" v3="196" />+                <face v1="96" v2="161" v3="81" />+                <face v1="171" v2="175" v3="178" />+                <face v1="171" v2="182" v3="184" />+                <face v1="167" v2="186" v3="188" />+                <face v1="167" v2="166" v3="186" />+                <face v1="163" v2="190" v3="194" />+                <face v1="163" v2="162" v3="190" />+                <face v1="193" v2="198" v3="163" />+                <face v1="198" v2="193" v3="121" />+                <face v1="163" v2="194" v3="193" />+                <face v1="188" v2="162" v3="167" />+                <face v1="162" v2="188" v3="190" />+                <face v1="171" v2="186" v3="166" />+                <face v1="171" v2="184" v3="186" />+                <face v1="182" v2="171" v3="178" />+                <face v1="138" v2="178" v3="175" />+                <face v1="138" v2="139" v3="178" />+                <face v1="185" v2="113" v3="191" />+                <face v1="113" v2="185" v3="115" />+                <face v1="115" v2="177" v3="119" />+                <face v1="174" v2="87" v3="151" />+                <face v1="87" v2="174" v3="90" />+                <face v1="96" v2="165" v3="161" />+                <face v1="141" v2="121" v3="193" />+                <face v1="192" v2="194" v3="190" />+                <face v1="186" v2="191" v3="188" />+                <face v1="191" v2="186" v3="185" />+                <face v1="182" v2="181" v3="184" />+                <face v1="175" v2="151" v3="138" />+                <face v1="151" v2="175" v3="174" />+                <face v1="168" v2="171" v3="166" />+                <face v1="161" v2="167" v3="162" />+                <face v1="165" v2="167" v3="161" />+                <face v1="158" v2="120" v3="126" />+                <face v1="128" v2="156" v3="125" />+                <face v1="156" v2="128" v3="154" />+                <face v1="136" v2="151" v3="133" />+                <face v1="143" v2="127" v3="124" />+                <face v1="144" v2="127" v3="143" />+                <face v1="143" v2="122" v3="121" />+                <face v1="196" v2="198" v3="120" />+                <face v1="154" v2="81" v3="156" />+                <face v1="81" v2="154" v3="83" />+                <face v1="83" v2="151" v3="87" />+                <face v1="102" v2="144" v3="143" />+                <face v1="133" v2="139" v3="136" />+                <face v1="134" v2="139" v3="133" />+                <face v1="131" v2="134" v3="133" />+                <face v1="125" v2="131" v3="128" />+                <face v1="127" v2="131" v3="125" />+                <face v1="126" v2="122" v3="124" />+                <face v1="122" v2="126" v3="120" />+                <face v1="121" v2="120" v3="198" />+                <face v1="9" v2="5" v3="119" />+                <face v1="115" v2="36" v3="32" />+                <face v1="113" v2="34" v3="111" />+                <face v1="113" v2="32" v3="34" />+                <face v1="111" v2="30" v3="106" />+                <face v1="111" v2="28" v3="30" />+                <face v1="24" v2="22" v3="106" />+                <face v1="22" v2="102" v3="106" />+                <face v1="22" v2="21" v3="102" />+                <face v1="18" v2="14" v3="102" />+                <face v1="102" v2="14" v3="13" />+                <face v1="9" v2="119" v3="102" />+                <face v1="81" v2="44" v3="96" />+                <face v1="81" v2="50" v3="44" />+                <face v1="46" v2="40" v3="96" />+                <face v1="42" v2="90" v3="96" />+                <face v1="90" v2="78" v3="70" />+                <face v1="69" v2="66" v3="87" />+                <face v1="81" v2="57" v3="52" />+                <face v1="81" v2="54" v3="50" />+                <face v1="68" v2="5" v3="7" />+                <face v1="39" v2="72" v3="42" />+                <face v1="72" v2="39" v3="5" />+                <face v1="41" v2="35" v3="39" />+                <face v1="45" v2="33" v3="43" />+                <face v1="45" v2="31" v3="33" />+                <face v1="49" v2="27" v3="45" />+                <face v1="53" v2="20" v3="49" />+                <face v1="59" v2="23" v3="55" />+                <face v1="59" v2="16" v3="23" />+                <face v1="60" v2="11" v3="15" />+                <face v1="64" v2="4" v3="11" />+                <face v1="64" v2="71" v3="4" />+                <face v1="78" v2="72" v3="70" />+                <face v1="78" v2="42" v3="72" />+                <face v1="71" v2="66" v3="69" />+                <face v1="71" v2="64" v3="66" />+                <face v1="57" v2="55" v3="52" />+                <face v1="57" v2="59" v3="55" />+                <face v1="54" v2="49" v3="50" />+                <face v1="54" v2="53" v3="49" />+                <face v1="50" v2="45" v3="44" />+                <face v1="50" v2="49" v3="45" />+                <face v1="46" v2="43" v3="40" />+                <face v1="46" v2="45" v3="43" />+                <face v1="41" v2="39" v3="42" />+                <face v1="32" v2="39" v3="35" />+                <face v1="34" v2="31" v3="28" />+                <face v1="34" v2="33" v3="31" />+                <face v1="30" v2="27" v3="24" />+                <face v1="21" v2="16" v3="18" />+                <face v1="21" v2="23" v3="16" />+                <face v1="15" v2="9" v3="13" />+                <face v1="15" v2="11" v3="9" />+                <face v1="11" v2="4" v3="9" />+                <face v1="5" v2="39" v3="36" />+            </lodfacelist>+            <lodfacelist submeshindex="3" numfaces="378">+                <face v1="4" v2="5" v3="2" />+                <face v1="6" v2="3" v3="2" />+                <face v1="2" v2="5" v3="6" />+                <face v1="159" v2="3" v3="6" />+                <face v1="6" v2="14" v3="159" />+                <face v1="6" v2="18" v3="17" />+                <face v1="17" v2="14" v3="6" />+                <face v1="19" v2="20" v3="21" />+                <face v1="21" v2="22" v3="19" />+                <face v1="17" v2="18" v3="21" />+                <face v1="21" v2="20" v3="17" />+                <face v1="6" v2="22" v3="21" />+                <face v1="21" v2="18" v3="6" />+                <face v1="23" v2="24" v3="25" />+                <face v1="25" v2="26" v3="23" />+                <face v1="19" v2="22" v3="25" />+                <face v1="25" v2="24" v3="19" />+                <face v1="6" v2="26" v3="25" />+                <face v1="25" v2="22" v3="6" />+                <face v1="27" v2="28" v3="29" />+                <face v1="29" v2="30" v3="27" />+                <face v1="23" v2="26" v3="29" />+                <face v1="29" v2="28" v3="23" />+                <face v1="6" v2="30" v3="29" />+                <face v1="29" v2="26" v3="6" />+                <face v1="27" v2="30" v3="33" />+                <face v1="6" v2="34" v3="33" />+                <face v1="33" v2="30" v3="6" />+                <face v1="38" v2="36" v3="37" />+                <face v1="33" v2="34" v3="37" />+                <face v1="37" v2="36" v3="33" />+                <face v1="6" v2="38" v3="37" />+                <face v1="37" v2="34" v3="6" />+                <face v1="40" v2="5" v3="4" />+                <face v1="6" v2="5" v3="40" />+                <face v1="40" v2="38" v3="6" />+                <face v1="47" v2="41" v3="43" />+                <face v1="45" v2="48" v3="49" />+                <face v1="49" v2="43" v3="45" />+                <face v1="50" v2="51" v3="49" />+                <face v1="49" v2="48" v3="50" />+                <face v1="47" v2="43" v3="49" />+                <face v1="49" v2="51" v3="47" />+                <face v1="56" v2="57" v3="54" />+                <face v1="54" v2="57" v3="58" />+                <face v1="285" v2="206" v3="54" />+                <face v1="206" v2="56" v3="54" />+                <face v1="65" v2="66" v3="63" />+                <face v1="67" v2="68" v3="65" />+                <face v1="69" v2="66" v3="65" />+                <face v1="65" v2="68" v3="69" />+                <face v1="63" v2="70" v3="71" />+                <face v1="71" v2="65" v3="63" />+                <face v1="71" v2="70" v3="73" />+                <face v1="67" v2="65" v3="71" />+                <face v1="71" v2="73" v3="67" />+                <face v1="74" v2="75" v3="76" />+                <face v1="76" v2="77" v3="74" />+                <face v1="80" v2="77" v3="76" />+                <face v1="74" v2="81" v3="82" />+                <face v1="82" v2="75" v3="74" />+                <face v1="86" v2="84" v3="82" />+                <face v1="82" v2="81" v3="86" />+                <face v1="82" v2="84" v3="75" />+                <face v1="74" v2="85" v3="86" />+                <face v1="86" v2="81" v3="74" />+                <face v1="86" v2="85" v3="87" />+                <face v1="74" v2="89" v3="90" />+                <face v1="90" v2="85" v3="74" />+                <face v1="91" v2="92" v3="90" />+                <face v1="90" v2="89" v3="91" />+                <face v1="87" v2="85" v3="90" />+                <face v1="90" v2="92" v3="87" />+                <face v1="74" v2="93" v3="94" />+                <face v1="94" v2="89" v3="74" />+                <face v1="95" v2="96" v3="94" />+                <face v1="94" v2="93" v3="95" />+                <face v1="91" v2="89" v3="94" />+                <face v1="94" v2="96" v3="91" />+                <face v1="74" v2="97" v3="98" />+                <face v1="98" v2="93" v3="74" />+                <face v1="102" v2="100" v3="98" />+                <face v1="98" v2="97" v3="102" />+                <face v1="95" v2="93" v3="98" />+                <face v1="98" v2="100" v3="95" />+                <face v1="74" v2="101" v3="102" />+                <face v1="102" v2="97" v3="74" />+                <face v1="74" v2="287" v3="101" />+                <face v1="74" v2="109" v3="287" />+                <face v1="74" v2="77" v3="113" />+                <face v1="113" v2="109" v3="74" />+                <face v1="113" v2="77" v3="80" />+                <face v1="115" v2="116" v3="117" />+                <face v1="117" v2="118" v3="115" />+                <face v1="117" v2="116" v3="119" />+                <face v1="121" v2="118" v3="117" />+                <face v1="119" v2="122" v3="123" />+                <face v1="123" v2="117" v3="119" />+                <face v1="122" v2="125" v3="123" />+                <face v1="121" v2="117" v3="123" />+                <face v1="123" v2="125" v3="121" />+                <face v1="134" v2="126" v3="132" />+                <face v1="135" v2="136" v3="134" />+                <face v1="134" v2="136" v3="126" />+                <face v1="137" v2="138" v3="139" />+                <face v1="141" v2="142" v3="139" />+                <face v1="139" v2="138" v3="141" />+                <face v1="139" v2="142" v3="143" />+                <face v1="139" v2="147" v3="137" />+                <face v1="148" v2="149" v3="150" />+                <face v1="150" v2="151" v3="148" />+                <face v1="147" v2="139" v3="150" />+                <face v1="150" v2="149" v3="147" />+                <face v1="143" v2="4" v3="150" />+                <face v1="150" v2="139" v3="143" />+                <face v1="4" v2="151" v3="150" />+                <face v1="147" v2="149" v3="154" />+                <face v1="154" v2="155" v3="147" />+                <face v1="154" v2="149" v3="148" />+                <face v1="159" v2="158" v3="154" />+                <face v1="158" v2="155" v3="154" />+                <face v1="159" v2="126" v3="158" />+                <face v1="159" v2="14" v3="162" />+                <face v1="132" v2="126" v3="159" />+                <face v1="159" v2="162" v3="132" />+                <face v1="132" v2="162" v3="322" />+                <face v1="162" v2="17" v3="322" />+                <face v1="322" v2="17" v3="166" />+                <face v1="322" v2="166" v3="20" />+                <face v1="314" v2="178" v3="310" />+                <face v1="312" v2="179" v3="314" />+                <face v1="314" v2="179" v3="178" />+                <face v1="310" v2="178" v3="181" />+                <face v1="181" v2="182" v3="310" />+                <face v1="178" v2="183" v3="181" />+                <face v1="181" v2="183" v3="184" />+                <face v1="186" v2="182" v3="181" />+                <face v1="181" v2="184" v3="186" />+                <face v1="187" v2="188" v3="189" />+                <face v1="122" v2="191" v3="189" />+                <face v1="189" v2="188" v3="122" />+                <face v1="186" v2="184" v3="189" />+                <face v1="189" v2="191" v3="186" />+                <face v1="36" v2="121" v3="125" />+                <face v1="125" v2="195" v3="36" />+                <face v1="122" v2="188" v3="125" />+                <face v1="187" v2="195" v3="125" />+                <face v1="125" v2="188" v3="187" />+                <face v1="196" v2="4" v3="143" />+                <face v1="196" v2="121" v3="36" />+                <face v1="113" v2="200" v3="109" />+                <face v1="80" v2="203" v3="113" />+                <face v1="204" v2="200" v3="113" />+                <face v1="113" v2="203" v3="204" />+                <face v1="47" v2="205" v3="206" />+                <face v1="206" v2="41" v3="47" />+                <face v1="206" v2="205" v3="56" />+                <face v1="109" v2="200" v3="208" />+                <face v1="208" v2="287" v3="109" />+                <face v1="208" v2="200" v3="204" />+                <face v1="285" v2="54" v3="218" />+                <face v1="218" v2="54" v3="58" />+                <face v1="218" v2="58" v3="221" />+                <face v1="102" v2="101" v3="285" />+                <face v1="100" v2="233" v3="95" />+                <face v1="229" v2="238" v3="236" />+                <face v1="239" v2="240" v3="236" />+                <face v1="236" v2="238" v3="239" />+                <face v1="280" v2="243" v3="244" />+                <face v1="244" v2="245" v3="280" />+                <face v1="91" v2="96" v3="244" />+                <face v1="244" v2="243" v3="91" />+                <face v1="95" v2="233" v3="244" />+                <face v1="244" v2="96" v3="95" />+                <face v1="233" v2="245" v3="244" />+                <face v1="246" v2="247" v3="240" />+                <face v1="239" v2="248" v3="246" />+                <face v1="246" v2="240" v3="239" />+                <face v1="249" v2="250" v3="246" />+                <face v1="246" v2="248" v3="249" />+                <face v1="251" v2="247" v3="246" />+                <face v1="246" v2="250" v3="251" />+                <face v1="87" v2="92" v3="252" />+                <face v1="91" v2="243" v3="252" />+                <face v1="252" v2="92" v3="91" />+                <face v1="280" v2="254" v3="252" />+                <face v1="252" v2="243" v3="280" />+                <face v1="255" v2="87" v3="252" />+                <face v1="252" v2="254" v3="255" />+                <face v1="67" v2="73" v3="256" />+                <face v1="73" v2="258" v3="256" />+                <face v1="251" v2="250" v3="256" />+                <face v1="256" v2="258" v3="251" />+                <face v1="249" v2="67" v3="256" />+                <face v1="256" v2="250" v3="249" />+                <face v1="259" v2="260" v3="86" />+                <face v1="259" v2="86" v3="87" />+                <face v1="259" v2="87" v3="255" />+                <face v1="262" v2="260" v3="259" />+                <face v1="262" v2="263" v3="84" />+                <face v1="84" v2="260" v3="262" />+                <face v1="86" v2="260" v3="84" />+                <face v1="48" v2="268" v3="50" />+                <face v1="63" v2="66" v3="48" />+                <face v1="69" v2="268" v3="48" />+                <face v1="48" v2="66" v3="69" />+                <face v1="76" v2="75" v3="84" />+                <face v1="63" v2="48" v3="272" />+                <face v1="272" v2="48" v3="45" />+                <face v1="80" v2="76" v3="272" />+                <face v1="272" v2="45" v3="80" />+                <face v1="84" v2="63" v3="272" />+                <face v1="272" v2="76" v3="84" />+                <face v1="70" v2="276" v3="73" />+                <face v1="84" v2="263" v3="70" />+                <face v1="70" v2="63" v3="84" />+                <face v1="262" v2="276" v3="70" />+                <face v1="70" v2="263" v3="262" />+                <face v1="251" v2="258" v3="277" />+                <face v1="73" v2="276" v3="277" />+                <face v1="277" v2="258" v3="73" />+                <face v1="262" v2="259" v3="277" />+                <face v1="277" v2="276" v3="262" />+                <face v1="255" v2="251" v3="277" />+                <face v1="277" v2="259" v3="255" />+                <face v1="255" v2="254" v3="279" />+                <face v1="279" v2="251" v3="255" />+                <face v1="279" v2="254" v3="280" />+                <face v1="240" v2="247" v3="279" />+                <face v1="279" v2="280" v3="240" />+                <face v1="279" v2="247" v3="251" />+                <face v1="233" v2="229" v3="245" />+                <face v1="229" v2="236" v3="245" />+                <face v1="240" v2="280" v3="245" />+                <face v1="245" v2="236" v3="240" />+                <face v1="228" v2="100" v3="221" />+                <face v1="233" v2="100" v3="228" />+                <face v1="228" v2="229" v3="233" />+                <face v1="286" v2="102" v3="285" />+                <face v1="285" v2="218" v3="286" />+                <face v1="221" v2="100" v3="286" />+                <face v1="286" v2="218" v3="221" />+                <face v1="100" v2="102" v3="286" />+                <face v1="285" v2="101" v3="287" />+                <face v1="287" v2="288" v3="206" />+                <face v1="287" v2="206" v3="285" />+                <face v1="287" v2="208" v3="289" />+                <face v1="289" v2="288" v3="287" />+                <face v1="204" v2="41" v3="289" />+                <face v1="289" v2="208" v3="204" />+                <face v1="41" v2="206" v3="289" />+                <face v1="206" v2="288" v3="289" />+                <face v1="45" v2="43" v3="291" />+                <face v1="291" v2="43" v3="41" />+                <face v1="204" v2="203" v3="291" />+                <face v1="291" v2="41" v3="204" />+                <face v1="80" v2="45" v3="291" />+                <face v1="291" v2="203" v3="80" />+                <face v1="36" v2="38" v3="40" />+                <face v1="40" v2="196" v3="36" />+                <face v1="4" v2="196" v3="40" />+                <face v1="121" v2="196" v3="118" />+                <face v1="143" v2="142" v3="118" />+                <face v1="118" v2="196" v3="143" />+                <face v1="141" v2="296" v3="118" />+                <face v1="118" v2="142" v3="141" />+                <face v1="118" v2="296" v3="115" />+                <face v1="187" v2="298" v3="36" />+                <face v1="36" v2="195" v3="187" />+                <face v1="36" v2="298" v3="33" />+                <face v1="184" v2="27" v3="300" />+                <face v1="300" v2="189" v3="184" />+                <face v1="27" v2="33" v3="300" />+                <face v1="33" v2="298" v3="300" />+                <face v1="187" v2="189" v3="300" />+                <face v1="300" v2="298" v3="187" />+                <face v1="186" v2="191" v3="301" />+                <face v1="301" v2="302" v3="186" />+                <face v1="301" v2="191" v3="122" />+                <face v1="119" v2="303" v3="301" />+                <face v1="301" v2="122" v3="119" />+                <face v1="304" v2="302" v3="301" />+                <face v1="301" v2="303" v3="304" />+                <face v1="178" v2="305" v3="306" />+                <face v1="306" v2="183" v3="178" />+                <face v1="23" v2="28" v3="306" />+                <face v1="306" v2="305" v3="23" />+                <face v1="306" v2="28" v3="27" />+                <face v1="184" v2="183" v3="306" />+                <face v1="306" v2="27" v3="184" />+                <face v1="304" v2="307" v3="308" />+                <face v1="308" v2="302" v3="304" />+                <face v1="309" v2="310" v3="308" />+                <face v1="308" v2="307" v3="309" />+                <face v1="310" v2="182" v3="308" />+                <face v1="186" v2="302" v3="308" />+                <face v1="308" v2="182" v3="186" />+                <face v1="19" v2="24" v3="311" />+                <face v1="311" v2="312" v3="19" />+                <face v1="23" v2="305" v3="311" />+                <face v1="311" v2="24" v3="23" />+                <face v1="178" v2="179" v3="311" />+                <face v1="311" v2="305" v3="178" />+                <face v1="311" v2="179" v3="312" />+                <face v1="309" v2="313" v3="314" />+                <face v1="314" v2="310" v3="309" />+                <face v1="315" v2="316" v3="314" />+                <face v1="314" v2="313" v3="315" />+                <face v1="314" v2="316" v3="312" />+                <face v1="19" v2="312" v3="20" />+                <face v1="166" v2="17" v3="20" />+                <face v1="315" v2="319" v3="20" />+                <face v1="20" v2="316" v3="315" />+                <face v1="319" v2="322" v3="20" />+                <face v1="312" v2="316" v3="20" />+                <face v1="162" v2="14" v3="17" />+                <face v1="135" v2="134" v3="325" />+                <face v1="325" v2="326" v3="135" />+                <face v1="132" v2="322" v3="325" />+                <face v1="325" v2="134" v3="132" />+                <face v1="319" v2="326" v3="325" />+                <face v1="325" v2="322" v3="319" />+                <face v1="159" v2="154" v3="329" />+                <face v1="148" v2="330" v3="329" />+                <face v1="329" v2="154" v3="148" />+                <face v1="3" v2="159" v3="329" />+                <face v1="329" v2="330" v3="3" />+                <face v1="158" v2="126" v3="331" />+                <face v1="331" v2="155" v3="158" />+                <face v1="126" v2="332" v3="331" />+                <face v1="137" v2="147" v3="331" />+                <face v1="331" v2="332" v3="137" />+                <face v1="147" v2="155" v3="331" />+                <face v1="2" v2="151" v3="4" />+                <face v1="3" v2="330" v3="2" />+                <face v1="148" v2="151" v3="2" />+                <face v1="2" v2="330" v3="148" />+                <face v1="115" v2="296" v3="334" />+                <face v1="334" v2="116" v3="115" />+                <face v1="141" v2="138" v3="334" />+                <face v1="334" v2="296" v3="141" />+                <face v1="137" v2="332" v3="334" />+                <face v1="334" v2="138" v3="137" />+                <face v1="126" v2="136" v3="334" />+                <face v1="334" v2="332" v3="126" />+                <face v1="135" v2="326" v3="334" />+                <face v1="334" v2="136" v3="135" />+                <face v1="334" v2="326" v3="319" />+                <face v1="119" v2="116" v3="334" />+                <face v1="315" v2="313" v3="336" />+                <face v1="336" v2="319" v3="315" />+                <face v1="309" v2="307" v3="336" />+                <face v1="336" v2="313" v3="309" />+                <face v1="304" v2="303" v3="336" />+                <face v1="336" v2="307" v3="304" />+                <face v1="119" v2="334" v3="336" />+                <face v1="336" v2="303" v3="119" />+                <face v1="336" v2="334" v3="319" />+                <face v1="56" v2="205" v3="337" />+                <face v1="337" v2="57" v3="56" />+                <face v1="47" v2="51" v3="337" />+                <face v1="337" v2="205" v3="47" />+                <face v1="50" v2="268" v3="337" />+                <face v1="337" v2="51" v3="50" />+                <face v1="69" v2="68" v3="337" />+                <face v1="337" v2="268" v3="69" />+                <face v1="337" v2="68" v3="67" />+                <face v1="58" v2="57" v3="337" />+                <face v1="341" v2="67" v3="249" />+                <face v1="221" v2="58" v3="341" />+                <face v1="58" v2="337" v3="341" />+                <face v1="341" v2="337" v3="67" />+                <face v1="239" v2="238" v3="341" />+                <face v1="341" v2="248" v3="239" />+                <face v1="229" v2="228" v3="341" />+                <face v1="341" v2="238" v3="229" />+                <face v1="341" v2="228" v3="221" />+                <face v1="249" v2="248" v3="341" />+            </lodfacelist>+        </lodgenerated>+        <lodgenerated value="2000">+            <lodfacelist submeshindex="0" numfaces="29">+                <face v1="4" v2="2" v3="6" />+                <face v1="24" v2="14" v3="27" />+                <face v1="27" v2="14" v3="31" />+                <face v1="18" v2="19" v3="27" />+                <face v1="29" v2="19" v3="18" />+                <face v1="33" v2="2" v3="4" />+                <face v1="4" v2="3" v3="11" />+                <face v1="6" v2="2" v3="37" />+                <face v1="41" v2="11" v3="42" />+                <face v1="42" v2="37" v3="44" />+                <face v1="37" v2="42" v3="45" />+                <face v1="4" v2="6" v3="3" />+                <face v1="14" v2="24" v3="48" />+                <face v1="29" v2="51" v3="52" />+                <face v1="48" v2="52" v3="54" />+                <face v1="55" v2="52" v3="48" />+                <face v1="24" v2="27" v3="19" />+                <face v1="19" v2="48" v3="24" />+                <face v1="19" v2="55" v3="48" />+                <face v1="22" v2="48" v3="54" />+                <face v1="22" v2="14" v3="48" />+                <face v1="29" v2="55" v3="19" />+                <face v1="55" v2="29" v3="52" />+                <face v1="37" v2="3" v3="6" />+                <face v1="37" v2="45" v3="3" />+                <face v1="37" v2="40" v3="44" />+                <face v1="37" v2="2" v3="40" />+                <face v1="3" v2="45" v3="11" />+                <face v1="42" v2="11" v3="45" />+            </lodfacelist>+            <lodfacelist submeshindex="1" numfaces="1316">+                <face v1="0" v2="1" v3="34" />+                <face v1="17" v2="15" v3="16" />+                <face v1="18" v2="19" v3="15" />+                <face v1="29" v2="8" v3="30" />+                <face v1="43" v2="44" v3="339" />+                <face v1="1079" v2="50" v3="53" />+                <face v1="59" v2="60" v3="61" />+                <face v1="69" v2="70" v3="71" />+                <face v1="71" v2="63" v3="69" />+                <face v1="76" v2="86" v3="78" />+                <face v1="84" v2="85" v3="86" />+                <face v1="84" v2="60" v3="85" />+                <face v1="96" v2="97" v3="98" />+                <face v1="108" v2="109" v3="110" />+                <face v1="126" v2="127" v3="39" />+                <face v1="143" v2="144" v3="145" />+                <face v1="145" v2="146" v3="143" />+                <face v1="1073" v2="161" v3="165" />+                <face v1="149" v2="1635" v3="177" />+                <face v1="1635" v2="119" v3="177" />+                <face v1="357" v2="177" v3="179" />+                <face v1="180" v2="181" v3="182" />+                <face v1="182" v2="183" v3="180" />+                <face v1="184" v2="185" v3="186" />+                <face v1="193" v2="195" v3="194" />+                <face v1="196" v2="197" v3="198" />+                <face v1="196" v2="195" v3="197" />+                <face v1="202" v2="203" v3="1065" />+                <face v1="203" v2="139" v3="210" />+                <face v1="212" v2="171" v3="119" />+                <face v1="223" v2="224" v3="225" />+                <face v1="223" v2="226" v3="224" />+                <face v1="222" v2="352" v3="224" />+                <face v1="236" v2="243" v3="241" />+                <face v1="252" v2="253" v3="254" />+                <face v1="254" v2="413" v3="252" />+                <face v1="260" v2="1056" v3="965" />+                <face v1="268" v2="263" v3="266" />+                <face v1="268" v2="272" v3="11" />+                <face v1="273" v2="274" v3="275" />+                <face v1="273" v2="883" v3="274" />+                <face v1="278" v2="279" v3="280" />+                <face v1="278" v2="281" v3="279" />+                <face v1="285" v2="1042" v3="287" />+                <face v1="285" v2="282" v3="1042" />+                <face v1="260" v2="965" v3="287" />+                <face v1="285" v2="965" v3="296" />+                <face v1="296" v2="282" v3="285" />+                <face v1="105" v2="300" v3="301" />+                <face v1="1083" v2="98" v3="97" />+                <face v1="97" v2="1033" v3="102" />+                <face v1="310" v2="89" v3="124" />+                <face v1="124" v2="1227" v3="310" />+                <face v1="316" v2="63" v3="71" />+                <face v1="316" v2="110" v3="63" />+                <face v1="323" v2="320" v3="315" />+                <face v1="323" v2="119" v3="320" />+                <face v1="324" v2="1027" v3="1025" />+                <face v1="329" v2="330" v3="92" />+                <face v1="331" v2="332" v3="333" />+                <face v1="333" v2="43" v3="331" />+                <face v1="43" v2="78" v3="44" />+                <face v1="341" v2="342" v3="331" />+                <face v1="43" v2="344" v3="345" />+                <face v1="347" v2="348" v3="349" />+                <face v1="1091" v2="352" v3="353" />+                <face v1="355" v2="357" v3="356" />+                <face v1="359" v2="355" v3="356" />+                <face v1="359" v2="358" v3="355" />+                <face v1="148" v2="359" v3="152" />+                <face v1="360" v2="361" v3="362" />+                <face v1="363" v2="170" v3="364" />+                <face v1="170" v2="165" v3="364" />+                <face v1="186" v2="365" v3="184" />+                <face v1="186" v2="366" v3="365" />+                <face v1="367" v2="368" v3="369" />+                <face v1="1348" v2="1345" v3="179" />+                <face v1="170" v2="168" v3="222" />+                <face v1="375" v2="144" v3="376" />+                <face v1="375" v2="145" v3="144" />+                <face v1="384" v2="1329" v3="382" />+                <face v1="386" v2="979" v3="181" />+                <face v1="144" v2="393" v3="376" />+                <face v1="393" v2="1075" v3="376" />+                <face v1="413" v2="397" v3="252" />+                <face v1="397" v2="398" v3="252" />+                <face v1="132" v2="1059" v3="36" />+                <face v1="36" v2="972" v3="1321" />+                <face v1="404" v2="241" v3="243" />+                <face v1="406" v2="254" v3="407" />+                <face v1="408" v2="409" v3="410" />+                <face v1="408" v2="236" v3="409" />+                <face v1="406" v2="412" v3="31" />+                <face v1="406" v2="407" v3="412" />+                <face v1="397" v2="413" v3="6" />+                <face v1="433" v2="434" v3="435" />+                <face v1="433" v2="436" v3="434" />+                <face v1="440" v2="441" v3="442" />+                <face v1="444" v2="1447" v3="433" />+                <face v1="451" v2="649" v3="886" />+                <face v1="458" v2="459" v3="460" />+                <face v1="477" v2="478" v3="436" />+                <face v1="1193" v2="484" v3="481" />+                <face v1="484" v2="762" v3="481" />+                <face v1="492" v2="489" v3="491" />+                <face v1="492" v2="1489" v3="489" />+                <face v1="504" v2="503" v3="501" />+                <face v1="504" v2="505" v3="503" />+                <face v1="506" v2="507" v3="508" />+                <face v1="510" v2="466" v3="511" />+                <face v1="788" v2="529" v3="916" />+                <face v1="530" v2="531" v3="532" />+                <face v1="532" v2="533" v3="530" />+                <face v1="539" v2="540" v3="541" />+                <face v1="540" v2="543" v3="530" />+                <face v1="541" v2="547" v3="539" />+                <face v1="553" v2="554" v3="555" />+                <face v1="539" v2="559" v3="556" />+                <face v1="562" v2="563" v3="560" />+                <face v1="560" v2="567" v3="564" />+                <face v1="568" v2="569" v3="570" />+                <face v1="570" v2="571" v3="568" />+                <face v1="553" v2="577" v3="578" />+                <face v1="579" v2="580" v3="581" />+                <face v1="583" v2="898" v3="585" />+                <face v1="788" v2="916" v3="583" />+                <face v1="916" v2="898" v3="583" />+                <face v1="597" v2="600" v3="593" />+                <face v1="593" v2="600" v3="649" />+                <face v1="573" v2="605" v3="590" />+                <face v1="606" v2="607" v3="894" />+                <face v1="831" v2="614" v3="615" />+                <face v1="614" v2="616" v3="615" />+                <face v1="440" v2="617" v3="422" />+                <face v1="423" v2="435" v3="422" />+                <face v1="444" v2="435" v3="423" />+                <face v1="444" v2="433" v3="435" />+                <face v1="619" v2="887" v3="621" />+                <face v1="621" v2="622" v3="619" />+                <face v1="434" v2="436" v3="478" />+                <face v1="637" v2="1581" v3="638" />+                <face v1="483" v2="643" v3="646" />+                <face v1="646" v2="649" v3="483" />+                <face v1="647" v2="649" v3="648" />+                <face v1="451" v2="593" v3="649" />+                <face v1="812" v2="886" v3="646" />+                <face v1="646" v2="641" v3="812" />+                <face v1="494" v2="653" v3="651" />+                <face v1="690" v2="693" v3="1489" />+                <face v1="494" v2="690" v3="1489" />+                <face v1="670" v2="671" v3="503" />+                <face v1="666" v2="676" v3="675" />+                <face v1="670" v2="505" v3="678" />+                <face v1="680" v2="681" v3="98" />+                <face v1="681" v2="59" v3="98" />+                <face v1="682" v2="685" v3="684" />+                <face v1="494" v2="651" v3="690" />+                <face v1="684" v2="693" v3="688" />+                <face v1="497" v2="501" v3="674" />+                <face v1="499" v2="699" v3="700" />+                <face v1="703" v2="704" v3="702" />+                <face v1="463" v2="707" v3="712" />+                <face v1="703" v2="707" v3="715" />+                <face v1="719" v2="864" v3="607" />+                <face v1="719" v2="510" v3="864" />+                <face v1="511" v2="722" v3="510" />+                <face v1="511" v2="466" v3="722" />+                <face v1="719" v2="1403" v3="510" />+                <face v1="727" v2="728" v3="543" />+                <face v1="728" v2="530" v3="543" />+                <face v1="556" v2="559" v3="1601" />+                <face v1="1601" v2="573" v3="556" />+                <face v1="733" v2="734" v3="735" />+                <face v1="733" v2="736" v3="734" />+                <face v1="569" v2="552" v3="570" />+                <face v1="569" v2="550" v3="552" />+                <face v1="560" v2="737" v3="567" />+                <face v1="560" v2="739" v3="737" />+                <face v1="563" v2="739" v3="560" />+                <face v1="563" v2="530" v3="739" />+                <face v1="745" v2="746" v3="747" />+                <face v1="747" v2="748" v3="745" />+                <face v1="750" v2="752" v3="749" />+                <face v1="547" v2="540" v3="754" />+                <face v1="559" v2="756" v3="757" />+                <face v1="758" v2="647" v3="759" />+                <face v1="759" v2="760" v3="758" />+                <face v1="761" v2="762" v3="581" />+                <face v1="762" v2="484" v3="581" />+                <face v1="767" v2="497" v3="769" />+                <face v1="769" v2="506" v3="767" />+                <face v1="678" v2="507" v3="771" />+                <face v1="734" v2="593" v3="550" />+                <face v1="777" v2="742" v3="778" />+                <face v1="742" v2="741" v3="778" />+                <face v1="530" v2="563" v3="741" />+                <face v1="555" v2="575" v3="786" />+                <face v1="789" v2="533" v3="790" />+                <face v1="533" v2="532" v3="790" />+                <face v1="795" v2="722" v3="1503" />+                <face v1="795" v2="510" v3="722" />+                <face v1="798" v2="621" v3="887" />+                <face v1="801" v2="627" v3="454" />+                <face v1="801" v2="803" v3="627" />+                <face v1="808" v2="622" v3="471" />+                <face v1="471" v2="809" v3="808" />+                <face v1="819" v2="820" v3="617" />+                <face v1="419" v2="418" v3="811" />+                <face v1="457" v2="454" v3="627" />+                <face v1="825" v2="622" v3="808" />+                <face v1="825" v2="619" v3="622" />+                <face v1="809" v2="471" v3="826" />+                <face v1="827" v2="803" v3="801" />+                <face v1="722" v2="466" v3="463" />+                <face v1="463" v2="1503" v3="722" />+                <face v1="466" v2="614" v3="831" />+                <face v1="832" v2="811" v3="418" />+                <face v1="832" v2="833" v3="811" />+                <face v1="737" v2="533" v3="789" />+                <face v1="562" v2="1522" v3="563" />+                <face v1="1522" v2="741" v3="563" />+                <face v1="767" v2="506" v3="508" />+                <face v1="790" v2="759" v3="840" />+                <face v1="790" v2="529" v3="759" />+                <face v1="595" v2="1515" v3="597" />+                <face v1="595" v2="736" v3="1515" />+                <face v1="559" v2="1521" v3="1601" />+                <face v1="564" v2="746" v3="745" />+                <face v1="567" v2="736" v3="733" />+                <face v1="567" v2="737" v3="736" />+                <face v1="570" v2="552" v3="578" />+                <face v1="540" v2="547" v3="541" />+                <face v1="754" v2="756" v3="547" />+                <face v1="756" v2="559" v3="547" />+                <face v1="691" v2="876" v3="850" />+                <face v1="851" v2="938" v3="86" />+                <face v1="349" v2="460" v3="459" />+                <face v1="349" v2="348" v3="460" />+                <face v1="704" v2="703" v3="715" />+                <face v1="707" v2="855" v3="856" />+                <face v1="705" v2="937" v3="707" />+                <face v1="703" v2="702" v3="712" />+                <face v1="712" v2="707" v3="703" />+                <face v1="705" v2="707" v3="856" />+                <face v1="685" v2="682" v3="858" />+                <face v1="504" v2="767" v3="508" />+                <face v1="504" v2="497" v3="767" />+                <face v1="688" v2="686" v3="864" />+                <face v1="864" v2="686" v3="865" />+                <face v1="688" v2="506" v3="684" />+                <face v1="868" v2="501" v3="503" />+                <face v1="503" v2="671" v3="868" />+                <face v1="515" v2="691" v3="850" />+                <face v1="850" v2="1500" v3="515" />+                <face v1="660" v2="870" v3="489" />+                <face v1="874" v2="653" v3="494" />+                <face v1="814" v2="641" v3="424" />+                <face v1="814" v2="812" v3="641" />+                <face v1="646" v2="886" v3="649" />+                <face v1="647" v2="758" v3="649" />+                <face v1="758" v2="483" v3="649" />+                <face v1="646" v2="643" v3="641" />+                <face v1="643" v2="424" v3="641" />+                <face v1="879" v2="880" v3="881" />+                <face v1="879" v2="882" v3="880" />+                <face v1="273" v2="820" v3="883" />+                <face v1="431" v2="477" v3="436" />+                <face v1="454" v2="451" v3="801" />+                <face v1="801" v2="451" v3="886" />+                <face v1="827" v2="887" v3="832" />+                <face v1="832" v2="418" v3="827" />+                <face v1="648" v2="600" v3="597" />+                <face v1="648" v2="649" v3="600" />+                <face v1="593" v2="595" v3="597" />+                <face v1="894" v2="864" v3="896" />+                <face v1="896" v2="556" v3="894" />+                <face v1="575" v2="555" v3="903" />+                <face v1="1532" v2="906" v3="907" />+                <face v1="1532" v2="752" v3="906" />+                <face v1="908" v2="909" v3="910" />+                <face v1="908" v2="911" v3="909" />+                <face v1="750" v2="571" v3="570" />+                <face v1="570" v2="577" v3="750" />+                <face v1="564" v2="562" v3="560" />+                <face v1="896" v2="539" v3="556" />+                <face v1="903" v2="555" v3="554" />+                <face v1="554" v2="573" v3="903" />+                <face v1="593" v2="734" v3="595" />+                <face v1="734" v2="736" v3="595" />+                <face v1="737" v2="739" v3="533" />+                <face v1="539" v2="543" v3="540" />+                <face v1="916" v2="529" v3="531" />+                <face v1="921" v2="924" v3="923" />+                <face v1="691" v2="515" v3="516" />+                <face v1="1489" v2="660" v3="489" />+                <face v1="98" v2="870" v3="680" />+                <face v1="699" v2="660" v3="685" />+                <face v1="685" v2="693" v3="684" />+                <face v1="693" v2="690" v3="686" />+                <face v1="86" v2="85" v3="851" />+                <face v1="856" v2="934" v3="935" />+                <face v1="937" v2="86" v3="938" />+                <face v1="715" v2="943" v3="940" />+                <face v1="671" v2="942" v3="943" />+                <face v1="943" v2="868" v3="671" />+                <face v1="681" v2="945" v3="946" />+                <face v1="945" v2="851" v3="946" />+                <face v1="59" v2="681" v3="946" />+                <face v1="581" v2="917" v3="921" />+                <face v1="614" v2="454" v3="457" />+                <face v1="614" v2="1403" v3="454" />+                <face v1="444" v2="423" v3="952" />+                <face v1="440" v2="442" v3="819" />+                <face v1="819" v2="617" v3="440" />+                <face v1="419" v2="955" v3="457" />+                <face v1="274" v2="281" v3="275" />+                <face v1="281" v2="17" v3="275" />+                <face v1="16" v2="275" v3="17" />+                <face v1="116" v2="972" v3="36" />+                <face v1="1073" v2="165" v3="395" />+                <face v1="376" v2="1075" v3="395" />+                <face v1="143" v2="393" v3="144" />+                <face v1="196" v2="194" v3="195" />+                <face v1="975" v2="976" v3="189" />+                <face v1="978" v2="979" v3="981" />+                <face v1="218" v2="168" v3="982" />+                <face v1="352" v2="222" v3="218" />+                <face v1="984" v2="985" v3="986" />+                <face v1="986" v2="1028" v3="984" />+                <face v1="143" v2="210" v3="139" />+                <face v1="991" v2="992" v3="993" />+                <face v1="991" v2="53" v3="992" />+                <face v1="145" v2="293" v3="24" />+                <face v1="24" v2="146" v3="145" />+                <face v1="976" v2="996" v3="997" />+                <face v1="976" v2="975" v3="996" />+                <face v1="998" v2="368" v3="367" />+                <face v1="367" v2="999" v3="998" />+                <face v1="979" v2="386" v3="981" />+                <face v1="161" v2="162" v3="386" />+                <face v1="386" v2="180" v3="161" />+                <face v1="364" v2="165" v3="161" />+                <face v1="161" v2="183" v3="364" />+                <face v1="1002" v2="168" v3="363" />+                <face v1="168" v2="170" v3="363" />+                <face v1="358" v2="359" v3="148" />+                <face v1="1348" v2="179" v3="171" />+                <face v1="152" v2="1004" v3="1005" />+                <face v1="152" v2="1006" v3="1004" />+                <face v1="1012" v2="323" v3="1008" />+                <face v1="323" v2="116" v3="1008" />+                <face v1="1079" v2="124" v3="50" />+                <face v1="345" v2="72" v3="66" />+                <face v1="345" v2="344" v3="72" />+                <face v1="331" v2="43" v3="341" />+                <face v1="333" v2="332" v3="344" />+                <face v1="344" v2="43" v3="333" />+                <face v1="1016" v2="1017" v3="1018" />+                <face v1="1023" v2="1018" v3="109" />+                <face v1="109" v2="108" v3="1023" />+                <face v1="315" v2="1025" v3="1027" />+                <face v1="1025" v2="1026" v3="105" />+                <face v1="1027" v2="324" v3="330" />+                <face v1="324" v2="92" v3="330" />+                <face v1="98" v2="59" v3="61" />+                <face v1="61" v2="96" v3="98" />+                <face v1="124" v2="1030" v3="1031" />+                <face v1="1033" v2="1034" v3="109" />+                <face v1="316" v2="71" v3="1035" />+                <face v1="97" v2="100" v3="1083" />+                <face v1="97" v2="102" v3="100" />+                <face v1="324" v2="100" v3="102" />+                <face v1="1026" v2="300" v3="105" />+                <face v1="965" v2="285" v3="287" />+                <face v1="224" v2="407" v3="260" />+                <face v1="287" v2="21" v3="260" />+                <face v1="287" v2="1042" v3="21" />+                <face v1="1046" v2="1158" v3="1047" />+                <face v1="1052" v2="1053" v3="1050" />+                <face v1="1050" v2="263" v3="1052" />+                <face v1="406" v2="31" v3="6" />+                <face v1="1056" v2="260" v3="407" />+                <face v1="8" v2="1057" v3="26" />+                <face v1="8" v2="263" v3="1057" />+                <face v1="1059" v2="1060" v3="0" />+                <face v1="222" v2="224" v3="226" />+                <face v1="222" v2="226" v3="223" />+                <face v1="193" v2="171" v3="1062" />+                <face v1="1065" v2="143" v3="146" />+                <face v1="991" v2="202" v3="56" />+                <face v1="991" v2="201" v3="202" />+                <face v1="360" v2="198" v3="197" />+                <face v1="362" v2="1069" v3="1070" />+                <face v1="1070" v2="1071" v3="362" />+                <face v1="183" v2="182" v3="369" />+                <face v1="369" v2="364" v3="183" />+                <face v1="386" v2="181" v3="180" />+                <face v1="177" v2="119" v3="171" />+                <face v1="171" v2="179" v3="177" />+                <face v1="195" v2="193" v3="197" />+                <face v1="218" v2="982" v3="361" />+                <face v1="361" v2="193" v3="218" />+                <face v1="148" v2="355" v3="358" />+                <face v1="1006" v2="152" v3="359" />+                <face v1="149" v2="148" v3="152" />+                <face v1="1073" v2="989" v3="1074" />+                <face v1="1073" v2="1075" v3="989" />+                <face v1="139" v2="393" v3="143" />+                <face v1="1201" v2="127" v3="126" />+                <face v1="1201" v2="1227" v3="127" />+                <face v1="108" v2="1028" v3="1081" />+                <face v1="108" v2="316" v3="1028" />+                <face v1="316" v2="108" v3="110" />+                <face v1="72" v2="331" v3="1084" />+                <face v1="263" v2="1050" v3="266" />+                <face v1="236" v2="1087" v3="409" />+                <face v1="236" v2="241" v3="1087" />+                <face v1="341" v2="340" v3="342" />+                <face v1="348" v2="347" v3="1090" />+                <face v1="412" v2="1091" v3="31" />+                <face v1="8" v2="26" v3="30" />+                <face v1="26" v2="1161" v3="30" />+                <face v1="26" v2="1162" v3="1161" />+                <face v1="17" v2="1093" v3="15" />+                <face v1="21" v2="289" v3="56" />+                <face v1="1264" v2="36" v3="1076" />+                <face v1="1111" v2="340" v3="1090" />+                <face v1="1121" v2="1059" v3="132" />+                <face v1="1059" v2="0" v3="34" />+                <face v1="31" v2="34" v3="6" />+                <face v1="8" v2="18" v3="1052" />+                <face v1="8" v2="19" v3="18" />+                <face v1="1053" v2="1128" v3="1129" />+                <face v1="1130" v2="1131" v3="1132" />+                <face v1="282" v2="1046" v3="1152" />+                <face v1="278" v2="1093" v3="17" />+                <face v1="1093" v2="278" v3="1140" />+                <face v1="268" v2="11" v3="245" />+                <face v1="15" v2="1093" v3="18" />+                <face v1="268" v2="1057" v3="263" />+                <face v1="1057" v2="268" v3="245" />+                <face v1="1152" v2="1146" v3="1147" />+                <face v1="1149" v2="1047" v3="1151" />+                <face v1="1149" v2="1152" v3="1047" />+                <face v1="1158" v2="1151" v3="1047" />+                <face v1="1155" v2="1159" v3="1157" />+                <face v1="1155" v2="1158" v3="1159" />+                <face v1="1159" v2="278" v3="280" />+                <face v1="278" v2="1159" v3="1140" />+                <face v1="16" v2="15" v3="19" />+                <face v1="1160" v2="1161" v3="1162" />+                <face v1="1160" v2="1163" v3="1161" />+                <face v1="1451" v2="8" v3="29" />+                <face v1="1111" v2="960" v3="340" />+                <face v1="34" v2="36" v3="1059" />+                <face v1="36" v2="34" v3="116" />+                <face v1="39" v2="127" v3="1227" />+                <face v1="1083" v2="1185" v3="1186" />+                <face v1="1189" v2="253" v3="252" />+                <face v1="1189" v2="970" v3="253" />+                <face v1="201" v2="991" v3="50" />+                <face v1="1079" v2="53" v3="1085" />+                <face v1="1085" v2="1193" v3="1194" />+                <face v1="1085" v2="53" v3="1193" />+                <face v1="301" v2="300" v3="1203" />+                <face v1="1017" v2="324" v3="1033" />+                <face v1="1206" v2="1083" v3="1207" />+                <face v1="1185" v2="1083" v3="1206" />+                <face v1="1212" v2="100" v3="324" />+                <face v1="1212" v2="324" v3="105" />+                <face v1="1018" v2="1023" v3="382" />+                <face v1="1027" v2="330" v3="111" />+                <face v1="1029" v2="1035" v3="1220" />+                <face v1="1080" v2="972" v3="116" />+                <face v1="1080" v2="984" v3="972" />+                <face v1="50" v2="124" v3="1031" />+                <face v1="1079" v2="1194" v3="1224" />+                <face v1="1079" v2="1085" v3="1194" />+                <face v1="1079" v2="1183" v3="1227" />+                <face v1="1227" v2="1201" v3="1228" />+                <face v1="1321" v2="342" v3="36" />+                <face v1="36" v2="340" v3="1076" />+                <face v1="1239" v2="152" v3="1005" />+                <face v1="152" v2="1239" v3="149" />+                <face v1="1004" v2="989" v3="139" />+                <face v1="395" v2="1075" v3="1073" />+                <face v1="1074" v2="989" v3="1006" />+                <face v1="395" v2="170" v3="1242" />+                <face v1="170" v2="395" v3="165" />+                <face v1="1073" v2="1074" v3="162" />+                <face v1="162" v2="1006" v3="356" />+                <face v1="356" v2="1006" v3="359" />+                <face v1="177" v2="355" v3="148" />+                <face v1="177" v2="357" v3="355" />+                <face v1="162" v2="981" v3="386" />+                <face v1="356" v2="981" v3="162" />+                <face v1="193" v2="360" v3="197" />+                <face v1="361" v2="360" v3="193" />+                <face v1="978" v2="365" v3="366" />+                <face v1="995" v2="365" v3="978" />+                <face v1="369" v2="363" v3="364" />+                <face v1="368" v2="363" v3="369" />+                <face v1="1069" v2="998" v3="1070" />+                <face v1="1069" v2="1002" v3="998" />+                <face v1="362" v2="996" v3="198" />+                <face v1="362" v2="1071" v3="996" />+                <face v1="1248" v2="194" v3="975" />+                <face v1="201" v2="50" v3="1236" />+                <face v1="202" v2="201" v3="203" />+                <face v1="1065" v2="210" v3="143" />+                <face v1="1065" v2="203" v3="210" />+                <face v1="201" v2="381" v3="139" />+                <face v1="193" v2="1260" v3="218" />+                <face v1="1260" v2="193" v3="1062" />+                <face v1="121" v2="212" v3="119" />+                <face v1="1008" v2="1262" v3="1012" />+                <face v1="1262" v2="1008" v3="353" />+                <face v1="224" v2="1091" v3="407" />+                <face v1="817" v2="960" v3="458" />+                <face v1="960" v2="1264" v3="340" />+                <face v1="132" v2="1265" v3="1266" />+                <face v1="36" v2="1265" v3="132" />+                <face v1="1268" v2="1275" v3="236" />+                <face v1="29" v2="1355" v3="1272" />+                <face v1="1275" v2="237" v3="236" />+                <face v1="1355" v2="29" v3="30" />+                <face v1="236" v2="237" v3="243" />+                <face v1="30" v2="1280" v3="243" />+                <face v1="30" v2="1161" v3="1280" />+                <face v1="1280" v2="248" v3="404" />+                <face v1="1280" v2="249" v3="248" />+                <face v1="1162" v2="245" v3="11" />+                <face v1="249" v2="1087" v3="248" />+                <face v1="249" v2="1281" v3="1087" />+                <face v1="1046" v2="1162" v3="11" />+                <face v1="1162" v2="1046" v3="1160" />+                <face v1="965" v2="1281" v3="1163" />+                <face v1="1281" v2="965" v3="1282" />+                <face v1="1056" v2="1282" v3="965" />+                <face v1="1093" v2="1128" v3="18" />+                <face v1="1093" v2="1140" v3="1128" />+                <face v1="1050" v2="1053" v3="1129" />+                <face v1="1128" v2="1159" v3="1132" />+                <face v1="1287" v2="1131" v3="1130" />+                <face v1="266" v2="1131" v3="1287" />+                <face v1="1155" v2="279" v3="1289" />+                <face v1="1157" v2="279" v3="1155" />+                <face v1="272" v2="1287" v3="1130" />+                <face v1="266" v2="1287" v3="272" />+                <face v1="1130" v2="1158" v3="1046" />+                <face v1="1284" v2="1294" v3="1298" />+                <face v1="1130" v2="1046" v3="11" />+                <face v1="1289" v2="1297" v3="1151" />+                <face v1="1046" v2="1047" v3="1152" />+                <face v1="1151" v2="1297" v3="1149" />+                <face v1="1152" v2="1147" v3="282" />+                <face v1="1152" v2="1308" v3="1146" />+                <face v1="1147" v2="1042" v3="282" />+                <face v1="1147" v2="878" v3="1042" />+                <face v1="260" v2="24" v3="224" />+                <face v1="260" v2="21" v3="24" />+                <face v1="324" v2="1025" v3="105" />+                <face v1="324" v2="102" v3="1033" />+                <face v1="1320" v2="1207" v3="1083" />+                <face v1="1321" v2="331" v3="342" />+                <face v1="1084" v2="331" v3="1321" />+                <face v1="126" v2="1206" v3="1201" />+                <face v1="39" v2="1206" v3="126" />+                <face v1="1228" v2="1201" v3="1322" />+                <face v1="1031" v2="319" v3="320" />+                <face v1="1031" v2="1030" v3="319" />+                <face v1="1080" v2="985" v3="984" />+                <face v1="1080" v2="1325" v3="985" />+                <face v1="1035" v2="1028" v3="316" />+                <face v1="1029" v2="1028" v3="1035" />+                <face v1="61" v2="1033" v3="96" />+                <face v1="61" v2="1034" v3="1033" />+                <face v1="1035" v2="1084" v3="1321" />+                <face v1="1035" v2="70" v3="1084" />+                <face v1="339" v2="1090" v3="340" />+                <face v1="339" v2="348" v3="1090" />+                <face v1="1220" v2="1035" v3="1321" />+                <face v1="1030" v2="1203" v3="319" />+                <face v1="320" v2="1025" v3="315" />+                <face v1="382" v2="1081" v3="384" />+                <face v1="1027" v2="111" v3="1329" />+                <face v1="1330" v2="330" v3="1331" />+                <face v1="1332" v2="1018" v3="1333" />+                <face v1="44" v2="80" v3="339" />+                <face v1="78" v2="80" v3="44" />+                <face v1="76" v2="43" v3="345" />+                <face v1="72" v2="344" v3="332" />+                <face v1="66" v2="63" v3="1034" />+                <face v1="1336" v2="81" v3="80" />+                <face v1="86" v2="76" v3="84" />+                <face v1="66" v2="72" v3="69" />+                <face v1="149" v2="1236" v3="1635" />+                <face v1="1236" v2="50" v3="1635" />+                <face v1="320" v2="119" v3="1031" />+                <face v1="121" v2="323" v3="1012" />+                <face v1="121" v2="119" v3="323" />+                <face v1="1220" v2="1321" v3="972" />+                <face v1="381" v2="1005" v3="1004" />+                <face v1="1262" v2="1062" v3="212" />+                <face v1="1262" v2="1260" v3="1062" />+                <face v1="171" v2="212" v3="1062" />+                <face v1="1341" v2="367" v3="997" />+                <face v1="1002" v2="982" v3="168" />+                <face v1="1069" v2="982" v3="1002" />+                <face v1="183" v2="161" v3="180" />+                <face v1="981" v2="995" v3="978" />+                <face v1="981" v2="357" v3="995" />+                <face v1="1344" v2="185" v3="1345" />+                <face v1="367" v2="182" v3="181" />+                <face v1="998" v2="1341" v3="1070" />+                <face v1="1341" v2="998" v3="999" />+                <face v1="997" v2="996" v3="1071" />+                <face v1="189" v2="1248" v3="975" />+                <face v1="179" v2="995" v3="357" />+                <face v1="1345" v2="995" v3="179" />+                <face v1="1065" v2="146" v3="21" />+                <face v1="1242" v2="222" v3="223" />+                <face v1="1242" v2="170" v3="222" />+                <face v1="56" v2="1065" v3="21" />+                <face v1="1075" v2="139" v3="989" />+                <face v1="985" v2="384" v3="986" />+                <face v1="984" v2="1028" v3="972" />+                <face v1="222" v2="168" v3="218" />+                <face v1="185" v2="1344" v3="1350" />+                <face v1="979" v2="978" v3="366" />+                <face v1="193" v2="1348" v3="171" />+                <face v1="194" v2="196" v3="975" />+                <face v1="188" v2="189" v3="976" />+                <face v1="340" v2="36" v3="342" />+                <face v1="1275" v2="1548" v3="1355" />+                <face v1="1275" v2="1268" v3="1548" />+                <face v1="237" v2="1356" v3="243" />+                <face v1="1087" v2="253" v3="970" />+                <face v1="966" v2="236" v3="408" />+                <face v1="1189" v2="1363" v3="1364" />+                <face v1="1363" v2="1189" v3="1365" />+                <face v1="347" v2="458" v3="1090" />+                <face v1="458" v2="347" v3="349" />+                <face v1="962" v2="817" v3="1366" />+                <face v1="817" v2="962" v3="960" />+                <face v1="1371" v2="1265" v3="1264" />+                <face v1="1373" v2="1121" v3="1266" />+                <face v1="1121" v2="1373" v3="1376" />+                <face v1="1121" v2="1377" v3="1123" />+                <face v1="1121" v2="1378" v3="1377" />+                <face v1="279" v2="274" v3="1285" />+                <face v1="281" v2="274" v3="279" />+                <face v1="279" v2="1284" v3="1289" />+                <face v1="1289" v2="1298" v3="1297" />+                <face v1="1581" v2="1308" v3="1639" />+                <face v1="1379" v2="1102" v3="1381" />+                <face v1="855" v2="520" v3="1543" />+                <face v1="1610" v2="831" v3="1397" />+                <face v1="831" v2="1398" v3="1397" />+                <face v1="457" v2="958" v3="614" />+                <face v1="955" v2="958" v3="457" />+                <face v1="955" v2="1400" v3="958" />+                <face v1="719" v2="846" v3="593" />+                <face v1="1404" v2="1405" v3="1406" />+                <face v1="1404" v2="953" v3="1405" />+                <face v1="1407" v2="1408" v3="1409" />+                <face v1="1407" v2="1404" v3="1408" />+                <face v1="1451" v2="422" v3="617" />+                <face v1="1451" v2="423" v3="422" />+                <face v1="954" v2="431" v3="1420" />+                <face v1="1405" v2="435" v3="434" />+                <face v1="422" v2="435" v3="1405" />+                <face v1="820" v2="1421" v3="617" />+                <face v1="1421" v2="820" v3="273" />+                <face v1="643" v2="56" v3="289" />+                <face v1="878" v2="1428" v3="643" />+                <face v1="1428" v2="878" v3="1430" />+                <face v1="1431" v2="1428" v3="637" />+                <face v1="1437" v2="638" v3="1439" />+                <face v1="1442" v2="1443" v3="879" />+                <face v1="814" v2="1444" v3="812" />+                <face v1="1444" v2="814" v3="1413" />+                <face v1="1451" v2="1272" v3="952" />+                <face v1="1500" v2="516" v3="515" />+                <face v1="940" v2="942" v3="1463" />+                <face v1="940" v2="943" v3="942" />+                <face v1="715" v2="851" v3="945" />+                <face v1="1408" v2="477" v3="1409" />+                <face v1="477" v2="1408" v3="478" />+                <face v1="581" v2="923" v3="761" />+                <face v1="921" v2="923" v3="581" />+                <face v1="56" v2="483" v3="1193" />+                <face v1="85" v2="946" v3="851" />+                <face v1="946" v2="85" v3="59" />+                <face v1="940" v2="1463" v3="463" />+                <face v1="935" v2="86" v3="937" />+                <face v1="856" v2="460" v3="934" />+                <face v1="1471" v2="1472" v3="1206" />+                <face v1="1472" v2="1475" v3="1476" />+                <face v1="1475" v2="1472" v3="1471" />+                <face v1="1478" v2="874" v3="666" />+                <face v1="674" v2="870" v3="660" />+                <face v1="680" v2="870" v3="674" />+                <face v1="1186" v2="491" v3="98" />+                <face v1="1486" v2="1489" v3="492" />+                <face v1="862" v2="494" v3="1489" />+                <face v1="678" v2="504" v3="508" />+                <face v1="678" v2="505" v3="504" />+                <face v1="678" v2="795" v3="670" />+                <face v1="864" v2="510" v3="688" />+                <face v1="1494" v2="864" v3="676" />+                <face v1="923" v2="691" v3="516" />+                <face v1="923" v2="666" v3="691" />+                <face v1="516" v2="481" v3="762" />+                <face v1="1499" v2="1224" v3="516" />+                <face v1="1499" v2="1183" v3="1224" />+                <face v1="1471" v2="1499" v3="1500" />+                <face v1="1471" v2="39" v3="1499" />+                <face v1="923" v2="676" v3="666" />+                <face v1="676" v2="923" v3="1494" />+                <face v1="917" v2="924" v3="921" />+                <face v1="1508" v2="924" v3="1510" />+                <face v1="1511" v2="924" v3="1508" />+                <face v1="1515" v2="790" v3="840" />+                <face v1="789" v2="790" v3="1515" />+                <face v1="530" v2="728" v3="531" />+                <face v1="754" v2="777" v3="756" />+                <face v1="739" v2="530" v3="533" />+                <face v1="736" v2="737" v3="1515" />+                <face v1="896" v2="913" v3="539" />+                <face v1="1520" v2="1521" v3="757" />+                <face v1="735" v2="746" v3="733" />+                <face v1="746" v2="735" v3="747" />+                <face v1="903" v2="1526" v3="575" />+                <face v1="903" v2="1528" v3="1526" />+                <face v1="907" v2="906" v3="911" />+                <face v1="749" v2="752" v3="1532" />+                <face v1="731" v2="917" v3="581" />+                <face v1="731" v2="1508" v3="1510" />+                <face v1="581" v2="585" v3="731" />+                <face v1="585" v2="579" v3="1537" />+                <face v1="585" v2="580" v3="579" />+                <face v1="585" v2="900" v3="731" />+                <face v1="898" v2="900" v3="585" />+                <face v1="788" v2="1537" v3="760" />+                <face v1="788" v2="585" v3="1537" />+                <face v1="837" v2="900" v3="898" />+                <face v1="896" v2="1494" v3="913" />+                <face v1="896" v2="864" v3="1494" />+                <face v1="550" v2="573" v3="554" />+                <face v1="1540" v2="550" v3="593" />+                <face v1="454" v2="593" v3="451" />+                <face v1="466" v2="1544" v3="1543" />+                <face v1="617" v2="1421" v3="1451" />+                <face v1="1549" v2="1272" v3="1548" />+                <face v1="1549" v2="1613" v3="1552" />+                <face v1="472" v2="1552" v3="1613" />+                <face v1="472" v2="1556" v3="1552" />+                <face v1="444" v2="888" v3="1449" />+                <face v1="888" v2="444" v3="1556" />+                <face v1="622" v2="472" v3="471" />+                <face v1="621" v2="472" v3="622" />+                <face v1="1557" v2="1449" v3="888" />+                <face v1="1557" v2="1444" v3="1449" />+                <face v1="798" v2="1558" v3="1557" />+                <face v1="424" v2="1413" v3="814" />+                <face v1="798" v2="886" v3="1558" />+                <face v1="801" v2="886" v3="798" />+                <face v1="418" v2="803" v3="827" />+                <face v1="418" v2="627" v3="803" />+                <face v1="419" v2="627" v3="418" />+                <face v1="431" v2="954" v3="477" />+                <face v1="442" v2="880" v3="819" />+                <face v1="442" v2="881" v3="880" />+                <face v1="434" v2="1406" v3="1405" />+                <face v1="1442" v2="1560" v3="1404" />+                <face v1="883" v2="1561" v3="1285" />+                <face v1="1443" v2="882" v3="879" />+                <face v1="1437" v2="1407" v3="1564" />+                <face v1="1437" v2="1442" v3="1407" />+                <face v1="1294" v2="1284" v3="1561" />+                <face v1="638" v2="1569" v3="1439" />+                <face v1="638" v2="1437" v3="1413" />+                <face v1="1298" v2="1294" v3="1573" />+                <face v1="1581" v2="1639" v3="1632" />+                <face v1="1430" v2="878" v3="1581" />+                <face v1="289" v2="878" v3="643" />+                <face v1="762" v2="761" v3="923" />+                <face v1="491" v2="1472" v3="492" />+                <face v1="1476" v2="1486" v3="1472" />+                <face v1="1486" v2="1476" v3="862" />+                <face v1="491" v2="870" v3="98" />+                <face v1="489" v2="870" v3="491" />+                <face v1="463" v2="855" v3="707" />+                <face v1="506" v2="688" v3="510" />+                <face v1="507" v2="506" v3="510" />+                <face v1="868" v2="674" v3="501" />+                <face v1="868" v2="681" v3="674" />+                <face v1="670" v2="942" v3="671" />+                <face v1="499" v2="674" v3="699" />+                <face v1="497" v2="674" v3="499" />+                <face v1="690" v2="651" v3="686" />+                <face v1="874" v2="862" v3="876" />+                <face v1="874" v2="494" v3="862" />+                <face v1="675" v2="1478" v3="666" />+                <face v1="675" v2="653" v3="1478" />+                <face v1="865" v2="686" v3="651" />+                <face v1="501" v2="497" v3="504" />+                <face v1="1589" v2="682" v3="1591" />+                <face v1="858" v2="682" v3="1589" />+                <face v1="700" v2="497" v3="499" />+                <face v1="1597" v2="497" v3="700" />+                <face v1="935" v2="705" v3="856" />+                <face v1="707" v2="937" v3="938" />+                <face v1="702" v2="463" v3="712" />+                <face v1="702" v2="940" v3="463" />+                <face v1="868" v2="945" v3="681" />+                <face v1="868" v2="943" v3="945" />+                <face v1="934" v2="348" v3="81" />+                <face v1="934" v2="460" v3="348" />+                <face v1="86" v2="935" v3="1336" />+                <face v1="715" v2="938" v3="851" />+                <face v1="1475" v2="1500" v3="850" />+                <face v1="1475" v2="1598" v3="1500" />+                <face v1="1476" v2="876" v3="862" />+                <face v1="1486" v2="862" v3="1489" />+                <face v1="1476" v2="850" v3="876" />+                <face v1="1475" v2="850" v3="1476" />+                <face v1="1511" v2="1600" v3="924" />+                <face v1="1511" v2="543" v3="1600" />+                <face v1="1494" v2="924" v3="913" />+                <face v1="1494" v2="923" v3="924" />+                <face v1="837" v2="1511" v3="1508" />+                <face v1="837" v2="727" v3="1511" />+                <face v1="1540" v2="846" v3="606" />+                <face v1="1540" v2="593" v3="846" />+                <face v1="590" v2="605" v3="894" />+                <face v1="1601" v2="1521" v3="1602" />+                <face v1="745" v2="748" v3="1603" />+                <face v1="577" v2="570" v3="578" />+                <face v1="910" v2="1521" v3="1520" />+                <face v1="909" v2="1521" v3="910" />+                <face v1="749" v2="568" v3="571" />+                <face v1="1603" v2="568" v3="749" />+                <face v1="1528" v2="906" v3="1526" />+                <face v1="906" v2="1528" v3="911" />+                <face v1="530" v2="754" v3="540" />+                <face v1="597" v2="840" v3="648" />+                <face v1="597" v2="1515" v3="840" />+                <face v1="579" v2="484" v3="483" />+                <face v1="581" v2="484" v3="579" />+                <face v1="648" v2="759" v3="647" />+                <face v1="840" v2="759" v3="648" />+                <face v1="758" v2="760" v3="483" />+                <face v1="1608" v2="769" v3="497" />+                <face v1="1608" v2="1595" v3="769" />+                <face v1="1528" v2="1601" v3="1602" />+                <face v1="1528" v2="903" v3="1601" />+                <face v1="1522" v2="908" v3="1609" />+                <face v1="907" v2="908" v3="1522" />+                <face v1="575" v2="750" v3="786" />+                <face v1="1532" v2="1522" v3="562" />+                <face v1="1549" v2="1614" v3="1613" />+                <face v1="887" v2="801" v3="798" />+                <face v1="887" v2="827" v3="801" />+                <face v1="806" v2="236" v3="1360" />+                <face v1="806" v2="1614" v3="236" />+                <face v1="826" v2="471" v3="806" />+                <face v1="825" v2="832" v3="619" />+                <face v1="833" v2="832" v3="825" />+                <face v1="1543" v2="1624" v3="817" />+                <face v1="1610" v2="1624" v3="1544" />+                <face v1="1610" v2="1626" v3="1624" />+                <face v1="1397" v2="1630" v3="1629" />+                <face v1="1398" v2="616" v3="1631" />+                <face v1="615" v2="616" v3="1398" />+                <face v1="819" v2="883" v3="820" />+                <face v1="819" v2="880" v3="883" />+                <face v1="1294" v2="1569" v3="1573" />+                <face v1="1632" v2="1573" v3="638" />+                <face v1="1581" v2="1632" v3="638" />+                <face v1="1573" v2="1569" v3="638" />+                <face v1="1561" v2="1569" v3="1294" />+                <face v1="1569" v2="1561" v3="882" />+                <face v1="883" v2="882" v3="1561" />+                <face v1="882" v2="883" v3="880" />+                <face v1="1631" v2="1397" v3="1398" />+                <face v1="1631" v2="1630" v3="1397" />+                <face v1="1626" v2="1397" v3="1629" />+                <face v1="1397" v2="1626" v3="1610" />+                <face v1="1544" v2="1624" v3="1543" />+                <face v1="817" v2="815" v3="1366" />+                <face v1="349" v2="459" v3="458" />+                <face v1="1614" v2="806" v3="471" />+                <face v1="798" v2="472" v3="621" />+                <face v1="1613" v2="471" v3="472" />+                <face v1="1548" v2="1614" v3="1549" />+                <face v1="1548" v2="1268" v3="1614" />+                <face v1="529" v2="790" v3="532" />+                <face v1="1601" v2="903" v3="573" />+                <face v1="911" v2="908" v3="907" />+                <face v1="742" v2="777" v3="754" />+                <face v1="1609" v2="741" v3="1522" />+                <face v1="1609" v2="778" v3="741" />+                <face v1="1602" v2="911" v3="1528" />+                <face v1="795" v2="771" v3="510" />+                <face v1="795" v2="678" v3="771" />+                <face v1="508" v2="507" v3="678" />+                <face v1="837" v2="898" v3="916" />+                <face v1="531" v2="529" v3="532" />+                <face v1="579" v2="483" v3="1537" />+                <face v1="483" v2="760" v3="1537" />+                <face v1="559" v2="757" v3="1521" />+                <face v1="750" v2="906" v3="752" />+                <face v1="750" v2="1526" v3="906" />+                <face v1="571" v2="750" v3="749" />+                <face v1="1603" v2="747" v3="568" />+                <face v1="748" v2="747" v3="1603" />+                <face v1="564" v2="1532" v3="562" />+                <face v1="1532" v2="564" v3="745" />+                <face v1="907" v2="1522" v3="1532" />+                <face v1="1609" v2="910" v3="1520" />+                <face v1="910" v2="1609" v3="908" />+                <face v1="909" v2="1602" v3="1521" />+                <face v1="911" v2="1602" v3="909" />+                <face v1="786" v2="750" v3="577" />+                <face v1="757" v2="777" v3="778" />+                <face v1="757" v2="756" v3="777" />+                <face v1="741" v2="742" v3="530" />+                <face v1="550" v2="735" v3="734" />+                <face v1="735" v2="550" v3="569" />+                <face v1="745" v2="1603" v3="749" />+                <face v1="573" v2="894" v3="556" />+                <face v1="590" v2="894" v3="573" />+                <face v1="605" v2="606" v3="894" />+                <face v1="605" v2="1540" v3="606" />+                <face v1="727" v2="837" v3="728" />+                <face v1="864" v2="894" v3="607" />+                <face v1="924" v2="1600" v3="913" />+                <face v1="934" v2="1336" v3="935" />+                <face v1="1336" v2="934" v3="81" />+                <face v1="943" v2="715" v3="945" />+                <face v1="940" v2="704" v3="715" />+                <face v1="702" v2="704" v3="940" />+                <face v1="707" v2="938" v3="715" />+                <face v1="705" v2="935" v3="937" />+                <face v1="1608" v2="497" v3="1597" />+                <face v1="1595" v2="1591" v3="769" />+                <face v1="1589" v2="1591" v3="1595" />+                <face v1="693" v2="685" v3="660" />+                <face v1="688" v2="693" v3="686" />+                <face v1="651" v2="675" v3="865" />+                <face v1="651" v2="653" v3="675" />+                <face v1="666" v2="876" v3="691" />+                <face v1="876" v2="666" v3="874" />+                <face v1="1503" v2="670" v3="795" />+                <face v1="458" v2="856" v3="855" />+                <face v1="458" v2="460" v3="856" />+                <face v1="1463" v2="670" v3="1503" />+                <face v1="1463" v2="942" v3="670" />+                <face v1="674" v2="681" v3="680" />+                <face v1="505" v2="670" v3="503" />+                <face v1="507" v2="510" v3="771" />+                <face v1="865" v2="676" v3="864" />+                <face v1="865" v2="675" v3="676" />+                <face v1="1471" v2="1598" v3="1475" />+                <face v1="1206" v2="39" v3="1471" />+                <face v1="1503" v2="463" v3="1463" />+                <face v1="492" v2="1472" v3="1486" />+                <face v1="693" v2="660" v3="1489" />+                <face v1="643" v2="1428" v3="424" />+                <face v1="1581" v2="637" v3="1430" />+                <face v1="1428" v2="1436" v3="424" />+                <face v1="1428" v2="1431" v3="1436" />+                <face v1="1639" v2="1573" v3="1632" />+                <face v1="1639" v2="1298" v3="1573" />+                <face v1="1413" v2="1436" v3="638" />+                <face v1="954" v2="1413" v3="1563" />+                <face v1="1437" v2="1564" v3="1413" />+                <face v1="954" v2="1563" v3="477" />+                <face v1="882" v2="1439" v3="1569" />+                <face v1="1439" v2="882" v3="1443" />+                <face v1="1563" v2="1409" v3="477" />+                <face v1="1561" v2="1284" v3="1285" />+                <face v1="1407" v2="1442" v3="1404" />+                <face v1="1406" v2="478" v3="1408" />+                <face v1="478" v2="1406" v3="434" />+                <face v1="1404" v2="441" v3="953" />+                <face v1="1404" v2="1560" v3="441" />+                <face v1="1558" v2="886" v3="812" />+                <face v1="1557" v2="812" v3="1444" />+                <face v1="1558" v2="812" v3="1557" />+                <face v1="1447" v2="1413" v3="954" />+                <face v1="798" v2="1557" v3="888" />+                <face v1="954" v2="1420" v3="1447" />+                <face v1="1420" v2="433" v3="1447" />+                <face v1="798" v2="1556" v3="472" />+                <face v1="798" v2="888" v3="1556" />+                <face v1="1556" v2="444" v3="1552" />+                <face v1="1614" v2="471" v3="1613" />+                <face v1="952" v2="1552" v3="444" />+                <face v1="1552" v2="952" v3="1549" />+                <face v1="1549" v2="952" v3="1272" />+                <face v1="1614" v2="1268" v3="236" />+                <face v1="1544" v2="831" v3="1610" />+                <face v1="831" v2="1544" v3="466" />+                <face v1="1543" v2="817" v3="855" />+                <face v1="606" v2="719" v3="607" />+                <face v1="846" v2="719" v3="606" />+                <face v1="1540" v2="573" v3="550" />+                <face v1="605" v2="573" v3="1540" />+                <face v1="837" v2="731" v3="900" />+                <face v1="788" v2="583" v3="585" />+                <face v1="585" v2="581" v3="580" />+                <face v1="1508" v2="731" v3="837" />+                <face v1="917" v2="731" v3="1510" />+                <face v1="786" v2="553" v3="555" />+                <face v1="577" v2="553" v3="786" />+                <face v1="745" v2="749" v3="1532" />+                <face v1="575" v2="1526" v3="750" />+                <face v1="747" v2="569" v3="568" />+                <face v1="747" v2="735" v3="569" />+                <face v1="733" v2="564" v3="567" />+                <face v1="564" v2="733" v3="746" />+                <face v1="1520" v2="778" v3="1609" />+                <face v1="778" v2="1520" v3="757" />+                <face v1="553" v2="550" v3="554" />+                <face v1="578" v2="550" v3="553" />+                <face v1="550" v2="578" v3="552" />+                <face v1="530" v2="742" v3="754" />+                <face v1="547" v2="559" v3="539" />+                <face v1="539" v2="913" v3="1600" />+                <face v1="1600" v2="543" v3="539" />+                <face v1="737" v2="789" v3="1515" />+                <face v1="760" v2="529" v3="788" />+                <face v1="760" v2="759" v3="529" />+                <face v1="916" v2="728" v3="837" />+                <face v1="916" v2="531" v3="728" />+                <face v1="543" v2="1511" v3="727" />+                <face v1="1510" v2="924" v3="917" />+                <face v1="855" v2="466" v3="520" />+                <face v1="466" v2="855" v3="463" />+                <face v1="1471" v2="1500" v3="1598" />+                <face v1="1500" v2="1499" v3="516" />+                <face v1="1194" v2="516" v3="1224" />+                <face v1="1194" v2="481" v3="516" />+                <face v1="516" v2="762" v3="923" />+                <face v1="682" v2="684" v3="506" />+                <face v1="506" v2="1591" v3="682" />+                <face v1="1591" v2="506" v3="769" />+                <face v1="491" v2="1206" v3="1472" />+                <face v1="1206" v2="491" v3="1185" />+                <face v1="660" v2="699" v3="674" />+                <face v1="653" v2="874" v3="1478" />+                <face v1="643" v2="483" v3="56" />+                <face v1="483" v2="484" v3="1193" />+                <face v1="1193" v2="481" v3="1194" />+                <face v1="887" v2="619" v3="832" />+                <face v1="1185" v2="491" v3="1186" />+                <face v1="39" v2="1183" v3="1499" />+                <face v1="466" v2="1403" v3="614" />+                <face v1="855" v2="817" v3="458" />+                <face v1="1403" v2="466" v3="510" />+                <face v1="952" v2="423" v3="1451" />+                <face v1="1447" v2="444" v3="1449" />+                <face v1="1449" v2="1413" v3="1447" />+                <face v1="1449" v2="1444" v3="1413" />+                <face v1="881" v2="1442" v3="879" />+                <face v1="1560" v2="1442" v3="881" />+                <face v1="1442" v2="1439" v3="1443" />+                <face v1="1442" v2="1437" v3="1439" />+                <face v1="1436" v2="637" v3="638" />+                <face v1="1436" v2="1431" v3="637" />+                <face v1="1428" v2="1430" v3="637" />+                <face v1="433" v2="431" v3="436" />+                <face v1="441" v2="422" v3="953" />+                <face v1="440" v2="422" v3="441" />+                <face v1="1420" v2="431" v3="433" />+                <face v1="441" v2="881" v3="442" />+                <face v1="1560" v2="881" v3="441" />+                <face v1="1413" v2="424" v3="1436" />+                <face v1="1413" v2="1564" v3="1563" />+                <face v1="1409" v2="1564" v3="1407" />+                <face v1="1563" v2="1564" v3="1409" />+                <face v1="1408" v2="1404" v3="1406" />+                <face v1="953" v2="422" v3="1405" />+                <face v1="1403" v2="719" v3="454" />+                <face v1="719" v2="593" v3="454" />+                <face v1="627" v2="419" v3="457" />+                <face v1="831" v2="615" v3="1398" />+                <face v1="466" v2="1543" v3="520" />+                <face v1="1102" v2="1633" v3="1381" />+                <face v1="1308" v2="1581" v3="878" />+                <face v1="1297" v2="1639" v3="1308" />+                <face v1="1297" v2="1298" v3="1300" />+                <face v1="1289" v2="1284" v3="1298" />+                <face v1="279" v2="1285" v3="1284" />+                <face v1="1060" v2="1123" v3="1377" />+                <face v1="1123" v2="1060" v3="1059" />+                <face v1="1376" v2="1378" v3="1121" />+                <face v1="1371" v2="1266" v3="1265" />+                <face v1="1371" v2="1373" v3="1266" />+                <face v1="960" v2="1371" v3="1264" />+                <face v1="252" v2="1365" v3="1189" />+                <face v1="1365" v2="252" v3="398" />+                <face v1="409" v2="1363" v3="410" />+                <face v1="409" v2="1364" v3="1363" />+                <face v1="236" v2="966" v3="1360" />+                <face v1="407" v2="253" v3="1087" />+                <face v1="407" v2="254" v3="253" />+                <face v1="404" v2="1087" v3="241" />+                <face v1="248" v2="1087" v3="404" />+                <face v1="237" v2="1355" v3="1356" />+                <face v1="237" v2="1275" v3="1355" />+                <face v1="1266" v2="1121" v3="132" />+                <face v1="1348" v2="1350" v3="1344" />+                <face v1="1348" v2="193" v3="1350" />+                <face v1="382" v2="111" v3="1018" />+                <face v1="111" v2="382" v3="1329" />+                <face v1="111" v2="1333" v3="1018" />+                <face v1="111" v2="1330" v3="1333" />+                <face v1="146" v2="24" v3="21" />+                <face v1="1075" v2="393" v3="139" />+                <face v1="145" v2="225" v3="293" />+                <face v1="225" v2="145" v3="375" />+                <face v1="56" v2="53" v3="991" />+                <face v1="375" v2="223" v3="225" />+                <face v1="375" v2="1242" v3="223" />+                <face v1="189" v2="1350" v3="1248" />+                <face v1="185" v2="1350" v3="189" />+                <face v1="1070" v2="997" v3="1071" />+                <face v1="997" v2="1070" v3="1341" />+                <face v1="367" v2="369" v3="182" />+                <face v1="367" v2="181" v3="188" />+                <face v1="186" v2="181" v3="366" />+                <face v1="188" v2="181" v3="186" />+                <face v1="1345" v2="184" v3="365" />+                <face v1="184" v2="1345" v3="185" />+                <face v1="360" v2="362" v3="198" />+                <face v1="362" v2="982" v3="1069" />+                <face v1="362" v2="361" v3="982" />+                <face v1="999" v2="367" v3="1341" />+                <face v1="1344" v2="1345" v3="1348" />+                <face v1="353" v2="1260" v3="1262" />+                <face v1="353" v2="352" v3="1260" />+                <face v1="1239" v2="1005" v3="381" />+                <face v1="149" v2="1239" v3="1236" />+                <face v1="310" v2="1636" v3="89" />+                <face v1="1636" v2="310" v3="1322" />+                <face v1="1212" v2="298" v3="1320" />+                <face v1="298" v2="89" v3="1636" />+                <face v1="1227" v2="1322" v3="310" />+                <face v1="1227" v2="1228" v3="1322" />+                <face v1="76" v2="66" v3="84" />+                <face v1="1336" v2="80" v3="86" />+                <face v1="63" v2="109" v3="1034" />+                <face v1="66" v2="69" v3="63" />+                <face v1="331" v2="72" v3="332" />+                <face v1="78" v2="43" v3="76" />+                <face v1="1016" v2="1018" v3="1332" />+                <face v1="330" v2="1330" v3="111" />+                <face v1="1331" v2="330" v3="329" />+                <face v1="382" v2="108" v3="1081" />+                <face v1="382" v2="1023" v3="108" />+                <face v1="301" v2="1030" v3="124" />+                <face v1="301" v2="1203" v3="1030" />+                <face v1="298" v2="105" v3="89" />+                <face v1="319" v2="1025" v3="320" />+                <face v1="319" v2="1026" v3="1025" />+                <face v1="1033" v2="1018" v3="1017" />+                <face v1="1033" v2="109" v3="1018" />+                <face v1="70" v2="1035" v3="71" />+                <face v1="109" v2="63" v3="110" />+                <face v1="1080" v2="315" v3="1325" />+                <face v1="339" v2="341" v3="43" />+                <face v1="339" v2="340" v3="341" />+                <face v1="1320" v2="1636" v3="1207" />+                <face v1="298" v2="1636" v3="1320" />+                <face v1="105" v2="301" v3="89" />+                <face v1="993" v2="53" v3="50" />+                <face v1="53" v2="993" v3="992" />+                <face v1="293" v2="224" v3="24" />+                <face v1="225" v2="224" v3="293" />+                <face v1="1042" v2="289" v3="21" />+                <face v1="1042" v2="878" v3="289" />+                <face v1="878" v2="1146" v3="1308" />+                <face v1="1149" v2="1308" v3="1152" />+                <face v1="1149" v2="1297" v3="1308" />+                <face v1="11" v2="272" v3="1130" />+                <face v1="1155" v2="1289" v3="1151" />+                <face v1="1132" v2="1158" v3="1130" />+                <face v1="1132" v2="1159" v3="1158" />+                <face v1="280" v2="279" v3="1157" />+                <face v1="274" v2="883" v3="1285" />+                <face v1="1128" v2="1140" v3="1159" />+                <face v1="281" v2="278" v3="17" />+                <face v1="266" v2="272" v3="268" />+                <face v1="413" v2="406" v3="6" />+                <face v1="406" v2="413" v3="254" />+                <face v1="1056" v2="1087" v3="1282" />+                <face v1="1087" v2="1056" v3="407" />+                <face v1="1160" v2="282" v3="296" />+                <face v1="1160" v2="1046" v3="282" />+                <face v1="1282" v2="1087" v3="1281" />+                <face v1="1161" v2="1281" v3="249" />+                <face v1="1161" v2="1163" v3="1281" />+                <face v1="970" v2="1364" v3="1087" />+                <face v1="1364" v2="970" v3="1189" />+                <face v1="1087" v2="1364" v3="409" />+                <face v1="1280" v2="1161" v3="249" />+                <face v1="26" v2="245" v3="1162" />+                <face v1="1280" v2="404" v3="243" />+                <face v1="26" v2="1057" v3="245" />+                <face v1="1356" v2="30" v3="243" />+                <face v1="1356" v2="1355" v3="30" />+                <face v1="1548" v2="1272" v3="1355" />+                <face v1="1451" v2="1421" v3="16" />+                <face v1="1264" v2="1265" v3="36" />+                <face v1="407" v2="1091" v3="412" />+                <face v1="352" v2="1091" v3="224" />+                <face v1="1012" v2="212" v3="121" />+                <face v1="212" v2="1012" v3="1262" />+                <face v1="352" v2="218" v3="1260" />+                <face v1="203" v2="201" v3="139" />+                <face v1="56" v2="202" v3="1065" />+                <face v1="1236" v2="381" v3="201" />+                <face v1="188" v2="997" v3="367" />+                <face v1="188" v2="976" v3="997" />+                <face v1="185" v2="188" v3="186" />+                <face v1="185" v2="189" v3="188" />+                <face v1="1248" v2="193" v3="194" />+                <face v1="1248" v2="1350" v3="193" />+                <face v1="975" v2="198" v3="996" />+                <face v1="198" v2="975" v3="196" />+                <face v1="368" v2="1002" v3="363" />+                <face v1="998" v2="1002" v3="368" />+                <face v1="366" v2="181" v3="979" />+                <face v1="1345" v2="365" v3="995" />+                <face v1="162" v2="161" v3="1073" />+                <face v1="357" v2="981" v3="356" />+                <face v1="148" v2="149" v3="177" />+                <face v1="1006" v2="162" v3="1074" />+                <face v1="989" v2="1004" v3="1006" />+                <face v1="376" v2="1242" v3="375" />+                <face v1="1242" v2="376" v3="395" />+                <face v1="139" v2="381" v3="1004" />+                <face v1="381" v2="1236" v3="1239" />+                <face v1="1635" v2="50" v3="1031" />+                <face v1="1008" v2="116" v3="34" />+                <face v1="1183" v2="39" v3="1227" />+                <face v1="1224" v2="1183" v3="1079" />+                <face v1="119" v2="1635" v3="1031" />+                <face v1="1080" v2="323" v3="315" />+                <face v1="1080" v2="116" v3="323" />+                <face v1="1028" v2="1220" v3="972" />+                <face v1="1029" v2="1220" v3="1028" />+                <face v1="315" v2="1329" v3="1325" />+                <face v1="1329" v2="315" v3="1027" />+                <face v1="384" v2="1325" v3="1329" />+                <face v1="384" v2="985" v3="1325" />+                <face v1="1081" v2="986" v3="384" />+                <face v1="1081" v2="1028" v3="986" />+                <face v1="1212" v2="105" v3="298" />+                <face v1="1212" v2="1320" v3="1083" />+                <face v1="100" v2="1212" v3="1083" />+                <face v1="98" v2="1083" v3="1186" />+                <face v1="1033" v2="97" v3="96" />+                <face v1="324" v2="1017" v3="92" />+                <face v1="1203" v2="1026" v3="319" />+                <face v1="1203" v2="300" v3="1026" />+                <face v1="89" v2="301" v3="124" />+                <face v1="1322" v2="1207" v3="1636" />+                <face v1="1201" v2="1207" v3="1322" />+                <face v1="1207" v2="1201" v3="1206" />+                <face v1="81" v2="339" v3="80" />+                <face v1="81" v2="348" v3="339" />+                <face v1="86" v2="80" v3="78" />+                <face v1="345" v2="66" v3="76" />+                <face v1="59" v2="85" v3="60" />+                <face v1="60" v2="1034" v3="61" />+                <face v1="60" v2="66" v3="1034" />+                <face v1="53" v2="56" v3="1193" />+                <face v1="50" v2="991" v3="993" />+                <face v1="266" v2="1129" v3="1131" />+                <face v1="1050" v2="1129" v3="266" />+                <face v1="84" v2="66" v3="60" />+                <face v1="70" v2="72" v3="1084" />+                <face v1="70" v2="69" v3="72" />+                <face v1="1079" v2="1227" v3="124" />+                <face v1="458" v2="960" v3="1111" />+                <face v1="1272" v2="1451" v3="29" />+                <face v1="1163" v2="296" v3="965" />+                <face v1="1160" v2="296" v3="1163" />+                <face v1="280" v2="1157" v3="1159" />+                <face v1="1151" v2="1158" v3="1155" />+                <face v1="1146" v2="878" v3="1147" />+                <face v1="1421" v2="275" v3="16" />+                <face v1="273" v2="275" v3="1421" />+                <face v1="1052" v2="263" v3="8" />+                <face v1="19" v2="1451" v3="16" />+                <face v1="19" v2="8" v3="1451" />+                <face v1="1129" v2="1132" v3="1131" />+                <face v1="1129" v2="1128" v3="1132" />+                <face v1="1052" v2="1128" v3="1053" />+                <face v1="1052" v2="18" v3="1128" />+                <face v1="1008" v2="34" v3="31" />+                <face v1="353" v2="1008" v3="1091" />+                <face v1="31" v2="1091" v3="1008" />+                <face v1="1" v2="6" v3="34" />+                <face v1="1" v2="5" v3="6" />+                <face v1="1" v2="1640" v3="5" />+                <face v1="1123" v2="1059" v3="1121" />+                <face v1="1111" v2="1090" v3="458" />+                <face v1="1076" v2="340" v3="1264" />+                <face v1="1099" v2="1379" v3="1641" />+                <face v1="1099" v2="1102" v3="1379" />+            </lodfacelist>+            <lodfacelist submeshindex="2" numfaces="170">+                <face v1="7" v2="5" v3="9" />+                <face v1="12" v2="9" v3="14" />+                <face v1="12" v2="15" v3="9" />+                <face v1="16" v2="12" v3="14" />+                <face v1="20" v2="21" v3="22" />+                <face v1="20" v2="16" v3="21" />+                <face v1="24" v2="20" v3="22" />+                <face v1="24" v2="27" v3="20" />+                <face v1="28" v2="27" v3="30" />+                <face v1="28" v2="31" v3="27" />+                <face v1="32" v2="31" v3="28" />+                <face v1="32" v2="35" v3="31" />+                <face v1="36" v2="39" v3="32" />+                <face v1="44" v2="45" v3="46" />+                <face v1="12" v2="59" v3="57" />+                <face v1="60" v2="83" v3="66" />+                <face v1="60" v2="57" v3="83" />+                <face v1="64" v2="60" v3="66" />+                <face v1="68" v2="90" v3="70" />+                <face v1="72" v2="68" v3="70" />+                <face v1="11" v2="60" v3="64" />+                <face v1="15" v2="57" v3="60" />+                <face v1="57" v2="15" v3="12" />+                <face v1="59" v2="12" v3="16" />+                <face v1="20" v2="53" v3="16" />+                <face v1="27" v2="49" v3="20" />+                <face v1="45" v2="27" v3="31" />+                <face v1="35" v2="41" v3="31" />+                <face v1="68" v2="72" v3="5" />+                <face v1="57" v2="81" v3="83" />+                <face v1="42" v2="78" v3="90" />+                <face v1="44" v2="46" v3="96" />+                <face v1="21" v2="14" v3="102" />+                <face v1="30" v2="24" v3="106" />+                <face v1="115" v2="32" v3="113" />+                <face v1="5" v2="36" v3="115" />+                <face v1="5" v2="115" v3="119" />+                <face v1="124" v2="125" v3="126" />+                <face v1="124" v2="127" v3="125" />+                <face v1="106" v2="143" v3="141" />+                <face v1="102" v2="143" v3="106" />+                <face v1="144" v2="102" v3="131" />+                <face v1="131" v2="119" v3="149" />+                <face v1="119" v2="131" v3="102" />+                <face v1="83" v2="152" v3="151" />+                <face v1="156" v2="81" v3="126" />+                <face v1="126" v2="81" v3="196" />+                <face v1="143" v2="121" v3="141" />+                <face v1="143" v2="124" v3="121" />+                <face v1="127" v2="144" v3="131" />+                <face v1="134" v2="149" v3="139" />+                <face v1="149" v2="134" v3="131" />+                <face v1="152" v2="133" v3="151" />+                <face v1="126" v2="125" v3="156" />+                <face v1="196" v2="120" v3="126" />+                <face v1="161" v2="162" v3="163" />+                <face v1="165" v2="166" v3="167" />+                <face v1="171" v2="174" v3="175" />+                <face v1="174" v2="171" v3="166" />+                <face v1="139" v2="177" v3="178" />+                <face v1="177" v2="139" v3="149" />+                <face v1="178" v2="177" v3="182" />+                <face v1="182" v2="191" v3="186" />+                <face v1="191" v2="182" v3="177" />+                <face v1="188" v2="192" v3="190" />+                <face v1="192" v2="188" v3="191" />+                <face v1="192" v2="193" v3="190" />+                <face v1="141" v2="193" v3="192" />+                <face v1="196" v2="163" v3="198" />+                <face v1="161" v2="163" v3="196" />+                <face v1="96" v2="166" v3="165" />+                <face v1="90" v2="166" v3="96" />+                <face v1="166" v2="90" v3="174" />+                <face v1="119" v2="177" v3="149" />+                <face v1="177" v2="115" v3="191" />+                <face v1="191" v2="113" v3="192" />+                <face v1="113" v2="141" v3="192" />+                <face v1="106" v2="141" v3="113" />+                <face v1="81" v2="161" v3="196" />+                <face v1="96" v2="161" v3="81" />+                <face v1="171" v2="175" v3="178" />+                <face v1="167" v2="186" v3="188" />+                <face v1="167" v2="166" v3="186" />+                <face v1="163" v2="162" v3="190" />+                <face v1="193" v2="198" v3="163" />+                <face v1="198" v2="193" v3="121" />+                <face v1="163" v2="190" v3="193" />+                <face v1="188" v2="162" v3="167" />+                <face v1="162" v2="188" v3="190" />+                <face v1="171" v2="186" v3="166" />+                <face v1="171" v2="182" v3="186" />+                <face v1="182" v2="171" v3="178" />+                <face v1="136" v2="178" v3="175" />+                <face v1="136" v2="139" v3="178" />+                <face v1="113" v2="191" v3="115" />+                <face v1="115" v2="177" v3="119" />+                <face v1="174" v2="83" v3="151" />+                <face v1="83" v2="174" v3="90" />+                <face v1="96" v2="165" v3="161" />+                <face v1="141" v2="121" v3="193" />+                <face v1="186" v2="191" v3="188" />+                <face v1="175" v2="151" v3="136" />+                <face v1="151" v2="175" v3="174" />+                <face v1="161" v2="167" v3="162" />+                <face v1="165" v2="167" v3="161" />+                <face v1="133" v2="156" v3="125" />+                <face v1="156" v2="133" v3="152" />+                <face v1="136" v2="151" v3="133" />+                <face v1="143" v2="127" v3="124" />+                <face v1="144" v2="127" v3="143" />+                <face v1="196" v2="198" v3="120" />+                <face v1="152" v2="81" v3="156" />+                <face v1="81" v2="152" v3="83" />+                <face v1="102" v2="144" v3="143" />+                <face v1="133" v2="139" v3="136" />+                <face v1="134" v2="139" v3="133" />+                <face v1="131" v2="134" v3="133" />+                <face v1="125" v2="131" v3="133" />+                <face v1="127" v2="131" v3="125" />+                <face v1="126" v2="121" v3="124" />+                <face v1="121" v2="126" v3="120" />+                <face v1="121" v2="120" v3="198" />+                <face v1="9" v2="5" v3="119" />+                <face v1="115" v2="36" v3="32" />+                <face v1="113" v2="32" v3="28" />+                <face v1="113" v2="30" v3="106" />+                <face v1="113" v2="28" v3="30" />+                <face v1="24" v2="22" v3="106" />+                <face v1="22" v2="102" v3="106" />+                <face v1="22" v2="21" v3="102" />+                <face v1="102" v2="14" v3="9" />+                <face v1="9" v2="119" v3="102" />+                <face v1="81" v2="44" v3="96" />+                <face v1="81" v2="50" v3="44" />+                <face v1="46" v2="42" v3="96" />+                <face v1="42" v2="90" v3="96" />+                <face v1="90" v2="78" v3="70" />+                <face v1="90" v2="66" v3="83" />+                <face v1="81" v2="57" v3="54" />+                <face v1="81" v2="54" v3="50" />+                <face v1="68" v2="5" v3="7" />+                <face v1="39" v2="72" v3="42" />+                <face v1="72" v2="39" v3="5" />+                <face v1="41" v2="35" v3="39" />+                <face v1="45" v2="31" v3="41" />+                <face v1="49" v2="27" v3="45" />+                <face v1="53" v2="20" v3="49" />+                <face v1="59" v2="16" v3="53" />+                <face v1="60" v2="11" v3="15" />+                <face v1="64" v2="7" v3="11" />+                <face v1="64" v2="68" v3="7" />+                <face v1="78" v2="72" v3="70" />+                <face v1="78" v2="42" v3="72" />+                <face v1="68" v2="66" v3="90" />+                <face v1="68" v2="64" v3="66" />+                <face v1="57" v2="53" v3="54" />+                <face v1="57" v2="59" v3="53" />+                <face v1="54" v2="49" v3="50" />+                <face v1="54" v2="53" v3="49" />+                <face v1="50" v2="45" v3="44" />+                <face v1="50" v2="49" v3="45" />+                <face v1="46" v2="41" v3="42" />+                <face v1="46" v2="45" v3="41" />+                <face v1="41" v2="39" v3="42" />+                <face v1="32" v2="39" v3="35" />+                <face v1="30" v2="27" v3="24" />+                <face v1="21" v2="16" v3="14" />+                <face v1="15" v2="11" v3="9" />+                <face v1="11" v2="7" v3="9" />+                <face v1="5" v2="39" v3="36" />+            </lodfacelist>+            <lodfacelist submeshindex="3" numfaces="282">+                <face v1="6" v2="3" v3="2" />+                <face v1="2" v2="4" v3="6" />+                <face v1="159" v2="3" v3="6" />+                <face v1="6" v2="14" v3="159" />+                <face v1="17" v2="14" v3="6" />+                <face v1="17" v2="6" v3="20" />+                <face v1="6" v2="22" v3="20" />+                <face v1="25" v2="26" v3="23" />+                <face v1="20" v2="22" v3="25" />+                <face v1="6" v2="26" v3="25" />+                <face v1="25" v2="22" v3="6" />+                <face v1="23" v2="26" v3="29" />+                <face v1="29" v2="26" v3="6" />+                <face v1="27" v2="29" v3="33" />+                <face v1="33" v2="29" v3="6" />+                <face v1="38" v2="187" v3="37" />+                <face v1="33" v2="6" v3="37" />+                <face v1="37" v2="187" v3="33" />+                <face v1="6" v2="38" v3="37" />+                <face v1="6" v2="4" v3="40" />+                <face v1="40" v2="38" v3="6" />+                <face v1="47" v2="41" v3="291" />+                <face v1="45" v2="48" v3="49" />+                <face v1="49" v2="291" v3="45" />+                <face v1="50" v2="51" v3="49" />+                <face v1="49" v2="48" v3="50" />+                <face v1="47" v2="291" v3="49" />+                <face v1="49" v2="51" v3="47" />+                <face v1="56" v2="57" v3="54" />+                <face v1="54" v2="57" v3="221" />+                <face v1="285" v2="206" v3="54" />+                <face v1="206" v2="56" v3="54" />+                <face v1="67" v2="68" v3="65" />+                <face v1="69" v2="63" v3="65" />+                <face v1="65" v2="68" v3="69" />+                <face v1="63" v2="70" v3="73" />+                <face v1="73" v2="65" v3="63" />+                <face v1="67" v2="65" v3="73" />+                <face v1="74" v2="75" v3="76" />+                <face v1="80" v2="74" v3="76" />+                <face v1="82" v2="75" v3="74" />+                <face v1="86" v2="262" v3="82" />+                <face v1="82" v2="74" v3="86" />+                <face v1="82" v2="262" v3="75" />+                <face v1="74" v2="90" v3="86" />+                <face v1="86" v2="90" v3="87" />+                <face v1="74" v2="89" v3="90" />+                <face v1="90" v2="89" v3="91" />+                <face v1="74" v2="93" v3="94" />+                <face v1="94" v2="89" v3="74" />+                <face v1="94" v2="93" v3="100" />+                <face v1="91" v2="89" v3="94" />+                <face v1="74" v2="97" v3="100" />+                <face v1="100" v2="93" v3="74" />+                <face v1="100" v2="97" v3="286" />+                <face v1="74" v2="101" v3="286" />+                <face v1="286" v2="97" v3="74" />+                <face v1="74" v2="287" v3="101" />+                <face v1="74" v2="109" v3="287" />+                <face v1="113" v2="109" v3="74" />+                <face v1="113" v2="74" v3="80" />+                <face v1="115" v2="116" v3="117" />+                <face v1="117" v2="118" v3="115" />+                <face v1="117" v2="116" v3="119" />+                <face v1="121" v2="118" v3="117" />+                <face v1="122" v2="117" v3="119" />+                <face v1="121" v2="117" v3="122" />+                <face v1="122" v2="125" v3="121" />+                <face v1="135" v2="136" v3="134" />+                <face v1="134" v2="136" v3="126" />+                <face v1="137" v2="138" v3="139" />+                <face v1="141" v2="142" v3="139" />+                <face v1="139" v2="138" v3="141" />+                <face v1="139" v2="142" v3="143" />+                <face v1="148" v2="137" v3="150" />+                <face v1="150" v2="151" v3="148" />+                <face v1="137" v2="139" v3="150" />+                <face v1="143" v2="4" v3="150" />+                <face v1="150" v2="139" v3="143" />+                <face v1="4" v2="151" v3="150" />+                <face v1="154" v2="137" v3="148" />+                <face v1="159" v2="158" v3="154" />+                <face v1="158" v2="137" v3="154" />+                <face v1="159" v2="126" v3="158" />+                <face v1="159" v2="14" v3="162" />+                <face v1="159" v2="162" v3="126" />+                <face v1="126" v2="162" v3="322" />+                <face v1="162" v2="17" v3="322" />+                <face v1="322" v2="17" v3="20" />+                <face v1="314" v2="178" v3="310" />+                <face v1="20" v2="179" v3="314" />+                <face v1="314" v2="179" v3="178" />+                <face v1="310" v2="178" v3="181" />+                <face v1="181" v2="182" v3="310" />+                <face v1="178" v2="183" v3="181" />+                <face v1="181" v2="183" v3="184" />+                <face v1="186" v2="182" v3="181" />+                <face v1="181" v2="184" v3="186" />+                <face v1="187" v2="125" v3="189" />+                <face v1="189" v2="125" v3="122" />+                <face v1="186" v2="184" v3="189" />+                <face v1="189" v2="122" v3="186" />+                <face v1="187" v2="121" v3="125" />+                <face v1="196" v2="4" v3="143" />+                <face v1="196" v2="121" v3="187" />+                <face v1="113" v2="200" v3="109" />+                <face v1="80" v2="203" v3="113" />+                <face v1="204" v2="200" v3="113" />+                <face v1="113" v2="203" v3="204" />+                <face v1="47" v2="205" v3="206" />+                <face v1="206" v2="41" v3="47" />+                <face v1="206" v2="205" v3="56" />+                <face v1="109" v2="200" v3="208" />+                <face v1="208" v2="287" v3="109" />+                <face v1="208" v2="200" v3="204" />+                <face v1="285" v2="54" v3="218" />+                <face v1="218" v2="54" v3="221" />+                <face v1="286" v2="101" v3="285" />+                <face v1="239" v2="240" v3="238" />+                <face v1="280" v2="91" v3="244" />+                <face v1="244" v2="245" v3="280" />+                <face v1="91" v2="94" v3="244" />+                <face v1="244" v2="94" v3="100" />+                <face v1="100" v2="245" v3="244" />+                <face v1="246" v2="247" v3="240" />+                <face v1="239" v2="248" v3="246" />+                <face v1="246" v2="240" v3="239" />+                <face v1="249" v2="250" v3="246" />+                <face v1="246" v2="248" v3="249" />+                <face v1="277" v2="247" v3="246" />+                <face v1="246" v2="250" v3="277" />+                <face v1="87" v2="90" v3="252" />+                <face v1="252" v2="90" v3="91" />+                <face v1="280" v2="254" v3="252" />+                <face v1="252" v2="91" v3="280" />+                <face v1="255" v2="87" v3="252" />+                <face v1="252" v2="254" v3="255" />+                <face v1="277" v2="250" v3="73" />+                <face v1="249" v2="67" v3="73" />+                <face v1="73" v2="250" v3="249" />+                <face v1="259" v2="262" v3="86" />+                <face v1="259" v2="86" v3="87" />+                <face v1="259" v2="87" v3="255" />+                <face v1="48" v2="268" v3="50" />+                <face v1="69" v2="268" v3="48" />+                <face v1="48" v2="63" v3="69" />+                <face v1="76" v2="75" v3="262" />+                <face v1="63" v2="48" v3="272" />+                <face v1="272" v2="48" v3="45" />+                <face v1="80" v2="76" v3="272" />+                <face v1="272" v2="45" v3="80" />+                <face v1="262" v2="63" v3="272" />+                <face v1="272" v2="76" v3="262" />+                <face v1="70" v2="63" v3="262" />+                <face v1="73" v2="70" v3="277" />+                <face v1="262" v2="259" v3="277" />+                <face v1="277" v2="70" v3="262" />+                <face v1="277" v2="259" v3="255" />+                <face v1="255" v2="254" v3="279" />+                <face v1="279" v2="277" v3="255" />+                <face v1="279" v2="254" v3="280" />+                <face v1="240" v2="247" v3="279" />+                <face v1="279" v2="280" v3="240" />+                <face v1="279" v2="247" v3="277" />+                <face v1="100" v2="229" v3="245" />+                <face v1="229" v2="238" v3="245" />+                <face v1="240" v2="280" v3="245" />+                <face v1="245" v2="238" v3="240" />+                <face v1="228" v2="100" v3="221" />+                <face v1="228" v2="229" v3="100" />+                <face v1="285" v2="218" v3="286" />+                <face v1="221" v2="100" v3="286" />+                <face v1="286" v2="218" v3="221" />+                <face v1="285" v2="101" v3="287" />+                <face v1="287" v2="288" v3="206" />+                <face v1="287" v2="206" v3="285" />+                <face v1="287" v2="208" v3="289" />+                <face v1="289" v2="288" v3="287" />+                <face v1="204" v2="41" v3="289" />+                <face v1="289" v2="208" v3="204" />+                <face v1="41" v2="206" v3="289" />+                <face v1="206" v2="288" v3="289" />+                <face v1="204" v2="203" v3="291" />+                <face v1="291" v2="41" v3="204" />+                <face v1="80" v2="45" v3="291" />+                <face v1="291" v2="203" v3="80" />+                <face v1="187" v2="38" v3="40" />+                <face v1="40" v2="196" v3="187" />+                <face v1="4" v2="196" v3="40" />+                <face v1="121" v2="196" v3="118" />+                <face v1="143" v2="142" v3="118" />+                <face v1="118" v2="196" v3="143" />+                <face v1="141" v2="296" v3="118" />+                <face v1="118" v2="142" v3="141" />+                <face v1="118" v2="296" v3="115" />+                <face v1="184" v2="27" v3="300" />+                <face v1="300" v2="189" v3="184" />+                <face v1="27" v2="33" v3="300" />+                <face v1="33" v2="187" v3="300" />+                <face v1="187" v2="189" v3="300" />+                <face v1="186" v2="122" v3="304" />+                <face v1="119" v2="303" v3="304" />+                <face v1="304" v2="122" v3="119" />+                <face v1="178" v2="23" v3="306" />+                <face v1="306" v2="183" v3="178" />+                <face v1="23" v2="29" v3="306" />+                <face v1="306" v2="29" v3="27" />+                <face v1="184" v2="183" v3="306" />+                <face v1="306" v2="27" v3="184" />+                <face v1="304" v2="307" v3="308" />+                <face v1="308" v2="186" v3="304" />+                <face v1="309" v2="310" v3="308" />+                <face v1="308" v2="307" v3="309" />+                <face v1="310" v2="182" v3="308" />+                <face v1="308" v2="182" v3="186" />+                <face v1="20" v2="25" v3="311" />+                <face v1="311" v2="25" v3="23" />+                <face v1="178" v2="179" v3="311" />+                <face v1="311" v2="23" v3="178" />+                <face v1="311" v2="179" v3="20" />+                <face v1="309" v2="313" v3="314" />+                <face v1="314" v2="310" v3="309" />+                <face v1="315" v2="20" v3="314" />+                <face v1="314" v2="313" v3="315" />+                <face v1="315" v2="319" v3="20" />+                <face v1="319" v2="322" v3="20" />+                <face v1="162" v2="14" v3="17" />+                <face v1="134" v2="326" v3="135" />+                <face v1="126" v2="322" v3="134" />+                <face v1="319" v2="326" v3="134" />+                <face v1="134" v2="322" v3="319" />+                <face v1="159" v2="154" v3="329" />+                <face v1="148" v2="330" v3="329" />+                <face v1="329" v2="154" v3="148" />+                <face v1="3" v2="159" v3="329" />+                <face v1="329" v2="330" v3="3" />+                <face v1="158" v2="126" v3="137" />+                <face v1="126" v2="332" v3="137" />+                <face v1="2" v2="151" v3="4" />+                <face v1="3" v2="330" v3="2" />+                <face v1="148" v2="151" v3="2" />+                <face v1="2" v2="330" v3="148" />+                <face v1="115" v2="296" v3="334" />+                <face v1="334" v2="116" v3="115" />+                <face v1="141" v2="138" v3="334" />+                <face v1="334" v2="296" v3="141" />+                <face v1="137" v2="332" v3="334" />+                <face v1="334" v2="138" v3="137" />+                <face v1="126" v2="136" v3="334" />+                <face v1="334" v2="332" v3="126" />+                <face v1="135" v2="326" v3="334" />+                <face v1="334" v2="136" v3="135" />+                <face v1="334" v2="326" v3="319" />+                <face v1="119" v2="116" v3="334" />+                <face v1="315" v2="313" v3="336" />+                <face v1="336" v2="319" v3="315" />+                <face v1="309" v2="307" v3="336" />+                <face v1="336" v2="313" v3="309" />+                <face v1="304" v2="303" v3="336" />+                <face v1="336" v2="307" v3="304" />+                <face v1="119" v2="334" v3="336" />+                <face v1="336" v2="303" v3="119" />+                <face v1="336" v2="334" v3="319" />+                <face v1="56" v2="205" v3="337" />+                <face v1="337" v2="57" v3="56" />+                <face v1="47" v2="51" v3="337" />+                <face v1="337" v2="205" v3="47" />+                <face v1="50" v2="268" v3="337" />+                <face v1="337" v2="51" v3="50" />+                <face v1="69" v2="68" v3="337" />+                <face v1="337" v2="268" v3="69" />+                <face v1="337" v2="68" v3="67" />+                <face v1="221" v2="57" v3="337" />+                <face v1="341" v2="67" v3="249" />+                <face v1="221" v2="337" v3="341" />+                <face v1="341" v2="337" v3="67" />+                <face v1="239" v2="238" v3="341" />+                <face v1="341" v2="248" v3="239" />+                <face v1="229" v2="228" v3="341" />+                <face v1="341" v2="238" v3="229" />+                <face v1="341" v2="228" v3="221" />+                <face v1="249" v2="248" v3="341" />+            </lodfacelist>+        </lodgenerated>+        <lodgenerated value="2500">+            <lodfacelist submeshindex="0" numfaces="21">+                <face v1="4" v2="2" v3="6" />+                <face v1="24" v2="14" v3="18" />+                <face v1="18" v2="14" v3="31" />+                <face v1="29" v2="19" v3="18" />+                <face v1="33" v2="2" v3="4" />+                <face v1="4" v2="3" v3="11" />+                <face v1="6" v2="2" v3="37" />+                <face v1="42" v2="37" v3="44" />+                <face v1="37" v2="42" v3="3" />+                <face v1="4" v2="6" v3="3" />+                <face v1="14" v2="24" v3="48" />+                <face v1="29" v2="51" v3="52" />+                <face v1="48" v2="52" v3="54" />+                <face v1="19" v2="52" v3="48" />+                <face v1="24" v2="18" v3="19" />+                <face v1="19" v2="48" v3="24" />+                <face v1="14" v2="48" v3="54" />+                <face v1="19" v2="29" v3="52" />+                <face v1="37" v2="3" v3="6" />+                <face v1="37" v2="2" v3="44" />+                <face v1="42" v2="11" v3="3" />+            </lodfacelist>+            <lodfacelist submeshindex="1" numfaces="982">+                <face v1="0" v2="1" v3="34" />+                <face v1="17" v2="15" v3="16" />+                <face v1="18" v2="19" v3="15" />+                <face v1="1272" v2="8" v3="30" />+                <face v1="43" v2="80" v3="339" />+                <face v1="1079" v2="50" v3="53" />+                <face v1="69" v2="70" v3="71" />+                <face v1="71" v2="63" v3="69" />+                <face v1="76" v2="86" v3="78" />+                <face v1="66" v2="85" v3="86" />+                <face v1="96" v2="102" v3="98" />+                <face v1="108" v2="109" v3="110" />+                <face v1="126" v2="127" v3="39" />+                <face v1="376" v2="146" v3="143" />+                <face v1="1073" v2="161" v3="165" />+                <face v1="1635" v2="119" v3="148" />+                <face v1="357" v2="148" v3="171" />+                <face v1="180" v2="188" v3="369" />+                <face v1="369" v2="183" v3="180" />+                <face v1="193" v2="195" v3="194" />+                <face v1="196" v2="197" v3="198" />+                <face v1="196" v2="195" v3="197" />+                <face v1="202" v2="203" v3="56" />+                <face v1="203" v2="139" v3="210" />+                <face v1="212" v2="171" v3="119" />+                <face v1="223" v2="224" v3="225" />+                <face v1="223" v2="222" v3="224" />+                <face v1="222" v2="353" v3="224" />+                <face v1="236" v2="243" v3="241" />+                <face v1="253" v2="413" v3="252" />+                <face v1="260" v2="1056" v3="965" />+                <face v1="268" v2="263" v3="266" />+                <face v1="268" v2="272" v3="11" />+                <face v1="273" v2="274" v3="275" />+                <face v1="273" v2="883" v3="274" />+                <face v1="280" v2="281" v3="279" />+                <face v1="260" v2="965" v3="287" />+                <face v1="1042" v2="965" v3="282" />+                <face v1="105" v2="300" v3="301" />+                <face v1="1083" v2="98" v3="102" />+                <face v1="124" v2="1227" v3="89" />+                <face v1="316" v2="63" v3="71" />+                <face v1="316" v2="110" v3="63" />+                <face v1="1260" v2="320" v3="1027" />+                <face v1="1260" v2="119" v3="320" />+                <face v1="324" v2="1027" v3="1025" />+                <face v1="329" v2="330" v3="92" />+                <face v1="331" v2="332" v3="333" />+                <face v1="333" v2="43" v3="331" />+                <face v1="43" v2="78" v3="80" />+                <face v1="341" v2="342" v3="331" />+                <face v1="43" v2="344" v3="345" />+                <face v1="347" v2="348" v3="349" />+                <face v1="355" v2="357" v3="356" />+                <face v1="359" v2="355" v3="356" />+                <face v1="359" v2="358" v3="355" />+                <face v1="148" v2="359" v3="152" />+                <face v1="363" v2="170" v3="364" />+                <face v1="170" v2="165" v3="364" />+                <face v1="186" v2="365" v3="185" />+                <face v1="367" v2="363" v3="369" />+                <face v1="170" v2="168" v3="222" />+                <face v1="985" v2="1329" v3="382" />+                <face v1="413" v2="397" v3="252" />+                <face v1="397" v2="398" v3="252" />+                <face v1="116" v2="972" v3="1321" />+                <face v1="404" v2="241" v3="243" />+                <face v1="406" v2="253" v3="407" />+                <face v1="406" v2="412" v3="31" />+                <face v1="406" v2="407" v3="412" />+                <face v1="397" v2="413" v3="6" />+                <face v1="433" v2="1405" v3="435" />+                <face v1="433" v2="436" v3="1405" />+                <face v1="440" v2="441" v3="442" />+                <face v1="444" v2="1447" v3="433" />+                <face v1="458" v2="349" v3="460" />+                <face v1="477" v2="478" v3="436" />+                <face v1="53" v2="484" v3="481" />+                <face v1="484" v2="762" v3="481" />+                <face v1="492" v2="489" v3="491" />+                <face v1="492" v2="1489" v3="489" />+                <face v1="678" v2="503" v3="501" />+                <face v1="678" v2="505" v3="503" />+                <face v1="531" v2="533" v3="530" />+                <face v1="539" v2="540" v3="541" />+                <face v1="540" v2="543" v3="530" />+                <face v1="541" v2="547" v3="539" />+                <face v1="553" v2="550" v3="555" />+                <face v1="539" v2="756" v3="556" />+                <face v1="1522" v2="563" v3="560" />+                <face v1="560" v2="567" v3="564" />+                <face v1="568" v2="569" v3="578" />+                <face v1="483" v2="580" v3="581" />+                <face v1="788" v2="731" v3="585" />+                <face v1="597" v2="600" v3="593" />+                <face v1="593" v2="600" v3="649" />+                <face v1="573" v2="605" v3="590" />+                <face v1="606" v2="607" v3="590" />+                <face v1="440" v2="1421" v3="422" />+                <face v1="423" v2="435" v3="422" />+                <face v1="444" v2="435" v3="423" />+                <face v1="444" v2="433" v3="435" />+                <face v1="1405" v2="436" v3="478" />+                <face v1="1428" v2="1308" v3="638" />+                <face v1="483" v2="643" v3="646" />+                <face v1="646" v2="649" v3="483" />+                <face v1="647" v2="649" v3="648" />+                <face v1="886" v2="593" v3="649" />+                <face v1="812" v2="886" v3="646" />+                <face v1="646" v2="643" v3="812" />+                <face v1="494" v2="653" v3="651" />+                <face v1="690" v2="693" v3="1489" />+                <face v1="494" v2="690" v3="1489" />+                <face v1="670" v2="868" v3="503" />+                <face v1="670" v2="505" v3="678" />+                <face v1="680" v2="59" v3="98" />+                <face v1="682" v2="685" v3="684" />+                <face v1="494" v2="651" v3="690" />+                <face v1="684" v2="693" v3="688" />+                <face v1="497" v2="501" v3="674" />+                <face v1="674" v2="699" v3="700" />+                <face v1="703" v2="704" v3="702" />+                <face v1="463" v2="707" v3="712" />+                <face v1="703" v2="707" v3="715" />+                <face v1="719" v2="864" v3="607" />+                <face v1="719" v2="510" v3="864" />+                <face v1="510" v2="466" v3="722" />+                <face v1="719" v2="1403" v3="510" />+                <face v1="727" v2="788" v3="543" />+                <face v1="788" v2="530" v3="543" />+                <face v1="733" v2="734" v3="735" />+                <face v1="733" v2="736" v3="734" />+                <face v1="569" v2="552" v3="578" />+                <face v1="569" v2="550" v3="552" />+                <face v1="560" v2="737" v3="567" />+                <face v1="560" v2="739" v3="737" />+                <face v1="563" v2="739" v3="560" />+                <face v1="563" v2="530" v3="739" />+                <face v1="745" v2="733" v3="747" />+                <face v1="750" v2="752" v3="749" />+                <face v1="547" v2="540" v3="754" />+                <face v1="758" v2="647" v3="790" />+                <face v1="790" v2="760" v3="758" />+                <face v1="761" v2="762" v3="581" />+                <face v1="762" v2="484" v3="581" />+                <face v1="678" v2="497" v3="769" />+                <face v1="769" v2="506" v3="678" />+                <face v1="678" v2="506" v3="795" />+                <face v1="734" v2="593" v3="550" />+                <face v1="742" v2="741" v3="778" />+                <face v1="530" v2="563" v3="741" />+                <face v1="555" v2="575" v3="786" />+                <face v1="789" v2="533" v3="790" />+                <face v1="533" v2="531" v3="790" />+                <face v1="795" v2="722" v3="1503" />+                <face v1="795" v2="510" v3="722" />+                <face v1="801" v2="621" v3="887" />+                <face v1="801" v2="627" v3="454" />+                <face v1="801" v2="803" v3="627" />+                <face v1="808" v2="622" v3="806" />+                <face v1="419" v2="418" v3="811" />+                <face v1="457" v2="454" v3="627" />+                <face v1="808" v2="621" v3="622" />+                <face v1="827" v2="803" v3="801" />+                <face v1="722" v2="466" v3="463" />+                <face v1="463" v2="1503" v3="722" />+                <face v1="466" v2="614" v3="1629" />+                <face v1="832" v2="811" v3="418" />+                <face v1="832" v2="833" v3="811" />+                <face v1="737" v2="533" v3="789" />+                <face v1="1522" v2="741" v3="563" />+                <face v1="595" v2="1515" v3="597" />+                <face v1="595" v2="736" v3="1515" />+                <face v1="756" v2="1521" v3="556" />+                <face v1="564" v2="733" v3="745" />+                <face v1="567" v2="736" v3="733" />+                <face v1="567" v2="737" v3="736" />+                <face v1="540" v2="547" v3="541" />+                <face v1="754" v2="756" v3="547" />+                <face v1="349" v2="348" v3="460" />+                <face v1="704" v2="703" v3="715" />+                <face v1="707" v2="463" v3="856" />+                <face v1="856" v2="937" v3="707" />+                <face v1="703" v2="702" v3="712" />+                <face v1="712" v2="707" v3="703" />+                <face v1="685" v2="682" v3="858" />+                <face v1="688" v2="686" v3="864" />+                <face v1="864" v2="686" v3="675" />+                <face v1="688" v2="506" v3="684" />+                <face v1="868" v2="501" v3="503" />+                <face v1="515" v2="691" v3="876" />+                <face v1="876" v2="1500" v3="515" />+                <face v1="874" v2="653" v3="494" />+                <face v1="814" v2="643" v3="424" />+                <face v1="814" v2="812" v3="643" />+                <face v1="646" v2="886" v3="649" />+                <face v1="647" v2="758" v3="649" />+                <face v1="758" v2="483" v3="649" />+                <face v1="879" v2="880" v3="881" />+                <face v1="879" v2="882" v3="880" />+                <face v1="273" v2="820" v3="883" />+                <face v1="431" v2="477" v3="436" />+                <face v1="454" v2="886" v3="801" />+                <face v1="827" v2="887" v3="832" />+                <face v1="832" v2="418" v3="827" />+                <face v1="648" v2="600" v3="597" />+                <face v1="648" v2="649" v3="600" />+                <face v1="593" v2="595" v3="597" />+                <face v1="590" v2="864" v3="896" />+                <face v1="896" v2="556" v3="590" />+                <face v1="575" v2="555" v3="903" />+                <face v1="1522" v2="752" v3="909" />+                <face v1="750" v2="568" v3="578" />+                <face v1="578" v2="553" v3="750" />+                <face v1="564" v2="1522" v3="560" />+                <face v1="896" v2="539" v3="556" />+                <face v1="903" v2="555" v3="550" />+                <face v1="550" v2="573" v3="903" />+                <face v1="593" v2="734" v3="595" />+                <face v1="734" v2="736" v3="595" />+                <face v1="737" v2="739" v3="533" />+                <face v1="539" v2="543" v3="540" />+                <face v1="788" v2="529" v3="531" />+                <face v1="691" v2="515" v3="516" />+                <face v1="1489" v2="660" v3="489" />+                <face v1="98" v2="660" v3="680" />+                <face v1="699" v2="660" v3="685" />+                <face v1="685" v2="693" v3="684" />+                <face v1="693" v2="690" v3="686" />+                <face v1="86" v2="85" v3="938" />+                <face v1="856" v2="460" v3="935" />+                <face v1="937" v2="86" v3="938" />+                <face v1="715" v2="868" v3="940" />+                <face v1="945" v2="938" v3="59" />+                <face v1="581" v2="731" v3="921" />+                <face v1="614" v2="454" v3="457" />+                <face v1="614" v2="1403" v3="454" />+                <face v1="444" v2="423" v3="952" />+                <face v1="440" v2="442" v3="820" />+                <face v1="820" v2="1421" v3="440" />+                <face v1="419" v2="955" v3="457" />+                <face v1="274" v2="281" v3="275" />+                <face v1="281" v2="17" v3="275" />+                <face v1="16" v2="275" v3="17" />+                <face v1="1073" v2="165" v3="395" />+                <face v1="143" v2="393" v3="376" />+                <face v1="196" v2="194" v3="195" />+                <face v1="1248" v2="976" v3="189" />+                <face v1="978" v2="386" v3="981" />+                <face v1="218" v2="168" v3="982" />+                <face v1="353" v2="222" v3="218" />+                <face v1="984" v2="985" v3="986" />+                <face v1="986" v2="1028" v3="984" />+                <face v1="143" v2="210" v3="139" />+                <face v1="991" v2="992" v3="993" />+                <face v1="991" v2="53" v3="992" />+                <face v1="376" v2="293" v3="24" />+                <face v1="24" v2="146" v3="376" />+                <face v1="976" v2="996" v3="997" />+                <face v1="976" v2="1248" v3="996" />+                <face v1="998" v2="363" v3="367" />+                <face v1="161" v2="162" v3="386" />+                <face v1="386" v2="180" v3="161" />+                <face v1="364" v2="165" v3="161" />+                <face v1="161" v2="183" v3="364" />+                <face v1="1002" v2="168" v3="363" />+                <face v1="168" v2="170" v3="363" />+                <face v1="358" v2="359" v3="148" />+                <face v1="152" v2="989" v3="1005" />+                <face v1="152" v2="359" v3="989" />+                <face v1="1260" v2="116" v3="1008" />+                <face v1="1079" v2="124" v3="50" />+                <face v1="345" v2="72" v3="66" />+                <face v1="345" v2="344" v3="72" />+                <face v1="331" v2="43" v3="341" />+                <face v1="333" v2="332" v3="344" />+                <face v1="344" v2="43" v3="333" />+                <face v1="1016" v2="1017" v3="1018" />+                <face v1="1023" v2="1018" v3="109" />+                <face v1="109" v2="108" v3="1023" />+                <face v1="1025" v2="1026" v3="105" />+                <face v1="1027" v2="324" v3="330" />+                <face v1="324" v2="92" v3="330" />+                <face v1="59" v2="96" v3="98" />+                <face v1="124" v2="1030" v3="1031" />+                <face v1="1033" v2="59" v3="109" />+                <face v1="316" v2="71" v3="1035" />+                <face v1="102" v2="100" v3="1083" />+                <face v1="324" v2="100" v3="102" />+                <face v1="1026" v2="300" v3="105" />+                <face v1="965" v2="1042" v3="287" />+                <face v1="224" v2="407" v3="260" />+                <face v1="287" v2="21" v3="260" />+                <face v1="287" v2="1042" v3="21" />+                <face v1="1046" v2="1158" v3="1047" />+                <face v1="1050" v2="263" v3="1052" />+                <face v1="406" v2="31" v3="6" />+                <face v1="1056" v2="260" v3="407" />+                <face v1="8" v2="1057" v3="26" />+                <face v1="8" v2="263" v3="1057" />+                <face v1="1059" v2="1060" v3="0" />+                <face v1="56" v2="143" v3="146" />+                <face v1="991" v2="202" v3="56" />+                <face v1="991" v2="201" v3="202" />+                <face v1="218" v2="198" v3="197" />+                <face v1="218" v2="982" v3="1070" />+                <face v1="1070" v2="996" v3="218" />+                <face v1="369" v2="364" v3="183" />+                <face v1="386" v2="188" v3="180" />+                <face v1="148" v2="119" v3="171" />+                <face v1="195" v2="193" v3="197" />+                <face v1="148" v2="355" v3="358" />+                <face v1="1073" v2="989" v3="1074" />+                <face v1="1073" v2="376" v3="989" />+                <face v1="139" v2="393" v3="143" />+                <face v1="1201" v2="127" v3="126" />+                <face v1="1201" v2="1227" v3="127" />+                <face v1="108" v2="1028" v3="1081" />+                <face v1="108" v2="316" v3="1028" />+                <face v1="316" v2="108" v3="110" />+                <face v1="72" v2="331" v3="1084" />+                <face v1="263" v2="1050" v3="266" />+                <face v1="236" v2="241" v3="1087" />+                <face v1="341" v2="340" v3="342" />+                <face v1="348" v2="347" v3="1090" />+                <face v1="412" v2="1091" v3="31" />+                <face v1="8" v2="26" v3="30" />+                <face v1="26" v2="1161" v3="30" />+                <face v1="26" v2="11" v3="1161" />+                <face v1="17" v2="1159" v3="15" />+                <face v1="21" v2="289" v3="56" />+                <face v1="1264" v2="116" v3="1076" />+                <face v1="1111" v2="340" v3="1090" />+                <face v1="1376" v2="1059" v3="116" />+                <face v1="1059" v2="0" v3="34" />+                <face v1="31" v2="34" v3="6" />+                <face v1="8" v2="18" v3="1052" />+                <face v1="8" v2="19" v3="18" />+                <face v1="1050" v2="1128" v3="1129" />+                <face v1="1130" v2="1131" v3="1132" />+                <face v1="282" v2="1046" v3="1152" />+                <face v1="280" v2="1159" v3="17" />+                <face v1="268" v2="11" v3="245" />+                <face v1="15" v2="1159" v3="18" />+                <face v1="268" v2="1057" v3="263" />+                <face v1="1057" v2="268" v3="245" />+                <face v1="1152" v2="1146" v3="282" />+                <face v1="1158" v2="1151" v3="1047" />+                <face v1="1155" v2="1158" v3="1159" />+                <face v1="16" v2="15" v3="19" />+                <face v1="1160" v2="1161" v3="11" />+                <face v1="1160" v2="1163" v3="1161" />+                <face v1="1451" v2="8" v3="1272" />+                <face v1="1111" v2="960" v3="340" />+                <face v1="34" v2="116" v3="1059" />+                <face v1="39" v2="127" v3="1227" />+                <face v1="1189" v2="253" v3="252" />+                <face v1="1189" v2="970" v3="253" />+                <face v1="201" v2="991" v3="50" />+                <face v1="1079" v2="53" v3="1085" />+                <face v1="1085" v2="53" v3="481" />+                <face v1="1017" v2="324" v3="1033" />+                <face v1="491" v2="1083" v3="1322" />+                <face v1="1320" v2="100" v3="324" />+                <face v1="1320" v2="324" v3="105" />+                <face v1="1018" v2="1023" v3="382" />+                <face v1="1027" v2="330" v3="111" />+                <face v1="1029" v2="1035" v3="1220" />+                <face v1="116" v2="984" v3="972" />+                <face v1="50" v2="124" v3="1031" />+                <face v1="1079" v2="481" v3="1224" />+                <face v1="1079" v2="1085" v3="481" />+                <face v1="1227" v2="1201" v3="1228" />+                <face v1="1321" v2="342" v3="116" />+                <face v1="116" v2="340" v3="1076" />+                <face v1="1239" v2="152" v3="1005" />+                <face v1="152" v2="1239" v3="148" />+                <face v1="395" v2="376" v3="1073" />+                <face v1="1074" v2="989" v3="359" />+                <face v1="395" v2="170" v3="1242" />+                <face v1="170" v2="395" v3="165" />+                <face v1="1073" v2="1074" v3="162" />+                <face v1="162" v2="359" v3="356" />+                <face v1="148" v2="357" v3="355" />+                <face v1="162" v2="981" v3="386" />+                <face v1="356" v2="981" v3="162" />+                <face v1="193" v2="218" v3="197" />+                <face v1="978" v2="365" v3="186" />+                <face v1="995" v2="365" v3="978" />+                <face v1="369" v2="363" v3="364" />+                <face v1="982" v2="998" v3="1070" />+                <face v1="982" v2="1002" v3="998" />+                <face v1="218" v2="996" v3="198" />+                <face v1="201" v2="50" v3="1236" />+                <face v1="202" v2="201" v3="203" />+                <face v1="56" v2="210" v3="143" />+                <face v1="56" v2="203" v3="210" />+                <face v1="201" v2="381" v3="139" />+                <face v1="193" v2="1260" v3="218" />+                <face v1="1260" v2="193" v3="171" />+                <face v1="1260" v2="1008" v3="353" />+                <face v1="224" v2="1091" v3="407" />+                <face v1="817" v2="960" v3="458" />+                <face v1="960" v2="1264" v3="340" />+                <face v1="1275" v2="243" v3="236" />+                <face v1="1355" v2="1272" v3="30" />+                <face v1="30" v2="1280" v3="243" />+                <face v1="30" v2="1161" v3="1280" />+                <face v1="1280" v2="249" v3="404" />+                <face v1="11" v2="1046" v3="1160" />+                <face v1="965" v2="249" v3="1163" />+                <face v1="249" v2="965" v3="1282" />+                <face v1="1056" v2="1282" v3="965" />+                <face v1="1159" v2="1128" v3="18" />+                <face v1="1128" v2="1159" v3="1132" />+                <face v1="1287" v2="1131" v3="1130" />+                <face v1="266" v2="1131" v3="1287" />+                <face v1="1155" v2="279" v3="1284" />+                <face v1="1159" v2="279" v3="1155" />+                <face v1="272" v2="1287" v3="1130" />+                <face v1="266" v2="1287" v3="272" />+                <face v1="1130" v2="1158" v3="1046" />+                <face v1="1284" v2="1294" v3="1298" />+                <face v1="1130" v2="1046" v3="11" />+                <face v1="1284" v2="1297" v3="1151" />+                <face v1="1046" v2="1047" v3="1152" />+                <face v1="1151" v2="1297" v3="1047" />+                <face v1="1152" v2="1308" v3="1146" />+                <face v1="282" v2="1146" v3="1042" />+                <face v1="260" v2="24" v3="224" />+                <face v1="260" v2="21" v3="24" />+                <face v1="324" v2="1025" v3="105" />+                <face v1="324" v2="102" v3="1033" />+                <face v1="1320" v2="1322" v3="1083" />+                <face v1="1321" v2="331" v3="342" />+                <face v1="1084" v2="331" v3="1321" />+                <face v1="126" v2="491" v3="1201" />+                <face v1="39" v2="491" v3="126" />+                <face v1="1228" v2="1201" v3="1322" />+                <face v1="1031" v2="319" v3="320" />+                <face v1="1031" v2="1030" v3="319" />+                <face v1="116" v2="985" v3="984" />+                <face v1="116" v2="1325" v3="985" />+                <face v1="1035" v2="1028" v3="316" />+                <face v1="1029" v2="1028" v3="1035" />+                <face v1="59" v2="1033" v3="96" />+                <face v1="1035" v2="1084" v3="1321" />+                <face v1="1035" v2="70" v3="1084" />+                <face v1="339" v2="1090" v3="340" />+                <face v1="339" v2="348" v3="1090" />+                <face v1="1220" v2="1035" v3="1321" />+                <face v1="1030" v2="300" v3="319" />+                <face v1="320" v2="1025" v3="1027" />+                <face v1="382" v2="1081" v3="985" />+                <face v1="1027" v2="111" v3="1329" />+                <face v1="1330" v2="330" v3="1331" />+                <face v1="1016" v2="1018" v3="1333" />+                <face v1="76" v2="43" v3="345" />+                <face v1="72" v2="344" v3="332" />+                <face v1="66" v2="63" v3="59" />+                <face v1="86" v2="76" v3="66" />+                <face v1="66" v2="72" v3="69" />+                <face v1="148" v2="1236" v3="1635" />+                <face v1="1236" v2="50" v3="1635" />+                <face v1="320" v2="119" v3="1031" />+                <face v1="1220" v2="1321" v3="972" />+                <face v1="381" v2="1005" v3="989" />+                <face v1="1260" v2="171" v3="212" />+                <face v1="1341" v2="367" v3="997" />+                <face v1="1002" v2="982" v3="168" />+                <face v1="183" v2="161" v3="180" />+                <face v1="981" v2="995" v3="978" />+                <face v1="981" v2="357" v3="995" />+                <face v1="367" v2="369" v3="188" />+                <face v1="998" v2="1341" v3="1070" />+                <face v1="1341" v2="998" v3="367" />+                <face v1="171" v2="995" v3="357" />+                <face v1="1345" v2="995" v3="171" />+                <face v1="56" v2="146" v3="21" />+                <face v1="1242" v2="222" v3="223" />+                <face v1="1242" v2="170" v3="222" />+                <face v1="376" v2="139" v3="989" />+                <face v1="984" v2="1028" v3="972" />+                <face v1="222" v2="168" v3="218" />+                <face v1="185" v2="1345" v3="1350" />+                <face v1="386" v2="978" v3="186" />+                <face v1="193" v2="1345" v3="171" />+                <face v1="194" v2="196" v3="1248" />+                <face v1="188" v2="189" v3="976" />+                <face v1="340" v2="116" v3="342" />+                <face v1="1275" v2="1548" v3="1355" />+                <face v1="1087" v2="253" v3="970" />+                <face v1="1189" v2="1363" v3="1364" />+                <face v1="1363" v2="1189" v3="398" />+                <face v1="347" v2="458" v3="1090" />+                <face v1="458" v2="347" v3="349" />+                <face v1="962" v2="817" v3="1366" />+                <face v1="817" v2="962" v3="960" />+                <face v1="1371" v2="1265" v3="1264" />+                <face v1="1371" v2="1376" v3="1265" />+                <face v1="1376" v2="1377" v3="1123" />+                <face v1="279" v2="274" v3="1285" />+                <face v1="281" v2="274" v3="279" />+                <face v1="1284" v2="1298" v3="1297" />+                <face v1="1379" v2="1102" v3="1381" />+                <face v1="463" v2="520" v3="1543" />+                <face v1="457" v2="958" v3="614" />+                <face v1="955" v2="958" v3="457" />+                <face v1="955" v2="1400" v3="958" />+                <face v1="719" v2="846" v3="593" />+                <face v1="1404" v2="1405" v3="478" />+                <face v1="1404" v2="953" v3="1405" />+                <face v1="1407" v2="1408" v3="1409" />+                <face v1="1407" v2="1404" v3="1408" />+                <face v1="1451" v2="422" v3="1421" />+                <face v1="1451" v2="423" v3="422" />+                <face v1="954" v2="431" v3="1420" />+                <face v1="422" v2="435" v3="1405" />+                <face v1="1421" v2="820" v3="273" />+                <face v1="643" v2="56" v3="289" />+                <face v1="1146" v2="1428" v3="643" />+                <face v1="1407" v2="638" v3="1439" />+                <face v1="814" v2="1444" v3="812" />+                <face v1="1444" v2="814" v3="1413" />+                <face v1="1451" v2="1272" v3="952" />+                <face v1="1500" v2="516" v3="515" />+                <face v1="940" v2="942" v3="1463" />+                <face v1="940" v2="868" v3="942" />+                <face v1="715" v2="938" v3="945" />+                <face v1="1408" v2="477" v3="1409" />+                <face v1="477" v2="1408" v3="478" />+                <face v1="581" v2="923" v3="761" />+                <face v1="921" v2="923" v3="581" />+                <face v1="56" v2="483" v3="53" />+                <face v1="85" v2="59" v3="938" />+                <face v1="940" v2="1463" v3="463" />+                <face v1="935" v2="86" v3="937" />+                <face v1="1471" v2="1472" v3="491" />+                <face v1="1472" v2="1475" v3="862" />+                <face v1="1475" v2="1472" v3="1471" />+                <face v1="653" v2="874" v3="675" />+                <face v1="680" v2="660" v3="674" />+                <face v1="862" v2="1489" v3="492" />+                <face v1="862" v2="494" v3="1489" />+                <face v1="678" v2="795" v3="670" />+                <face v1="864" v2="510" v3="688" />+                <face v1="1494" v2="864" v3="676" />+                <face v1="923" v2="691" v3="516" />+                <face v1="923" v2="675" v3="691" />+                <face v1="516" v2="481" v3="762" />+                <face v1="1499" v2="1224" v3="516" />+                <face v1="1499" v2="1227" v3="1224" />+                <face v1="1471" v2="1499" v3="1500" />+                <face v1="1471" v2="39" v3="1499" />+                <face v1="923" v2="676" v3="675" />+                <face v1="676" v2="923" v3="1494" />+                <face v1="1511" v2="921" v3="837" />+                <face v1="1515" v2="790" v3="840" />+                <face v1="789" v2="790" v3="1515" />+                <face v1="530" v2="788" v3="531" />+                <face v1="754" v2="742" v3="756" />+                <face v1="739" v2="530" v3="533" />+                <face v1="736" v2="737" v3="1515" />+                <face v1="896" v2="913" v3="539" />+                <face v1="1520" v2="1521" v3="757" />+                <face v1="733" v2="735" v3="747" />+                <face v1="903" v2="1526" v3="575" />+                <face v1="903" v2="1602" v3="1526" />+                <face v1="749" v2="752" v3="1522" />+                <face v1="731" v2="837" v3="921" />+                <face v1="581" v2="585" v3="731" />+                <face v1="585" v2="580" v3="483" />+                <face v1="788" v2="483" v3="760" />+                <face v1="788" v2="585" v3="483" />+                <face v1="896" v2="1494" v3="913" />+                <face v1="896" v2="864" v3="1494" />+                <face v1="605" v2="550" v3="593" />+                <face v1="454" v2="593" v3="886" />+                <face v1="466" v2="1544" v3="1543" />+                <face v1="1549" v2="1272" v3="1548" />+                <face v1="1549" v2="1613" v3="888" />+                <face v1="472" v2="888" v3="1613" />+                <face v1="444" v2="888" v3="1449" />+                <face v1="622" v2="472" v3="806" />+                <face v1="621" v2="472" v3="622" />+                <face v1="888" v2="1444" v3="1449" />+                <face v1="801" v2="1558" v3="888" />+                <face v1="424" v2="1413" v3="814" />+                <face v1="801" v2="886" v3="1558" />+                <face v1="418" v2="803" v3="827" />+                <face v1="418" v2="627" v3="803" />+                <face v1="419" v2="627" v3="418" />+                <face v1="431" v2="954" v3="477" />+                <face v1="442" v2="880" v3="820" />+                <face v1="442" v2="881" v3="880" />+                <face v1="1442" v2="441" v3="1404" />+                <face v1="883" v2="1561" v3="1285" />+                <face v1="1442" v2="882" v3="879" />+                <face v1="1294" v2="1284" v3="1561" />+                <face v1="638" v2="1569" v3="1439" />+                <face v1="638" v2="1407" v3="1413" />+                <face v1="1298" v2="1294" v3="1632" />+                <face v1="1308" v2="1639" v3="1632" />+                <face v1="1428" v2="1146" v3="1308" />+                <face v1="289" v2="1146" v3="643" />+                <face v1="762" v2="761" v3="923" />+                <face v1="491" v2="1472" v3="492" />+                <face v1="491" v2="660" v3="98" />+                <face v1="489" v2="660" v3="491" />+                <face v1="506" v2="688" v3="510" />+                <face v1="868" v2="674" v3="501" />+                <face v1="868" v2="59" v3="674" />+                <face v1="670" v2="942" v3="868" />+                <face v1="690" v2="651" v3="686" />+                <face v1="874" v2="862" v3="876" />+                <face v1="874" v2="494" v3="862" />+                <face v1="675" v2="686" v3="651" />+                <face v1="501" v2="497" v3="678" />+                <face v1="1589" v2="682" v3="1591" />+                <face v1="858" v2="682" v3="1589" />+                <face v1="700" v2="497" v3="674" />+                <face v1="707" v2="937" v3="938" />+                <face v1="702" v2="463" v3="712" />+                <face v1="702" v2="940" v3="463" />+                <face v1="868" v2="945" v3="59" />+                <face v1="86" v2="935" v3="80" />+                <face v1="1475" v2="1500" v3="876" />+                <face v1="1475" v2="1598" v3="1500" />+                <face v1="1475" v2="876" v3="862" />+                <face v1="1511" v2="913" v3="921" />+                <face v1="1511" v2="543" v3="913" />+                <face v1="1494" v2="921" v3="913" />+                <face v1="1494" v2="923" v3="921" />+                <face v1="837" v2="727" v3="1511" />+                <face v1="605" v2="846" v3="606" />+                <face v1="605" v2="593" v3="846" />+                <face v1="556" v2="1521" v3="1602" />+                <face v1="909" v2="1521" v3="1520" />+                <face v1="1603" v2="568" v3="749" />+                <face v1="1602" v2="909" v3="1526" />+                <face v1="530" v2="754" v3="540" />+                <face v1="597" v2="840" v3="648" />+                <face v1="597" v2="1515" v3="840" />+                <face v1="581" v2="484" v3="483" />+                <face v1="648" v2="790" v3="647" />+                <face v1="840" v2="790" v3="648" />+                <face v1="758" v2="760" v3="483" />+                <face v1="1608" v2="769" v3="497" />+                <face v1="1608" v2="1595" v3="769" />+                <face v1="1602" v2="903" v3="556" />+                <face v1="575" v2="750" v3="786" />+                <face v1="1549" v2="1614" v3="1613" />+                <face v1="887" v2="827" v3="801" />+                <face v1="806" v2="236" v3="1360" />+                <face v1="806" v2="1614" v3="236" />+                <face v1="808" v2="832" v3="621" />+                <face v1="833" v2="832" v3="808" />+                <face v1="1543" v2="1624" v3="817" />+                <face v1="1629" v2="1624" v3="1544" />+                <face v1="1398" v2="616" v3="1631" />+                <face v1="614" v2="616" v3="1398" />+                <face v1="820" v2="880" v3="883" />+                <face v1="1294" v2="1569" v3="1632" />+                <face v1="1308" v2="1632" v3="638" />+                <face v1="1632" v2="1569" v3="638" />+                <face v1="1561" v2="1569" v3="1294" />+                <face v1="1569" v2="1561" v3="882" />+                <face v1="883" v2="882" v3="1561" />+                <face v1="882" v2="883" v3="880" />+                <face v1="1631" v2="1629" v3="1398" />+                <face v1="1544" v2="1624" v3="1543" />+                <face v1="817" v2="815" v3="1366" />+                <face v1="801" v2="472" v3="621" />+                <face v1="1613" v2="806" v3="472" />+                <face v1="1548" v2="1614" v3="1549" />+                <face v1="1548" v2="1275" v3="1614" />+                <face v1="529" v2="790" v3="531" />+                <face v1="556" v2="903" v3="573" />+                <face v1="1520" v2="741" v3="1522" />+                <face v1="1520" v2="778" v3="741" />+                <face v1="837" v2="731" v3="788" />+                <face v1="756" v2="757" v3="1521" />+                <face v1="750" v2="909" v3="752" />+                <face v1="750" v2="1526" v3="909" />+                <face v1="568" v2="750" v3="749" />+                <face v1="1603" v2="747" v3="568" />+                <face v1="745" v2="747" v3="1603" />+                <face v1="1522" v2="564" v3="745" />+                <face v1="909" v2="1520" v3="1522" />+                <face v1="909" v2="1602" v3="1521" />+                <face v1="786" v2="750" v3="553" />+                <face v1="757" v2="742" v3="778" />+                <face v1="757" v2="756" v3="742" />+                <face v1="741" v2="742" v3="530" />+                <face v1="550" v2="735" v3="734" />+                <face v1="735" v2="550" v3="569" />+                <face v1="745" v2="1603" v3="749" />+                <face v1="573" v2="590" v3="556" />+                <face v1="605" v2="606" v3="590" />+                <face v1="727" v2="837" v3="788" />+                <face v1="864" v2="590" v3="607" />+                <face v1="460" v2="80" v3="935" />+                <face v1="80" v2="460" v3="348" />+                <face v1="868" v2="715" v3="945" />+                <face v1="940" v2="704" v3="715" />+                <face v1="702" v2="704" v3="940" />+                <face v1="707" v2="938" v3="715" />+                <face v1="856" v2="935" v3="937" />+                <face v1="1608" v2="497" v3="700" />+                <face v1="1595" v2="1591" v3="769" />+                <face v1="1589" v2="1591" v3="1595" />+                <face v1="693" v2="685" v3="660" />+                <face v1="688" v2="693" v3="686" />+                <face v1="651" v2="653" v3="675" />+                <face v1="675" v2="876" v3="691" />+                <face v1="876" v2="675" v3="874" />+                <face v1="1503" v2="670" v3="795" />+                <face v1="458" v2="856" v3="463" />+                <face v1="458" v2="460" v3="856" />+                <face v1="1463" v2="670" v3="1503" />+                <face v1="1463" v2="942" v3="670" />+                <face v1="674" v2="59" v3="680" />+                <face v1="505" v2="670" v3="503" />+                <face v1="506" v2="510" v3="795" />+                <face v1="675" v2="676" v3="864" />+                <face v1="1471" v2="1598" v3="1475" />+                <face v1="491" v2="39" v3="1471" />+                <face v1="1503" v2="463" v3="1463" />+                <face v1="492" v2="1472" v3="862" />+                <face v1="693" v2="660" v3="1489" />+                <face v1="643" v2="1428" v3="424" />+                <face v1="1639" v2="1298" v3="1632" />+                <face v1="1413" v2="1428" v3="638" />+                <face v1="882" v2="1439" v3="1569" />+                <face v1="1439" v2="882" v3="1442" />+                <face v1="954" v2="1409" v3="477" />+                <face v1="1561" v2="1284" v3="1285" />+                <face v1="1407" v2="1442" v3="1404" />+                <face v1="1404" v2="441" v3="953" />+                <face v1="1558" v2="886" v3="812" />+                <face v1="888" v2="812" v3="1444" />+                <face v1="1558" v2="812" v3="888" />+                <face v1="1447" v2="1413" v3="954" />+                <face v1="954" v2="1420" v3="1447" />+                <face v1="1420" v2="433" v3="1447" />+                <face v1="801" v2="888" v3="472" />+                <face v1="1614" v2="806" v3="1613" />+                <face v1="952" v2="888" v3="444" />+                <face v1="888" v2="952" v3="1549" />+                <face v1="1549" v2="952" v3="1272" />+                <face v1="1614" v2="1275" v3="236" />+                <face v1="1629" v2="1544" v3="466" />+                <face v1="1543" v2="817" v3="463" />+                <face v1="606" v2="719" v3="607" />+                <face v1="846" v2="719" v3="606" />+                <face v1="605" v2="573" v3="550" />+                <face v1="585" v2="581" v3="580" />+                <face v1="786" v2="553" v3="555" />+                <face v1="745" v2="749" v3="1522" />+                <face v1="575" v2="1526" v3="750" />+                <face v1="747" v2="569" v3="568" />+                <face v1="747" v2="735" v3="569" />+                <face v1="733" v2="564" v3="567" />+                <face v1="778" v2="1520" v3="757" />+                <face v1="578" v2="550" v3="553" />+                <face v1="550" v2="578" v3="552" />+                <face v1="530" v2="742" v3="754" />+                <face v1="547" v2="756" v3="539" />+                <face v1="913" v2="543" v3="539" />+                <face v1="737" v2="789" v3="1515" />+                <face v1="760" v2="529" v3="788" />+                <face v1="760" v2="790" v3="529" />+                <face v1="543" v2="1511" v3="727" />+                <face v1="463" v2="466" v3="520" />+                <face v1="1471" v2="1500" v3="1598" />+                <face v1="1500" v2="1499" v3="516" />+                <face v1="481" v2="516" v3="1224" />+                <face v1="516" v2="762" v3="923" />+                <face v1="682" v2="684" v3="506" />+                <face v1="506" v2="1591" v3="682" />+                <face v1="1591" v2="506" v3="769" />+                <face v1="660" v2="699" v3="674" />+                <face v1="643" v2="483" v3="56" />+                <face v1="483" v2="484" v3="53" />+                <face v1="887" v2="621" v3="832" />+                <face v1="39" v2="1227" v3="1499" />+                <face v1="466" v2="1403" v3="614" />+                <face v1="463" v2="817" v3="458" />+                <face v1="1403" v2="466" v3="510" />+                <face v1="952" v2="423" v3="1451" />+                <face v1="1447" v2="444" v3="1449" />+                <face v1="1449" v2="1413" v3="1447" />+                <face v1="1449" v2="1444" v3="1413" />+                <face v1="881" v2="1442" v3="879" />+                <face v1="441" v2="1442" v3="881" />+                <face v1="1442" v2="1407" v3="1439" />+                <face v1="433" v2="431" v3="436" />+                <face v1="441" v2="422" v3="953" />+                <face v1="440" v2="422" v3="441" />+                <face v1="1420" v2="431" v3="433" />+                <face v1="441" v2="881" v3="442" />+                <face v1="1413" v2="424" v3="1428" />+                <face v1="1413" v2="1407" v3="954" />+                <face v1="954" v2="1407" v3="1409" />+                <face v1="1408" v2="1404" v3="478" />+                <face v1="953" v2="422" v3="1405" />+                <face v1="1403" v2="719" v3="454" />+                <face v1="719" v2="593" v3="454" />+                <face v1="627" v2="419" v3="457" />+                <face v1="1629" v2="614" v3="1398" />+                <face v1="466" v2="1543" v3="520" />+                <face v1="1102" v2="1633" v3="1381" />+                <face v1="1297" v2="1639" v3="1308" />+                <face v1="1297" v2="1298" v3="1300" />+                <face v1="279" v2="1285" v3="1284" />+                <face v1="1060" v2="1123" v3="1377" />+                <face v1="1123" v2="1060" v3="1059" />+                <face v1="960" v2="1371" v3="1264" />+                <face v1="252" v2="398" v3="1189" />+                <face v1="236" v2="1363" v3="966" />+                <face v1="236" v2="1364" v3="1363" />+                <face v1="236" v2="966" v3="1360" />+                <face v1="407" v2="253" v3="1087" />+                <face v1="404" v2="1087" v3="241" />+                <face v1="249" v2="1087" v3="404" />+                <face v1="243" v2="1275" v3="1355" />+                <face v1="1265" v2="1376" v3="116" />+                <face v1="1345" v2="193" v3="1350" />+                <face v1="382" v2="111" v3="1018" />+                <face v1="111" v2="382" v3="1329" />+                <face v1="111" v2="1333" v3="1018" />+                <face v1="111" v2="1330" v3="1333" />+                <face v1="146" v2="24" v3="21" />+                <face v1="376" v2="393" v3="139" />+                <face v1="376" v2="225" v3="293" />+                <face v1="225" v2="376" v3="375" />+                <face v1="56" v2="53" v3="991" />+                <face v1="375" v2="223" v3="225" />+                <face v1="375" v2="1242" v3="223" />+                <face v1="189" v2="1350" v3="1248" />+                <face v1="185" v2="1350" v3="189" />+                <face v1="1070" v2="997" v3="996" />+                <face v1="997" v2="1070" v3="1341" />+                <face v1="1345" v2="185" v3="365" />+                <face v1="1239" v2="1005" v3="381" />+                <face v1="148" v2="1239" v3="1236" />+                <face v1="1320" v2="89" v3="1322" />+                <face v1="298" v2="89" v3="1320" />+                <face v1="1227" v2="1322" v3="89" />+                <face v1="1227" v2="1228" v3="1322" />+                <face v1="63" v2="109" v3="59" />+                <face v1="66" v2="69" v3="63" />+                <face v1="331" v2="72" v3="332" />+                <face v1="78" v2="43" v3="76" />+                <face v1="330" v2="1330" v3="111" />+                <face v1="1331" v2="330" v3="329" />+                <face v1="382" v2="108" v3="1081" />+                <face v1="382" v2="1023" v3="108" />+                <face v1="301" v2="1030" v3="124" />+                <face v1="301" v2="300" v3="1030" />+                <face v1="298" v2="105" v3="89" />+                <face v1="319" v2="1025" v3="320" />+                <face v1="319" v2="1026" v3="1025" />+                <face v1="1033" v2="1018" v3="1017" />+                <face v1="1033" v2="109" v3="1018" />+                <face v1="70" v2="1035" v3="71" />+                <face v1="109" v2="63" v3="110" />+                <face v1="116" v2="1027" v3="1325" />+                <face v1="339" v2="341" v3="43" />+                <face v1="339" v2="340" v3="341" />+                <face v1="105" v2="301" v3="89" />+                <face v1="993" v2="53" v3="50" />+                <face v1="53" v2="993" v3="992" />+                <face v1="293" v2="224" v3="24" />+                <face v1="225" v2="224" v3="293" />+                <face v1="1042" v2="289" v3="21" />+                <face v1="1042" v2="1146" v3="289" />+                <face v1="1047" v2="1308" v3="1152" />+                <face v1="1047" v2="1297" v3="1308" />+                <face v1="11" v2="272" v3="1130" />+                <face v1="1155" v2="1284" v3="1151" />+                <face v1="1132" v2="1158" v3="1130" />+                <face v1="1132" v2="1159" v3="1158" />+                <face v1="280" v2="279" v3="1159" />+                <face v1="274" v2="883" v3="1285" />+                <face v1="281" v2="280" v3="17" />+                <face v1="266" v2="272" v3="268" />+                <face v1="413" v2="406" v3="6" />+                <face v1="406" v2="413" v3="253" />+                <face v1="1056" v2="1087" v3="1282" />+                <face v1="1087" v2="1056" v3="407" />+                <face v1="1160" v2="1046" v3="282" />+                <face v1="1282" v2="1087" v3="249" />+                <face v1="1161" v2="1163" v3="249" />+                <face v1="970" v2="1364" v3="1087" />+                <face v1="1364" v2="970" v3="1189" />+                <face v1="1087" v2="1364" v3="236" />+                <face v1="1280" v2="1161" v3="249" />+                <face v1="26" v2="245" v3="11" />+                <face v1="1280" v2="404" v3="243" />+                <face v1="26" v2="1057" v3="245" />+                <face v1="243" v2="1355" v3="30" />+                <face v1="1548" v2="1272" v3="1355" />+                <face v1="1451" v2="1421" v3="16" />+                <face v1="1264" v2="1265" v3="116" />+                <face v1="407" v2="1091" v3="412" />+                <face v1="353" v2="1091" v3="224" />+                <face v1="1260" v2="212" v3="119" />+                <face v1="353" v2="218" v3="1260" />+                <face v1="203" v2="201" v3="139" />+                <face v1="1236" v2="381" v3="201" />+                <face v1="188" v2="997" v3="367" />+                <face v1="188" v2="976" v3="997" />+                <face v1="185" v2="188" v3="186" />+                <face v1="185" v2="189" v3="188" />+                <face v1="1248" v2="193" v3="194" />+                <face v1="1248" v2="1350" v3="193" />+                <face v1="1248" v2="198" v3="996" />+                <face v1="198" v2="1248" v3="196" />+                <face v1="998" v2="1002" v3="363" />+                <face v1="186" v2="188" v3="386" />+                <face v1="1345" v2="365" v3="995" />+                <face v1="162" v2="161" v3="1073" />+                <face v1="357" v2="981" v3="356" />+                <face v1="359" v2="162" v3="1074" />+                <face v1="376" v2="1242" v3="375" />+                <face v1="1242" v2="376" v3="395" />+                <face v1="139" v2="381" v3="989" />+                <face v1="381" v2="1236" v3="1239" />+                <face v1="1635" v2="50" v3="1031" />+                <face v1="1008" v2="116" v3="34" />+                <face v1="1224" v2="1227" v3="1079" />+                <face v1="119" v2="1635" v3="1031" />+                <face v1="116" v2="1260" v3="1027" />+                <face v1="1028" v2="1220" v3="972" />+                <face v1="1029" v2="1220" v3="1028" />+                <face v1="1027" v2="1329" v3="1325" />+                <face v1="985" v2="1325" v3="1329" />+                <face v1="1081" v2="986" v3="985" />+                <face v1="1081" v2="1028" v3="986" />+                <face v1="1320" v2="105" v3="298" />+                <face v1="100" v2="1320" v3="1083" />+                <face v1="98" v2="1083" v3="491" />+                <face v1="1033" v2="102" v3="96" />+                <face v1="324" v2="1017" v3="92" />+                <face v1="300" v2="1026" v3="319" />+                <face v1="89" v2="301" v3="124" />+                <face v1="1322" v2="1201" v3="491" />+                <face v1="348" v2="339" v3="80" />+                <face v1="86" v2="80" v3="78" />+                <face v1="345" v2="66" v3="76" />+                <face v1="59" v2="85" v3="66" />+                <face v1="50" v2="991" v3="993" />+                <face v1="266" v2="1129" v3="1131" />+                <face v1="1050" v2="1129" v3="266" />+                <face v1="70" v2="72" v3="1084" />+                <face v1="70" v2="69" v3="72" />+                <face v1="1079" v2="1227" v3="124" />+                <face v1="458" v2="960" v3="1111" />+                <face v1="1163" v2="282" v3="965" />+                <face v1="1160" v2="282" v3="1163" />+                <face v1="1151" v2="1158" v3="1155" />+                <face v1="1421" v2="275" v3="16" />+                <face v1="273" v2="275" v3="1421" />+                <face v1="1052" v2="263" v3="8" />+                <face v1="19" v2="1451" v3="16" />+                <face v1="19" v2="8" v3="1451" />+                <face v1="1129" v2="1132" v3="1131" />+                <face v1="1129" v2="1128" v3="1132" />+                <face v1="1052" v2="1128" v3="1050" />+                <face v1="1052" v2="18" v3="1128" />+                <face v1="1008" v2="34" v3="31" />+                <face v1="353" v2="1008" v3="1091" />+                <face v1="31" v2="1091" v3="1008" />+                <face v1="1" v2="6" v3="34" />+                <face v1="1" v2="5" v3="6" />+                <face v1="1" v2="1640" v3="5" />+                <face v1="1123" v2="1059" v3="1376" />+                <face v1="1111" v2="1090" v3="458" />+                <face v1="1076" v2="340" v3="1264" />+                <face v1="1099" v2="1379" v3="1641" />+                <face v1="1099" v2="1102" v3="1379" />+            </lodfacelist>+            <lodfacelist submeshindex="2" numfaces="128">+                <face v1="7" v2="5" v3="9" />+                <face v1="12" v2="9" v3="14" />+                <face v1="16" v2="12" v3="14" />+                <face v1="20" v2="21" v3="22" />+                <face v1="20" v2="16" v3="21" />+                <face v1="30" v2="20" v3="22" />+                <face v1="30" v2="31" v3="20" />+                <face v1="28" v2="31" v3="30" />+                <face v1="32" v2="31" v3="28" />+                <face v1="32" v2="35" v3="31" />+                <face v1="36" v2="42" v3="32" />+                <face v1="44" v2="45" v3="42" />+                <face v1="12" v2="59" v3="57" />+                <face v1="60" v2="83" v3="66" />+                <face v1="60" v2="57" v3="83" />+                <face v1="7" v2="60" v3="66" />+                <face v1="68" v2="90" v3="70" />+                <face v1="78" v2="68" v3="70" />+                <face v1="9" v2="57" v3="60" />+                <face v1="57" v2="9" v3="12" />+                <face v1="59" v2="12" v3="16" />+                <face v1="20" v2="53" v3="16" />+                <face v1="31" v2="45" v3="20" />+                <face v1="35" v2="41" v3="31" />+                <face v1="68" v2="78" v3="5" />+                <face v1="57" v2="81" v3="83" />+                <face v1="42" v2="78" v3="90" />+                <face v1="44" v2="42" v3="96" />+                <face v1="21" v2="14" v3="102" />+                <face v1="115" v2="32" v3="113" />+                <face v1="5" v2="36" v3="115" />+                <face v1="5" v2="115" v3="119" />+                <face v1="124" v2="131" v3="126" />+                <face v1="102" v2="124" v3="106" />+                <face v1="124" v2="102" v3="131" />+                <face v1="131" v2="119" v3="139" />+                <face v1="119" v2="131" v3="102" />+                <face v1="156" v2="81" v3="126" />+                <face v1="126" v2="81" v3="120" />+                <face v1="124" v2="121" v3="106" />+                <face v1="126" v2="131" v3="156" />+                <face v1="171" v2="174" v3="175" />+                <face v1="174" v2="171" v3="166" />+                <face v1="139" v2="177" v3="178" />+                <face v1="178" v2="177" v3="182" />+                <face v1="182" v2="191" v3="186" />+                <face v1="191" v2="182" v3="177" />+                <face v1="190" v2="188" v3="191" />+                <face v1="106" v2="193" v3="190" />+                <face v1="120" v2="163" v3="198" />+                <face v1="161" v2="163" v3="120" />+                <face v1="96" v2="166" v3="165" />+                <face v1="90" v2="166" v3="96" />+                <face v1="166" v2="90" v3="174" />+                <face v1="119" v2="177" v3="139" />+                <face v1="177" v2="115" v3="191" />+                <face v1="191" v2="113" v3="190" />+                <face v1="113" v2="106" v3="190" />+                <face v1="81" v2="161" v3="120" />+                <face v1="96" v2="161" v3="81" />+                <face v1="171" v2="175" v3="178" />+                <face v1="166" v2="186" v3="188" />+                <face v1="193" v2="198" v3="163" />+                <face v1="198" v2="193" v3="121" />+                <face v1="163" v2="190" v3="193" />+                <face v1="188" v2="163" v3="166" />+                <face v1="163" v2="188" v3="190" />+                <face v1="171" v2="186" v3="166" />+                <face v1="171" v2="182" v3="186" />+                <face v1="182" v2="171" v3="178" />+                <face v1="136" v2="178" v3="175" />+                <face v1="136" v2="139" v3="178" />+                <face v1="113" v2="191" v3="115" />+                <face v1="115" v2="177" v3="119" />+                <face v1="174" v2="83" v3="152" />+                <face v1="83" v2="174" v3="90" />+                <face v1="96" v2="165" v3="161" />+                <face v1="106" v2="121" v3="193" />+                <face v1="186" v2="191" v3="188" />+                <face v1="175" v2="152" v3="136" />+                <face v1="152" v2="175" v3="174" />+                <face v1="161" v2="166" v3="163" />+                <face v1="165" v2="166" v3="161" />+                <face v1="133" v2="156" v3="131" />+                <face v1="156" v2="133" v3="152" />+                <face v1="136" v2="152" v3="133" />+                <face v1="152" v2="81" v3="156" />+                <face v1="81" v2="152" v3="83" />+                <face v1="133" v2="139" v3="136" />+                <face v1="131" v2="139" v3="133" />+                <face v1="126" v2="121" v3="124" />+                <face v1="121" v2="126" v3="120" />+                <face v1="121" v2="120" v3="198" />+                <face v1="9" v2="5" v3="119" />+                <face v1="115" v2="36" v3="32" />+                <face v1="113" v2="32" v3="28" />+                <face v1="113" v2="30" v3="106" />+                <face v1="113" v2="28" v3="30" />+                <face v1="30" v2="22" v3="106" />+                <face v1="22" v2="102" v3="106" />+                <face v1="22" v2="21" v3="102" />+                <face v1="102" v2="14" v3="9" />+                <face v1="9" v2="119" v3="102" />+                <face v1="81" v2="44" v3="96" />+                <face v1="81" v2="50" v3="44" />+                <face v1="42" v2="90" v3="96" />+                <face v1="90" v2="78" v3="70" />+                <face v1="90" v2="66" v3="83" />+                <face v1="81" v2="57" v3="54" />+                <face v1="81" v2="54" v3="50" />+                <face v1="68" v2="5" v3="7" />+                <face v1="78" v2="42" v3="5" />+                <face v1="41" v2="35" v3="42" />+                <face v1="45" v2="31" v3="41" />+                <face v1="53" v2="20" v3="45" />+                <face v1="59" v2="16" v3="53" />+                <face v1="60" v2="7" v3="9" />+                <face v1="68" v2="66" v3="90" />+                <face v1="68" v2="7" v3="66" />+                <face v1="57" v2="53" v3="54" />+                <face v1="57" v2="59" v3="53" />+                <face v1="54" v2="45" v3="50" />+                <face v1="54" v2="53" v3="45" />+                <face v1="50" v2="45" v3="44" />+                <face v1="42" v2="45" v3="41" />+                <face v1="32" v2="42" v3="35" />+                <face v1="21" v2="16" v3="14" />+                <face v1="5" v2="42" v3="36" />+            </lodfacelist>+            <lodfacelist submeshindex="3" numfaces="210">+                <face v1="2" v2="38" v3="6" />+                <face v1="17" v2="6" v3="20" />+                <face v1="6" v2="22" v3="20" />+                <face v1="25" v2="29" v3="23" />+                <face v1="20" v2="22" v3="25" />+                <face v1="6" v2="29" v3="25" />+                <face v1="25" v2="22" v3="6" />+                <face v1="27" v2="29" v3="6" />+                <face v1="38" v2="187" v3="37" />+                <face v1="27" v2="6" v3="37" />+                <face v1="37" v2="187" v3="27" />+                <face v1="6" v2="38" v3="37" />+                <face v1="47" v2="41" v3="203" />+                <face v1="50" v2="51" v3="45" />+                <face v1="45" v2="48" v3="50" />+                <face v1="47" v2="203" v3="45" />+                <face v1="45" v2="51" v3="47" />+                <face v1="56" v2="57" v3="54" />+                <face v1="54" v2="57" v3="221" />+                <face v1="206" v2="56" v3="54" />+                <face v1="67" v2="68" v3="65" />+                <face v1="65" v2="68" v3="69" />+                <face v1="65" v2="70" v3="73" />+                <face v1="67" v2="65" v3="73" />+                <face v1="74" v2="75" v3="80" />+                <face v1="82" v2="75" v3="74" />+                <face v1="87" v2="262" v3="82" />+                <face v1="82" v2="74" v3="87" />+                <face v1="82" v2="262" v3="75" />+                <face v1="74" v2="90" v3="87" />+                <face v1="74" v2="93" v3="94" />+                <face v1="94" v2="90" v3="74" />+                <face v1="94" v2="93" v3="100" />+                <face v1="91" v2="90" v3="94" />+                <face v1="74" v2="97" v3="100" />+                <face v1="100" v2="93" v3="74" />+                <face v1="100" v2="97" v3="286" />+                <face v1="74" v2="101" v3="286" />+                <face v1="286" v2="97" v3="74" />+                <face v1="74" v2="287" v3="101" />+                <face v1="74" v2="109" v3="287" />+                <face v1="113" v2="109" v3="74" />+                <face v1="113" v2="74" v3="80" />+                <face v1="115" v2="116" v3="117" />+                <face v1="117" v2="142" v3="115" />+                <face v1="117" v2="116" v3="119" />+                <face v1="196" v2="142" v3="117" />+                <face v1="122" v2="117" v3="119" />+                <face v1="196" v2="117" v3="122" />+                <face v1="122" v2="125" v3="196" />+                <face v1="135" v2="136" v3="134" />+                <face v1="134" v2="136" v3="126" />+                <face v1="137" v2="138" v3="139" />+                <face v1="141" v2="142" v3="139" />+                <face v1="139" v2="138" v3="141" />+                <face v1="139" v2="142" v3="143" />+                <face v1="148" v2="137" v3="143" />+                <face v1="137" v2="139" v3="143" />+                <face v1="154" v2="137" v3="148" />+                <face v1="159" v2="126" v3="154" />+                <face v1="126" v2="159" v3="322" />+                <face v1="159" v2="17" v3="322" />+                <face v1="322" v2="17" v3="20" />+                <face v1="20" v2="179" v3="314" />+                <face v1="314" v2="179" v3="178" />+                <face v1="178" v2="187" v3="186" />+                <face v1="187" v2="125" v3="186" />+                <face v1="186" v2="125" v3="122" />+                <face v1="187" v2="196" v3="125" />+                <face v1="196" v2="38" v3="143" />+                <face v1="113" v2="200" v3="109" />+                <face v1="80" v2="203" v3="113" />+                <face v1="204" v2="200" v3="113" />+                <face v1="113" v2="203" v3="204" />+                <face v1="47" v2="205" v3="206" />+                <face v1="206" v2="41" v3="47" />+                <face v1="206" v2="205" v3="56" />+                <face v1="109" v2="200" v3="208" />+                <face v1="208" v2="287" v3="109" />+                <face v1="208" v2="200" v3="204" />+                <face v1="206" v2="54" v3="218" />+                <face v1="218" v2="54" v3="221" />+                <face v1="286" v2="101" v3="206" />+                <face v1="239" v2="240" v3="238" />+                <face v1="91" v2="94" v3="100" />+                <face v1="246" v2="247" v3="240" />+                <face v1="239" v2="248" v3="246" />+                <face v1="246" v2="240" v3="239" />+                <face v1="248" v2="250" v3="246" />+                <face v1="277" v2="247" v3="246" />+                <face v1="246" v2="250" v3="277" />+                <face v1="87" v2="90" v3="252" />+                <face v1="252" v2="90" v3="91" />+                <face v1="280" v2="254" v3="252" />+                <face v1="252" v2="91" v3="280" />+                <face v1="277" v2="250" v3="73" />+                <face v1="248" v2="67" v3="73" />+                <face v1="73" v2="250" v3="248" />+                <face v1="48" v2="268" v3="50" />+                <face v1="69" v2="268" v3="48" />+                <face v1="48" v2="65" v3="69" />+                <face v1="80" v2="75" v3="262" />+                <face v1="65" v2="48" v3="45" />+                <face v1="65" v2="45" v3="80" />+                <face v1="65" v2="80" v3="262" />+                <face v1="70" v2="65" v3="262" />+                <face v1="73" v2="70" v3="277" />+                <face v1="262" v2="87" v3="277" />+                <face v1="277" v2="70" v3="262" />+                <face v1="277" v2="87" v3="252" />+                <face v1="252" v2="254" v3="279" />+                <face v1="279" v2="277" v3="252" />+                <face v1="279" v2="254" v3="280" />+                <face v1="240" v2="247" v3="279" />+                <face v1="279" v2="280" v3="240" />+                <face v1="279" v2="247" v3="277" />+                <face v1="100" v2="229" v3="91" />+                <face v1="229" v2="238" v3="91" />+                <face v1="240" v2="280" v3="91" />+                <face v1="91" v2="238" v3="240" />+                <face v1="228" v2="100" v3="221" />+                <face v1="228" v2="229" v3="100" />+                <face v1="206" v2="218" v3="286" />+                <face v1="221" v2="100" v3="286" />+                <face v1="286" v2="218" v3="221" />+                <face v1="206" v2="101" v3="287" />+                <face v1="287" v2="208" v3="41" />+                <face v1="41" v2="208" v3="204" />+                <face v1="206" v2="287" v3="41" />+                <face v1="203" v2="41" v3="204" />+                <face v1="80" v2="45" v3="203" />+                <face v1="38" v2="196" v3="187" />+                <face v1="142" v2="196" v3="143" />+                <face v1="141" v2="296" v3="142" />+                <face v1="142" v2="296" v3="115" />+                <face v1="186" v2="122" v3="304" />+                <face v1="119" v2="303" v3="304" />+                <face v1="304" v2="122" v3="119" />+                <face v1="178" v2="23" v3="306" />+                <face v1="23" v2="29" v3="306" />+                <face v1="306" v2="29" v3="27" />+                <face v1="187" v2="178" v3="306" />+                <face v1="306" v2="27" v3="187" />+                <face v1="304" v2="307" v3="308" />+                <face v1="308" v2="186" v3="304" />+                <face v1="309" v2="178" v3="308" />+                <face v1="308" v2="307" v3="309" />+                <face v1="308" v2="178" v3="186" />+                <face v1="20" v2="25" v3="23" />+                <face v1="178" v2="179" v3="23" />+                <face v1="23" v2="179" v3="20" />+                <face v1="309" v2="313" v3="314" />+                <face v1="314" v2="178" v3="309" />+                <face v1="315" v2="20" v3="314" />+                <face v1="314" v2="313" v3="315" />+                <face v1="315" v2="319" v3="20" />+                <face v1="319" v2="322" v3="20" />+                <face v1="159" v2="6" v3="17" />+                <face v1="134" v2="326" v3="135" />+                <face v1="126" v2="322" v3="134" />+                <face v1="319" v2="326" v3="134" />+                <face v1="134" v2="322" v3="319" />+                <face v1="159" v2="154" v3="6" />+                <face v1="148" v2="330" v3="6" />+                <face v1="6" v2="154" v3="148" />+                <face v1="154" v2="126" v3="137" />+                <face v1="126" v2="332" v3="137" />+                <face v1="2" v2="143" v3="38" />+                <face v1="6" v2="330" v3="2" />+                <face v1="148" v2="143" v3="2" />+                <face v1="2" v2="330" v3="148" />+                <face v1="115" v2="296" v3="334" />+                <face v1="334" v2="116" v3="115" />+                <face v1="141" v2="138" v3="334" />+                <face v1="334" v2="296" v3="141" />+                <face v1="137" v2="332" v3="334" />+                <face v1="334" v2="138" v3="137" />+                <face v1="126" v2="136" v3="334" />+                <face v1="334" v2="332" v3="126" />+                <face v1="135" v2="326" v3="334" />+                <face v1="334" v2="136" v3="135" />+                <face v1="334" v2="326" v3="319" />+                <face v1="119" v2="116" v3="334" />+                <face v1="315" v2="313" v3="336" />+                <face v1="336" v2="319" v3="315" />+                <face v1="309" v2="307" v3="336" />+                <face v1="336" v2="313" v3="309" />+                <face v1="304" v2="303" v3="336" />+                <face v1="336" v2="307" v3="304" />+                <face v1="119" v2="334" v3="336" />+                <face v1="336" v2="303" v3="119" />+                <face v1="336" v2="334" v3="319" />+                <face v1="56" v2="205" v3="337" />+                <face v1="337" v2="57" v3="56" />+                <face v1="47" v2="51" v3="337" />+                <face v1="337" v2="205" v3="47" />+                <face v1="50" v2="268" v3="337" />+                <face v1="337" v2="51" v3="50" />+                <face v1="69" v2="68" v3="337" />+                <face v1="337" v2="268" v3="69" />+                <face v1="337" v2="68" v3="67" />+                <face v1="221" v2="57" v3="337" />+                <face v1="341" v2="67" v3="248" />+                <face v1="221" v2="337" v3="341" />+                <face v1="341" v2="337" v3="67" />+                <face v1="239" v2="238" v3="341" />+                <face v1="341" v2="248" v3="239" />+                <face v1="229" v2="228" v3="341" />+                <face v1="341" v2="238" v3="229" />+                <face v1="341" v2="228" v3="221" />+            </lodfacelist>+        </lodgenerated>+        <lodgenerated value="3000">+            <lodfacelist submeshindex="0" numfaces="14">+                <face v1="4" v2="2" v3="3" />+                <face v1="24" v2="14" v3="18" />+                <face v1="18" v2="14" v3="31" />+                <face v1="29" v2="19" v3="18" />+                <face v1="33" v2="2" v3="4" />+                <face v1="4" v2="3" v3="11" />+                <face v1="42" v2="3" v3="44" />+                <face v1="24" v2="52" v3="54" />+                <face v1="19" v2="52" v3="24" />+                <face v1="24" v2="18" v3="19" />+                <face v1="14" v2="24" v3="54" />+                <face v1="19" v2="29" v3="52" />+                <face v1="3" v2="2" v3="44" />+                <face v1="42" v2="11" v3="3" />+            </lodfacelist>+            <lodfacelist submeshindex="1" numfaces="731">+                <face v1="17" v2="15" v3="16" />+                <face v1="1272" v2="8" v3="26" />+                <face v1="43" v2="80" v3="339" />+                <face v1="1079" v2="50" v3="53" />+                <face v1="69" v2="70" v3="63" />+                <face v1="66" v2="59" v3="86" />+                <face v1="96" v2="102" v3="98" />+                <face v1="1329" v2="59" v3="63" />+                <face v1="126" v2="127" v3="39" />+                <face v1="1073" v2="161" v3="165" />+                <face v1="1635" v2="119" v3="148" />+                <face v1="357" v2="148" v3="171" />+                <face v1="193" v2="195" v3="194" />+                <face v1="194" v2="195" v3="197" />+                <face v1="203" v2="139" v3="210" />+                <face v1="212" v2="171" v3="119" />+                <face v1="223" v2="224" v3="225" />+                <face v1="223" v2="222" v3="224" />+                <face v1="222" v2="353" v3="224" />+                <face v1="253" v2="413" v3="252" />+                <face v1="268" v2="263" v3="266" />+                <face v1="268" v2="272" v3="11" />+                <face v1="273" v2="274" v3="275" />+                <face v1="273" v2="883" v3="274" />+                <face v1="280" v2="275" v3="279" />+                <face v1="1056" v2="965" v3="24" />+                <face v1="289" v2="965" v3="282" />+                <face v1="105" v2="300" v3="301" />+                <face v1="1083" v2="98" v3="102" />+                <face v1="1030" v2="1079" v3="89" />+                <face v1="353" v2="320" v3="1027" />+                <face v1="353" v2="119" v3="320" />+                <face v1="324" v2="1027" v3="1026" />+                <face v1="329" v2="330" v3="92" />+                <face v1="331" v2="332" v3="333" />+                <face v1="333" v2="43" v3="331" />+                <face v1="43" v2="78" v3="80" />+                <face v1="340" v2="342" v3="331" />+                <face v1="43" v2="344" v3="345" />+                <face v1="355" v2="357" v3="356" />+                <face v1="1074" v2="355" v3="356" />+                <face v1="1074" v2="148" v3="355" />+                <face v1="148" v2="1074" v3="152" />+                <face v1="363" v2="170" v3="161" />+                <face v1="170" v2="165" v3="161" />+                <face v1="186" v2="365" v3="185" />+                <face v1="367" v2="363" v3="161" />+                <face v1="170" v2="168" v3="222" />+                <face v1="413" v2="6" v3="252" />+                <face v1="6" v2="398" v3="252" />+                <face v1="116" v2="972" v3="1321" />+                <face v1="406" v2="253" v3="407" />+                <face v1="406" v2="407" v3="31" />+                <face v1="433" v2="1405" v3="435" />+                <face v1="433" v2="477" v3="1405" />+                <face v1="444" v2="1447" v3="433" />+                <face v1="458" v2="349" v3="460" />+                <face v1="678" v2="503" v3="497" />+                <face v1="678" v2="505" v3="503" />+                <face v1="531" v2="533" v3="530" />+                <face v1="541" v2="543" v3="530" />+                <face v1="541" v2="547" v3="539" />+                <face v1="539" v2="756" v3="556" />+                <face v1="1522" v2="563" v3="560" />+                <face v1="568" v2="569" v3="578" />+                <face v1="788" v2="731" v3="483" />+                <face v1="573" v2="605" v3="590" />+                <face v1="440" v2="1421" v3="422" />+                <face v1="423" v2="435" v3="422" />+                <face v1="444" v2="435" v3="423" />+                <face v1="444" v2="433" v3="435" />+                <face v1="1428" v2="1146" v3="638" />+                <face v1="647" v2="649" v3="648" />+                <face v1="886" v2="593" v3="649" />+                <face v1="812" v2="886" v3="483" />+                <face v1="483" v2="643" v3="812" />+                <face v1="494" v2="653" v3="651" />+                <face v1="651" v2="693" v3="660" />+                <face v1="494" v2="651" v3="660" />+                <face v1="670" v2="868" v3="503" />+                <face v1="670" v2="505" v3="678" />+                <face v1="680" v2="59" v3="98" />+                <face v1="684" v2="693" v3="688" />+                <face v1="674" v2="699" v3="700" />+                <face v1="703" v2="704" v3="702" />+                <face v1="463" v2="707" v3="712" />+                <face v1="703" v2="707" v3="715" />+                <face v1="1403" v2="864" v3="606" />+                <face v1="1403" v2="510" v3="864" />+                <face v1="510" v2="466" v3="722" />+                <face v1="727" v2="788" v3="543" />+                <face v1="788" v2="530" v3="543" />+                <face v1="733" v2="736" v3="734" />+                <face v1="569" v2="552" v3="578" />+                <face v1="569" v2="550" v3="552" />+                <face v1="560" v2="530" v3="737" />+                <face v1="563" v2="530" v3="560" />+                <face v1="745" v2="733" v3="747" />+                <face v1="750" v2="752" v3="749" />+                <face v1="547" v2="541" v3="754" />+                <face v1="758" v2="647" v3="790" />+                <face v1="790" v2="760" v3="758" />+                <face v1="761" v2="481" v3="581" />+                <face v1="678" v2="497" v3="769" />+                <face v1="769" v2="684" v3="678" />+                <face v1="678" v2="684" v3="795" />+                <face v1="734" v2="593" v3="550" />+                <face v1="742" v2="741" v3="778" />+                <face v1="530" v2="563" v3="741" />+                <face v1="553" v2="575" v3="786" />+                <face v1="533" v2="531" v3="790" />+                <face v1="795" v2="722" v3="1503" />+                <face v1="795" v2="510" v3="722" />+                <face v1="801" v2="621" v3="887" />+                <face v1="801" v2="627" v3="454" />+                <face v1="808" v2="622" v3="806" />+                <face v1="808" v2="621" v3="622" />+                <face v1="827" v2="627" v3="801" />+                <face v1="722" v2="466" v3="463" />+                <face v1="463" v2="1503" v3="722" />+                <face v1="466" v2="616" v3="1629" />+                <face v1="832" v2="419" v3="418" />+                <face v1="832" v2="833" v3="419" />+                <face v1="1522" v2="741" v3="563" />+                <face v1="756" v2="1521" v3="556" />+                <face v1="564" v2="733" v3="745" />+                <face v1="560" v2="736" v3="733" />+                <face v1="560" v2="737" v3="736" />+                <face v1="754" v2="756" v3="547" />+                <face v1="349" v2="348" v3="460" />+                <face v1="704" v2="703" v3="715" />+                <face v1="707" v2="463" v3="856" />+                <face v1="856" v2="937" v3="707" />+                <face v1="703" v2="702" v3="712" />+                <face v1="712" v2="707" v3="703" />+                <face v1="685" v2="684" v3="858" />+                <face v1="688" v2="686" v3="864" />+                <face v1="864" v2="686" v3="675" />+                <face v1="868" v2="497" v3="503" />+                <face v1="515" v2="691" v3="876" />+                <face v1="874" v2="653" v3="494" />+                <face v1="424" v2="812" v3="643" />+                <face v1="483" v2="886" v3="649" />+                <face v1="647" v2="758" v3="649" />+                <face v1="758" v2="483" v3="649" />+                <face v1="879" v2="1442" v3="880" />+                <face v1="273" v2="820" v3="883" />+                <face v1="454" v2="886" v3="801" />+                <face v1="827" v2="887" v3="832" />+                <face v1="832" v2="418" v3="827" />+                <face v1="648" v2="649" v3="593" />+                <face v1="864" v2="556" v3="590" />+                <face v1="575" v2="553" v3="903" />+                <face v1="1522" v2="752" v3="909" />+                <face v1="750" v2="568" v3="578" />+                <face v1="578" v2="553" v3="750" />+                <face v1="564" v2="1522" v3="560" />+                <face v1="864" v2="539" v3="556" />+                <face v1="903" v2="553" v3="550" />+                <face v1="550" v2="573" v3="903" />+                <face v1="593" v2="734" v3="595" />+                <face v1="734" v2="736" v3="595" />+                <face v1="737" v2="530" v3="533" />+                <face v1="539" v2="543" v3="541" />+                <face v1="788" v2="529" v3="531" />+                <face v1="691" v2="515" v3="516" />+                <face v1="98" v2="660" v3="680" />+                <face v1="699" v2="660" v3="685" />+                <face v1="685" v2="693" v3="684" />+                <face v1="693" v2="651" v3="686" />+                <face v1="86" v2="59" v3="937" />+                <face v1="856" v2="460" v3="935" />+                <face v1="715" v2="868" v3="940" />+                <face v1="945" v2="937" v3="59" />+                <face v1="581" v2="731" v3="921" />+                <face v1="616" v2="1403" v3="454" />+                <face v1="444" v2="423" v3="952" />+                <face v1="820" v2="1421" v3="440" />+                <face v1="419" v2="955" v3="454" />+                <face v1="16" v2="275" v3="17" />+                <face v1="1073" v2="165" v3="376" />+                <face v1="24" v2="393" v3="376" />+                <face v1="1248" v2="976" v3="189" />+                <face v1="218" v2="168" v3="982" />+                <face v1="353" v2="222" v3="218" />+                <face v1="24" v2="210" v3="139" />+                <face v1="991" v2="992" v3="993" />+                <face v1="991" v2="53" v3="992" />+                <face v1="376" v2="293" v3="24" />+                <face v1="976" v2="996" v3="997" />+                <face v1="976" v2="1248" v3="996" />+                <face v1="998" v2="363" v3="367" />+                <face v1="161" v2="356" v3="386" />+                <face v1="1002" v2="168" v3="363" />+                <face v1="168" v2="170" v3="363" />+                <face v1="152" v2="1074" v3="989" />+                <face v1="353" v2="116" v3="1008" />+                <face v1="1079" v2="1030" v3="50" />+                <face v1="345" v2="344" v3="66" />+                <face v1="331" v2="43" v3="340" />+                <face v1="333" v2="332" v3="344" />+                <face v1="344" v2="43" v3="333" />+                <face v1="1016" v2="1017" v3="1018" />+                <face v1="1027" v2="324" v3="330" />+                <face v1="324" v2="92" v3="330" />+                <face v1="59" v2="96" v3="98" />+                <face v1="1026" v2="300" v3="105" />+                <face v1="965" v2="289" v3="24" />+                <face v1="224" v2="407" v3="1056" />+                <face v1="1046" v2="1158" v3="1047" />+                <face v1="406" v2="31" v3="6" />+                <face v1="8" v2="1057" v3="26" />+                <face v1="8" v2="263" v3="1057" />+                <face v1="1059" v2="1060" v3="1" />+                <face v1="991" v2="201" v3="56" />+                <face v1="218" v2="982" v3="1070" />+                <face v1="1070" v2="996" v3="218" />+                <face v1="386" v2="188" v3="161" />+                <face v1="148" v2="119" v3="171" />+                <face v1="195" v2="193" v3="197" />+                <face v1="1073" v2="989" v3="1074" />+                <face v1="1073" v2="376" v3="989" />+                <face v1="139" v2="393" v3="24" />+                <face v1="1329" v2="1035" v3="1028" />+                <face v1="1035" v2="1329" v3="63" />+                <face v1="344" v2="331" v3="1084" />+                <face v1="263" v2="1052" v3="266" />+                <face v1="348" v2="349" v3="1090" />+                <face v1="26" v2="11" v3="1161" />+                <face v1="17" v2="1159" v3="15" />+                <face v1="24" v2="289" v3="56" />+                <face v1="1264" v2="116" v3="1076" />+                <face v1="1111" v2="340" v3="1090" />+                <face v1="1376" v2="1059" v3="116" />+                <face v1="1059" v2="1" v3="34" />+                <face v1="31" v2="34" v3="6" />+                <face v1="8" v2="18" v3="1052" />+                <face v1="8" v2="15" v3="18" />+                <face v1="1052" v2="1128" v3="1129" />+                <face v1="1130" v2="266" v3="1132" />+                <face v1="282" v2="1046" v3="1047" />+                <face v1="280" v2="1159" v3="17" />+                <face v1="268" v2="11" v3="245" />+                <face v1="15" v2="1159" v3="18" />+                <face v1="268" v2="1057" v3="263" />+                <face v1="1057" v2="268" v3="245" />+                <face v1="1047" v2="1146" v3="282" />+                <face v1="1158" v2="1151" v3="1047" />+                <face v1="1155" v2="1158" v3="1159" />+                <face v1="1046" v2="1161" v3="11" />+                <face v1="1046" v2="965" v3="1161" />+                <face v1="1451" v2="8" v3="1272" />+                <face v1="1111" v2="960" v3="340" />+                <face v1="34" v2="116" v3="1059" />+                <face v1="39" v2="127" v3="1079" />+                <face v1="398" v2="253" v3="252" />+                <face v1="201" v2="991" v3="50" />+                <face v1="1079" v2="53" v3="1085" />+                <face v1="1085" v2="53" v3="481" />+                <face v1="1017" v2="324" v3="1033" />+                <face v1="491" v2="1083" v3="127" />+                <face v1="298" v2="102" v3="324" />+                <face v1="298" v2="324" v3="105" />+                <face v1="1018" v2="59" v3="1329" />+                <face v1="1027" v2="330" v3="1018" />+                <face v1="1029" v2="1035" v3="1220" />+                <face v1="116" v2="984" v3="972" />+                <face v1="50" v2="1030" v3="1031" />+                <face v1="1079" v2="481" v3="1224" />+                <face v1="1079" v2="1085" v3="481" />+                <face v1="1321" v2="342" v3="116" />+                <face v1="116" v2="340" v3="1076" />+                <face v1="170" v2="376" v3="165" />+                <face v1="1073" v2="1074" v3="356" />+                <face v1="148" v2="357" v3="355" />+                <face v1="193" v2="218" v3="197" />+                <face v1="357" v2="365" v3="186" />+                <face v1="982" v2="998" v3="1070" />+                <face v1="982" v2="1002" v3="998" />+                <face v1="218" v2="996" v3="197" />+                <face v1="201" v2="50" v3="1236" />+                <face v1="56" v2="201" v3="203" />+                <face v1="56" v2="210" v3="24" />+                <face v1="56" v2="203" v3="210" />+                <face v1="201" v2="381" v3="139" />+                <face v1="193" v2="353" v3="218" />+                <face v1="353" v2="193" v3="171" />+                <face v1="817" v2="960" v3="458" />+                <face v1="960" v2="1264" v3="340" />+                <face v1="1355" v2="1272" v3="26" />+                <face v1="249" v2="965" v3="1282" />+                <face v1="1056" v2="1282" v3="965" />+                <face v1="1159" v2="1128" v3="18" />+                <face v1="1128" v2="1159" v3="1132" />+                <face v1="1287" v2="266" v3="1130" />+                <face v1="1155" v2="279" v3="1284" />+                <face v1="1159" v2="279" v3="1155" />+                <face v1="272" v2="1287" v3="1130" />+                <face v1="266" v2="1287" v3="272" />+                <face v1="1130" v2="1158" v3="1046" />+                <face v1="1130" v2="1046" v3="11" />+                <face v1="1284" v2="1297" v3="1151" />+                <face v1="1151" v2="1297" v3="1047" />+                <face v1="282" v2="1146" v3="289" />+                <face v1="1056" v2="24" v3="224" />+                <face v1="324" v2="1026" v3="105" />+                <face v1="324" v2="102" v3="1033" />+                <face v1="298" v2="127" v3="1083" />+                <face v1="1321" v2="331" v3="342" />+                <face v1="1084" v2="331" v3="1321" />+                <face v1="126" v2="491" v3="127" />+                <face v1="39" v2="491" v3="126" />+                <face v1="1031" v2="1030" v3="320" />+                <face v1="116" v2="985" v3="984" />+                <face v1="116" v2="1325" v3="985" />+                <face v1="1029" v2="1028" v3="1035" />+                <face v1="59" v2="1033" v3="96" />+                <face v1="1035" v2="1084" v3="1321" />+                <face v1="1035" v2="70" v3="1084" />+                <face v1="339" v2="1090" v3="340" />+                <face v1="339" v2="348" v3="1090" />+                <face v1="1220" v2="1035" v3="1321" />+                <face v1="1030" v2="300" v3="320" />+                <face v1="320" v2="1026" v3="1027" />+                <face v1="1027" v2="1018" v3="1329" />+                <face v1="1330" v2="330" v3="329" />+                <face v1="1016" v2="1018" v3="1333" />+                <face v1="78" v2="43" v3="345" />+                <face v1="66" v2="63" v3="59" />+                <face v1="86" v2="78" v3="66" />+                <face v1="66" v2="344" v3="69" />+                <face v1="148" v2="1236" v3="1635" />+                <face v1="1236" v2="50" v3="1635" />+                <face v1="320" v2="119" v3="1031" />+                <face v1="1220" v2="1321" v3="972" />+                <face v1="381" v2="152" v3="989" />+                <face v1="353" v2="171" v3="212" />+                <face v1="1341" v2="367" v3="997" />+                <face v1="1002" v2="982" v3="168" />+                <face v1="367" v2="161" v3="188" />+                <face v1="998" v2="1341" v3="1070" />+                <face v1="1341" v2="998" v3="367" />+                <face v1="1345" v2="357" v3="171" />+                <face v1="376" v2="222" v3="223" />+                <face v1="376" v2="170" v3="222" />+                <face v1="376" v2="139" v3="989" />+                <face v1="984" v2="1028" v3="972" />+                <face v1="222" v2="168" v3="218" />+                <face v1="185" v2="1345" v3="1350" />+                <face v1="386" v2="357" v3="186" />+                <face v1="193" v2="1345" v3="171" />+                <face v1="188" v2="189" v3="976" />+                <face v1="340" v2="116" v3="342" />+                <face v1="398" v2="1363" v3="253" />+                <face v1="349" v2="458" v3="1090" />+                <face v1="960" v2="817" v3="1366" />+                <face v1="1371" v2="1376" v3="1264" />+                <face v1="1376" v2="1377" v3="1123" />+                <face v1="275" v2="274" v3="279" />+                <face v1="1284" v2="1294" v3="1297" />+                <face v1="454" v2="958" v3="616" />+                <face v1="955" v2="958" v3="454" />+                <face v1="955" v2="1400" v3="958" />+                <face v1="1403" v2="846" v3="593" />+                <face v1="1404" v2="953" v3="1405" />+                <face v1="1407" v2="1408" v3="477" />+                <face v1="1407" v2="1404" v3="1408" />+                <face v1="1451" v2="422" v3="1421" />+                <face v1="1451" v2="423" v3="422" />+                <face v1="954" v2="431" v3="1420" />+                <face v1="422" v2="435" v3="1405" />+                <face v1="1421" v2="820" v3="273" />+                <face v1="643" v2="56" v3="289" />+                <face v1="1146" v2="1428" v3="643" />+                <face v1="812" v2="424" v3="1413" />+                <face v1="1451" v2="1272" v3="952" />+                <face v1="876" v2="516" v3="515" />+                <face v1="940" v2="670" v3="1463" />+                <face v1="940" v2="868" v3="670" />+                <face v1="715" v2="937" v3="945" />+                <face v1="477" v2="1408" v3="1405" />+                <face v1="581" v2="923" v3="761" />+                <face v1="921" v2="923" v3="581" />+                <face v1="56" v2="483" v3="53" />+                <face v1="940" v2="1463" v3="463" />+                <face v1="935" v2="86" v3="937" />+                <face v1="653" v2="874" v3="675" />+                <face v1="680" v2="660" v3="674" />+                <face v1="862" v2="660" v3="491" />+                <face v1="862" v2="494" v3="660" />+                <face v1="678" v2="795" v3="670" />+                <face v1="864" v2="510" v3="688" />+                <face v1="1494" v2="864" v3="676" />+                <face v1="923" v2="691" v3="516" />+                <face v1="923" v2="675" v3="691" />+                <face v1="1499" v2="1224" v3="516" />+                <face v1="1499" v2="1079" v3="1224" />+                <face v1="491" v2="1499" v3="876" />+                <face v1="491" v2="39" v3="1499" />+                <face v1="923" v2="676" v3="675" />+                <face v1="676" v2="923" v3="1494" />+                <face v1="1511" v2="921" v3="727" />+                <face v1="595" v2="790" v3="840" />+                <face v1="533" v2="790" v3="595" />+                <face v1="530" v2="788" v3="531" />+                <face v1="754" v2="742" v3="756" />+                <face v1="736" v2="737" v3="595" />+                <face v1="864" v2="913" v3="539" />+                <face v1="1520" v2="1521" v3="757" />+                <face v1="733" v2="734" v3="747" />+                <face v1="903" v2="1526" v3="575" />+                <face v1="903" v2="909" v3="1526" />+                <face v1="749" v2="752" v3="1522" />+                <face v1="731" v2="727" v3="921" />+                <face v1="581" v2="483" v3="731" />+                <face v1="788" v2="483" v3="760" />+                <face v1="864" v2="1494" v3="913" />+                <face v1="605" v2="550" v3="593" />+                <face v1="454" v2="593" v3="886" />+                <face v1="466" v2="1544" v3="817" />+                <face v1="952" v2="1272" v3="1355" />+                <face v1="952" v2="472" v3="888" />+                <face v1="444" v2="888" v3="1449" />+                <face v1="622" v2="472" v3="806" />+                <face v1="621" v2="472" v3="622" />+                <face v1="888" v2="812" v3="1449" />+                <face v1="801" v2="1558" v3="888" />+                <face v1="801" v2="886" v3="1558" />+                <face v1="418" v2="627" v3="827" />+                <face v1="419" v2="627" v3="418" />+                <face v1="431" v2="954" v3="477" />+                <face v1="820" v2="879" v3="880" />+                <face v1="1442" v2="440" v3="1404" />+                <face v1="883" v2="1561" v3="274" />+                <face v1="1294" v2="1284" v3="1561" />+                <face v1="638" v2="1294" v3="1407" />+                <face v1="638" v2="1407" v3="1413" />+                <face v1="1146" v2="1639" v3="1632" />+                <face v1="289" v2="1146" v3="643" />+                <face v1="481" v2="761" v3="923" />+                <face v1="491" v2="660" v3="98" />+                <face v1="684" v2="688" v3="510" />+                <face v1="868" v2="674" v3="497" />+                <face v1="868" v2="59" v3="674" />+                <face v1="874" v2="862" v3="876" />+                <face v1="874" v2="494" v3="862" />+                <face v1="675" v2="686" v3="651" />+                <face v1="858" v2="684" v3="769" />+                <face v1="700" v2="497" v3="674" />+                <face v1="702" v2="463" v3="712" />+                <face v1="702" v2="940" v3="463" />+                <face v1="868" v2="945" v3="59" />+                <face v1="86" v2="935" v3="80" />+                <face v1="491" v2="876" v3="862" />+                <face v1="1511" v2="913" v3="921" />+                <face v1="1511" v2="543" v3="913" />+                <face v1="1494" v2="921" v3="913" />+                <face v1="1494" v2="923" v3="921" />+                <face v1="605" v2="846" v3="606" />+                <face v1="605" v2="593" v3="846" />+                <face v1="556" v2="1521" v3="909" />+                <face v1="909" v2="1521" v3="1520" />+                <face v1="1603" v2="568" v3="749" />+                <face v1="530" v2="754" v3="541" />+                <face v1="593" v2="840" v3="648" />+                <face v1="593" v2="595" v3="840" />+                <face v1="581" v2="481" v3="483" />+                <face v1="648" v2="790" v3="647" />+                <face v1="840" v2="790" v3="648" />+                <face v1="758" v2="760" v3="483" />+                <face v1="1608" v2="769" v3="497" />+                <face v1="1608" v2="1595" v3="769" />+                <face v1="909" v2="903" v3="556" />+                <face v1="575" v2="750" v3="786" />+                <face v1="952" v2="1614" v3="472" />+                <face v1="887" v2="827" v3="801" />+                <face v1="806" v2="236" v3="1360" />+                <face v1="806" v2="1614" v3="236" />+                <face v1="808" v2="832" v3="621" />+                <face v1="833" v2="832" v3="808" />+                <face v1="1629" v2="1624" v3="1544" />+                <face v1="1398" v2="616" v3="1631" />+                <face v1="820" v2="880" v3="883" />+                <face v1="1146" v2="1632" v3="638" />+                <face v1="1632" v2="1294" v3="638" />+                <face v1="1294" v2="1561" v3="1442" />+                <face v1="883" v2="1442" v3="1561" />+                <face v1="1442" v2="883" v3="880" />+                <face v1="1631" v2="1629" v3="1398" />+                <face v1="1544" v2="1624" v3="817" />+                <face v1="801" v2="472" v3="621" />+                <face v1="1355" v2="1614" v3="952" />+                <face v1="1355" v2="1275" v3="1614" />+                <face v1="529" v2="790" v3="531" />+                <face v1="556" v2="903" v3="573" />+                <face v1="1520" v2="741" v3="1522" />+                <face v1="1520" v2="778" v3="741" />+                <face v1="727" v2="731" v3="788" />+                <face v1="756" v2="757" v3="1521" />+                <face v1="750" v2="909" v3="752" />+                <face v1="750" v2="1526" v3="909" />+                <face v1="568" v2="750" v3="749" />+                <face v1="1603" v2="747" v3="568" />+                <face v1="745" v2="747" v3="1603" />+                <face v1="1522" v2="564" v3="745" />+                <face v1="909" v2="1520" v3="1522" />+                <face v1="786" v2="750" v3="553" />+                <face v1="757" v2="742" v3="778" />+                <face v1="757" v2="756" v3="742" />+                <face v1="741" v2="742" v3="530" />+                <face v1="734" v2="550" v3="569" />+                <face v1="745" v2="1603" v3="749" />+                <face v1="573" v2="590" v3="556" />+                <face v1="605" v2="606" v3="590" />+                <face v1="864" v2="590" v3="606" />+                <face v1="460" v2="80" v3="935" />+                <face v1="80" v2="460" v3="348" />+                <face v1="868" v2="715" v3="945" />+                <face v1="940" v2="704" v3="715" />+                <face v1="702" v2="704" v3="940" />+                <face v1="707" v2="937" v3="715" />+                <face v1="856" v2="935" v3="937" />+                <face v1="1608" v2="497" v3="700" />+                <face v1="858" v2="769" v3="1595" />+                <face v1="693" v2="685" v3="660" />+                <face v1="688" v2="693" v3="686" />+                <face v1="651" v2="653" v3="675" />+                <face v1="675" v2="876" v3="691" />+                <face v1="876" v2="675" v3="874" />+                <face v1="1503" v2="670" v3="795" />+                <face v1="458" v2="856" v3="463" />+                <face v1="458" v2="460" v3="856" />+                <face v1="1463" v2="670" v3="1503" />+                <face v1="674" v2="59" v3="680" />+                <face v1="505" v2="670" v3="503" />+                <face v1="684" v2="510" v3="795" />+                <face v1="675" v2="676" v3="864" />+                <face v1="1503" v2="463" v3="1463" />+                <face v1="643" v2="1428" v3="424" />+                <face v1="1639" v2="1294" v3="1632" />+                <face v1="1413" v2="1428" v3="638" />+                <face v1="1442" v2="1407" v3="1294" />+                <face v1="1561" v2="1284" v3="274" />+                <face v1="1407" v2="1442" v3="1404" />+                <face v1="1404" v2="440" v3="953" />+                <face v1="1558" v2="886" v3="812" />+                <face v1="1558" v2="812" v3="888" />+                <face v1="1447" v2="1413" v3="954" />+                <face v1="954" v2="1420" v3="1447" />+                <face v1="1420" v2="433" v3="1447" />+                <face v1="801" v2="888" v3="472" />+                <face v1="1614" v2="806" v3="472" />+                <face v1="952" v2="888" v3="444" />+                <face v1="1614" v2="1275" v3="236" />+                <face v1="1629" v2="1544" v3="466" />+                <face v1="846" v2="1403" v3="606" />+                <face v1="605" v2="573" v3="550" />+                <face v1="745" v2="749" v3="1522" />+                <face v1="575" v2="1526" v3="750" />+                <face v1="747" v2="569" v3="568" />+                <face v1="747" v2="734" v3="569" />+                <face v1="733" v2="564" v3="560" />+                <face v1="778" v2="1520" v3="757" />+                <face v1="578" v2="550" v3="553" />+                <face v1="550" v2="578" v3="552" />+                <face v1="530" v2="742" v3="754" />+                <face v1="547" v2="756" v3="539" />+                <face v1="913" v2="543" v3="539" />+                <face v1="737" v2="533" v3="595" />+                <face v1="760" v2="529" v3="788" />+                <face v1="760" v2="790" v3="529" />+                <face v1="543" v2="1511" v3="727" />+                <face v1="876" v2="1499" v3="516" />+                <face v1="481" v2="516" v3="1224" />+                <face v1="516" v2="481" v3="923" />+                <face v1="660" v2="699" v3="674" />+                <face v1="643" v2="483" v3="56" />+                <face v1="483" v2="481" v3="53" />+                <face v1="887" v2="621" v3="832" />+                <face v1="39" v2="1079" v3="1499" />+                <face v1="466" v2="1403" v3="616" />+                <face v1="463" v2="817" v3="458" />+                <face v1="1403" v2="466" v3="510" />+                <face v1="952" v2="423" v3="1451" />+                <face v1="1447" v2="444" v3="1449" />+                <face v1="1449" v2="1413" v3="1447" />+                <face v1="1449" v2="812" v3="1413" />+                <face v1="440" v2="1442" v3="879" />+                <face v1="433" v2="431" v3="477" />+                <face v1="440" v2="422" v3="953" />+                <face v1="1420" v2="431" v3="433" />+                <face v1="440" v2="879" v3="820" />+                <face v1="1413" v2="424" v3="1428" />+                <face v1="1413" v2="1407" v3="954" />+                <face v1="954" v2="1407" v3="477" />+                <face v1="1408" v2="1404" v3="1405" />+                <face v1="953" v2="422" v3="1405" />+                <face v1="1403" v2="593" v3="454" />+                <face v1="627" v2="419" v3="454" />+                <face v1="1629" v2="616" v3="1398" />+                <face v1="466" v2="817" v3="463" />+                <face v1="1102" v2="1633" v3="1381" />+                <face v1="1297" v2="1639" v3="1146" />+                <face v1="1297" v2="1294" v3="1300" />+                <face v1="279" v2="274" v3="1284" />+                <face v1="1060" v2="1123" v3="1377" />+                <face v1="1123" v2="1060" v3="1059" />+                <face v1="960" v2="1371" v3="1264" />+                <face v1="236" v2="1363" v3="966" />+                <face v1="236" v2="253" v3="1363" />+                <face v1="236" v2="966" v3="1360" />+                <face v1="407" v2="253" v3="1087" />+                <face v1="26" v2="1087" v3="236" />+                <face v1="249" v2="1087" v3="26" />+                <face v1="236" v2="1275" v3="1355" />+                <face v1="1264" v2="1376" v3="116" />+                <face v1="1345" v2="193" v3="1350" />+                <face v1="1018" v2="1330" v3="1333" />+                <face v1="376" v2="393" v3="139" />+                <face v1="376" v2="225" v3="293" />+                <face v1="225" v2="376" v3="375" />+                <face v1="56" v2="53" v3="991" />+                <face v1="375" v2="223" v3="225" />+                <face v1="375" v2="376" v3="223" />+                <face v1="189" v2="1350" v3="1248" />+                <face v1="185" v2="1350" v3="189" />+                <face v1="1070" v2="997" v3="996" />+                <face v1="997" v2="1070" v3="1341" />+                <face v1="1345" v2="185" v3="365" />+                <face v1="148" v2="152" v3="1236" />+                <face v1="298" v2="89" v3="127" />+                <face v1="1079" v2="127" v3="89" />+                <face v1="66" v2="69" v3="63" />+                <face v1="331" v2="344" v3="332" />+                <face v1="330" v2="1330" v3="1018" />+                <face v1="301" v2="300" v3="1030" />+                <face v1="298" v2="105" v3="89" />+                <face v1="1033" v2="1018" v3="1017" />+                <face v1="1033" v2="59" v3="1018" />+                <face v1="70" v2="1035" v3="63" />+                <face v1="116" v2="1027" v3="1325" />+                <face v1="339" v2="340" v3="43" />+                <face v1="105" v2="301" v3="89" />+                <face v1="993" v2="53" v3="50" />+                <face v1="53" v2="993" v3="992" />+                <face v1="293" v2="224" v3="24" />+                <face v1="225" v2="224" v3="293" />+                <face v1="1047" v2="1297" v3="1146" />+                <face v1="11" v2="272" v3="1130" />+                <face v1="1155" v2="1284" v3="1151" />+                <face v1="1132" v2="1158" v3="1130" />+                <face v1="1132" v2="1159" v3="1158" />+                <face v1="280" v2="279" v3="1159" />+                <face v1="275" v2="280" v3="17" />+                <face v1="266" v2="272" v3="268" />+                <face v1="413" v2="406" v3="6" />+                <face v1="406" v2="413" v3="253" />+                <face v1="1056" v2="1087" v3="1282" />+                <face v1="1087" v2="1056" v3="407" />+                <face v1="1282" v2="1087" v3="249" />+                <face v1="1161" v2="965" v3="249" />+                <face v1="1087" v2="253" v3="236" />+                <face v1="26" v2="1161" v3="249" />+                <face v1="26" v2="245" v3="11" />+                <face v1="26" v2="1057" v3="245" />+                <face v1="236" v2="1355" v3="26" />+                <face v1="1451" v2="1421" v3="16" />+                <face v1="353" v2="407" v3="224" />+                <face v1="353" v2="212" v3="119" />+                <face v1="203" v2="201" v3="139" />+                <face v1="1236" v2="381" v3="201" />+                <face v1="188" v2="997" v3="367" />+                <face v1="188" v2="976" v3="997" />+                <face v1="185" v2="188" v3="186" />+                <face v1="185" v2="189" v3="188" />+                <face v1="1248" v2="193" v3="194" />+                <face v1="1248" v2="1350" v3="193" />+                <face v1="1248" v2="197" v3="996" />+                <face v1="197" v2="1248" v3="194" />+                <face v1="998" v2="1002" v3="363" />+                <face v1="186" v2="188" v3="386" />+                <face v1="1345" v2="365" v3="357" />+                <face v1="356" v2="161" v3="1073" />+                <face v1="357" v2="386" v3="356" />+                <face v1="139" v2="381" v3="989" />+                <face v1="381" v2="1236" v3="152" />+                <face v1="1635" v2="50" v3="1031" />+                <face v1="1008" v2="116" v3="34" />+                <face v1="119" v2="1635" v3="1031" />+                <face v1="116" v2="353" v3="1027" />+                <face v1="1028" v2="1220" v3="972" />+                <face v1="1029" v2="1220" v3="1028" />+                <face v1="1027" v2="1329" v3="1325" />+                <face v1="985" v2="1325" v3="1329" />+                <face v1="1329" v2="984" v3="985" />+                <face v1="1329" v2="1028" v3="984" />+                <face v1="102" v2="298" v3="1083" />+                <face v1="98" v2="1083" v3="491" />+                <face v1="1033" v2="102" v3="96" />+                <face v1="324" v2="1017" v3="92" />+                <face v1="300" v2="1026" v3="320" />+                <face v1="89" v2="301" v3="1030" />+                <face v1="348" v2="339" v3="80" />+                <face v1="86" v2="80" v3="78" />+                <face v1="345" v2="66" v3="78" />+                <face v1="50" v2="991" v3="993" />+                <face v1="1052" v2="1129" v3="266" />+                <face v1="70" v2="344" v3="1084" />+                <face v1="70" v2="69" v3="344" />+                <face v1="458" v2="960" v3="1111" />+                <face v1="1046" v2="282" v3="965" />+                <face v1="1151" v2="1158" v3="1155" />+                <face v1="1421" v2="275" v3="16" />+                <face v1="273" v2="275" v3="1421" />+                <face v1="1052" v2="263" v3="8" />+                <face v1="15" v2="1451" v3="16" />+                <face v1="15" v2="8" v3="1451" />+                <face v1="1129" v2="1132" v3="266" />+                <face v1="1129" v2="1128" v3="1132" />+                <face v1="1052" v2="18" v3="1128" />+                <face v1="1008" v2="34" v3="31" />+                <face v1="353" v2="1008" v3="407" />+                <face v1="31" v2="407" v3="1008" />+                <face v1="1" v2="6" v3="34" />+                <face v1="1" v2="5" v3="6" />+                <face v1="1" v2="1640" v3="5" />+                <face v1="1123" v2="1059" v3="1376" />+                <face v1="1111" v2="1090" v3="458" />+                <face v1="1076" v2="340" v3="1264" />+                <face v1="1099" v2="1381" v3="1641" />+                <face v1="1099" v2="1102" v3="1381" />+            </lodfacelist>+            <lodfacelist submeshindex="2" numfaces="96">+                <face v1="7" v2="5" v3="9" />+                <face v1="54" v2="9" v3="14" />+                <face v1="20" v2="21" v3="22" />+                <face v1="20" v2="14" v3="21" />+                <face v1="30" v2="20" v3="22" />+                <face v1="30" v2="31" v3="20" />+                <face v1="28" v2="31" v3="30" />+                <face v1="32" v2="31" v3="28" />+                <face v1="32" v2="35" v3="31" />+                <face v1="36" v2="42" v3="32" />+                <face v1="60" v2="83" v3="66" />+                <face v1="7" v2="60" v3="66" />+                <face v1="68" v2="90" v3="70" />+                <face v1="78" v2="68" v3="70" />+                <face v1="60" v2="9" v3="54" />+                <face v1="20" v2="54" v3="14" />+                <face v1="31" v2="45" v3="20" />+                <face v1="68" v2="78" v3="5" />+                <face v1="60" v2="81" v3="83" />+                <face v1="42" v2="78" v3="90" />+                <face v1="21" v2="14" v3="102" />+                <face v1="115" v2="32" v3="28" />+                <face v1="5" v2="36" v3="115" />+                <face v1="5" v2="115" v3="119" />+                <face v1="124" v2="131" v3="126" />+                <face v1="102" v2="124" v3="106" />+                <face v1="124" v2="102" v3="131" />+                <face v1="131" v2="119" v3="139" />+                <face v1="119" v2="131" v3="102" />+                <face v1="156" v2="81" v3="126" />+                <face v1="126" v2="81" v3="120" />+                <face v1="126" v2="131" v3="156" />+                <face v1="171" v2="174" v3="175" />+                <face v1="174" v2="171" v3="166" />+                <face v1="139" v2="115" v3="182" />+                <face v1="191" v2="182" v3="115" />+                <face v1="190" v2="166" v3="191" />+                <face v1="106" v2="193" v3="190" />+                <face v1="120" v2="163" v3="198" />+                <face v1="161" v2="163" v3="120" />+                <face v1="42" v2="166" v3="161" />+                <face v1="90" v2="166" v3="42" />+                <face v1="166" v2="90" v3="174" />+                <face v1="119" v2="115" v3="139" />+                <face v1="191" v2="28" v3="190" />+                <face v1="28" v2="106" v3="190" />+                <face v1="81" v2="161" v3="120" />+                <face v1="42" v2="161" v3="81" />+                <face v1="171" v2="175" v3="139" />+                <face v1="193" v2="198" v3="163" />+                <face v1="198" v2="193" v3="124" />+                <face v1="163" v2="190" v3="193" />+                <face v1="163" v2="166" v3="190" />+                <face v1="171" v2="182" v3="166" />+                <face v1="182" v2="171" v3="139" />+                <face v1="136" v2="139" v3="175" />+                <face v1="28" v2="191" v3="115" />+                <face v1="174" v2="83" v3="152" />+                <face v1="83" v2="174" v3="90" />+                <face v1="106" v2="124" v3="193" />+                <face v1="182" v2="191" v3="166" />+                <face v1="175" v2="152" v3="136" />+                <face v1="152" v2="175" v3="174" />+                <face v1="161" v2="166" v3="163" />+                <face v1="133" v2="156" v3="131" />+                <face v1="156" v2="133" v3="152" />+                <face v1="136" v2="152" v3="133" />+                <face v1="152" v2="81" v3="156" />+                <face v1="81" v2="152" v3="83" />+                <face v1="133" v2="139" v3="136" />+                <face v1="131" v2="139" v3="133" />+                <face v1="124" v2="126" v3="120" />+                <face v1="124" v2="120" v3="198" />+                <face v1="9" v2="5" v3="119" />+                <face v1="115" v2="36" v3="32" />+                <face v1="28" v2="30" v3="106" />+                <face v1="30" v2="22" v3="106" />+                <face v1="22" v2="102" v3="106" />+                <face v1="22" v2="21" v3="102" />+                <face v1="102" v2="14" v3="9" />+                <face v1="9" v2="119" v3="102" />+                <face v1="90" v2="78" v3="70" />+                <face v1="90" v2="66" v3="83" />+                <face v1="81" v2="60" v3="54" />+                <face v1="81" v2="54" v3="42" />+                <face v1="68" v2="5" v3="7" />+                <face v1="78" v2="42" v3="5" />+                <face v1="45" v2="31" v3="35" />+                <face v1="54" v2="20" v3="45" />+                <face v1="60" v2="7" v3="9" />+                <face v1="68" v2="66" v3="90" />+                <face v1="68" v2="7" v3="66" />+                <face v1="54" v2="45" v3="42" />+                <face v1="42" v2="45" v3="35" />+                <face v1="32" v2="42" v3="35" />+                <face v1="5" v2="42" v3="36" />+            </lodfacelist>+            <lodfacelist submeshindex="3" numfaces="156">+                <face v1="2" v2="196" v3="6" />+                <face v1="22" v2="29" v3="23" />+                <face v1="6" v2="29" v3="22" />+                <face v1="27" v2="29" v3="6" />+                <face v1="196" v2="27" v3="37" />+                <face v1="27" v2="6" v3="37" />+                <face v1="6" v2="196" v3="37" />+                <face v1="47" v2="41" v3="203" />+                <face v1="50" v2="51" v3="45" />+                <face v1="47" v2="203" v3="45" />+                <face v1="45" v2="51" v3="47" />+                <face v1="56" v2="57" v3="221" />+                <face v1="67" v2="68" v3="69" />+                <face v1="82" v2="80" v3="74" />+                <face v1="87" v2="262" v3="82" />+                <face v1="82" v2="74" v3="87" />+                <face v1="82" v2="262" v3="80" />+                <face v1="74" v2="90" v3="87" />+                <face v1="74" v2="93" v3="91" />+                <face v1="91" v2="90" v3="74" />+                <face v1="91" v2="93" v3="100" />+                <face v1="100" v2="93" v3="74" />+                <face v1="100" v2="74" v3="286" />+                <face v1="74" v2="101" v3="286" />+                <face v1="74" v2="287" v3="101" />+                <face v1="113" v2="74" v3="80" />+                <face v1="115" v2="116" v3="117" />+                <face v1="117" v2="141" v3="115" />+                <face v1="117" v2="116" v3="119" />+                <face v1="196" v2="141" v3="117" />+                <face v1="125" v2="117" v3="119" />+                <face v1="196" v2="117" v3="125" />+                <face v1="135" v2="136" v3="134" />+                <face v1="134" v2="136" v3="126" />+                <face v1="137" v2="138" v3="139" />+                <face v1="139" v2="138" v3="141" />+                <face v1="139" v2="141" v3="143" />+                <face v1="148" v2="137" v3="143" />+                <face v1="137" v2="139" v3="143" />+                <face v1="154" v2="137" v3="148" />+                <face v1="6" v2="126" v3="154" />+                <face v1="126" v2="6" v3="322" />+                <face v1="322" v2="6" v3="22" />+                <face v1="22" v2="23" v3="314" />+                <face v1="314" v2="23" v3="178" />+                <face v1="178" v2="27" v3="186" />+                <face v1="27" v2="125" v3="186" />+                <face v1="27" v2="196" v3="125" />+                <face v1="80" v2="203" v3="113" />+                <face v1="47" v2="205" v3="206" />+                <face v1="206" v2="41" v3="47" />+                <face v1="206" v2="205" v3="56" />+                <face v1="113" v2="287" v3="74" />+                <face v1="206" v2="56" v3="286" />+                <face v1="286" v2="56" v3="221" />+                <face v1="286" v2="101" v3="206" />+                <face v1="239" v2="240" v3="238" />+                <face v1="239" v2="248" v3="279" />+                <face v1="279" v2="240" v3="239" />+                <face v1="248" v2="250" v3="279" />+                <face v1="279" v2="250" v3="277" />+                <face v1="87" v2="90" v3="252" />+                <face v1="252" v2="90" v3="91" />+                <face v1="252" v2="91" v3="280" />+                <face v1="277" v2="250" v3="67" />+                <face v1="67" v2="250" v3="248" />+                <face v1="45" v2="268" v3="50" />+                <face v1="69" v2="268" v3="45" />+                <face v1="45" v2="67" v3="69" />+                <face v1="67" v2="45" v3="80" />+                <face v1="67" v2="80" v3="262" />+                <face v1="67" v2="262" v3="277" />+                <face v1="262" v2="87" v3="277" />+                <face v1="277" v2="87" v3="252" />+                <face v1="279" v2="277" v3="252" />+                <face v1="279" v2="252" v3="280" />+                <face v1="279" v2="280" v3="240" />+                <face v1="100" v2="238" v3="91" />+                <face v1="240" v2="280" v3="91" />+                <face v1="91" v2="238" v3="240" />+                <face v1="228" v2="100" v3="221" />+                <face v1="228" v2="238" v3="100" />+                <face v1="221" v2="100" v3="286" />+                <face v1="206" v2="101" v3="287" />+                <face v1="287" v2="113" v3="41" />+                <face v1="206" v2="287" v3="41" />+                <face v1="203" v2="41" v3="113" />+                <face v1="80" v2="45" v3="203" />+                <face v1="141" v2="196" v3="143" />+                <face v1="141" v2="296" v3="115" />+                <face v1="186" v2="125" v3="304" />+                <face v1="119" v2="303" v3="304" />+                <face v1="304" v2="125" v3="119" />+                <face v1="178" v2="23" v3="306" />+                <face v1="23" v2="29" v3="306" />+                <face v1="306" v2="29" v3="27" />+                <face v1="27" v2="178" v3="306" />+                <face v1="304" v2="307" v3="308" />+                <face v1="308" v2="186" v3="304" />+                <face v1="309" v2="178" v3="308" />+                <face v1="308" v2="307" v3="309" />+                <face v1="308" v2="178" v3="186" />+                <face v1="309" v2="313" v3="314" />+                <face v1="314" v2="178" v3="309" />+                <face v1="315" v2="22" v3="314" />+                <face v1="314" v2="313" v3="315" />+                <face v1="315" v2="319" v3="22" />+                <face v1="319" v2="322" v3="22" />+                <face v1="134" v2="326" v3="135" />+                <face v1="126" v2="322" v3="134" />+                <face v1="319" v2="326" v3="134" />+                <face v1="134" v2="322" v3="319" />+                <face v1="148" v2="2" v3="6" />+                <face v1="6" v2="154" v3="148" />+                <face v1="154" v2="126" v3="137" />+                <face v1="126" v2="332" v3="137" />+                <face v1="2" v2="143" v3="196" />+                <face v1="148" v2="143" v3="2" />+                <face v1="115" v2="296" v3="334" />+                <face v1="334" v2="116" v3="115" />+                <face v1="141" v2="138" v3="334" />+                <face v1="334" v2="296" v3="141" />+                <face v1="137" v2="332" v3="334" />+                <face v1="334" v2="138" v3="137" />+                <face v1="126" v2="136" v3="334" />+                <face v1="334" v2="332" v3="126" />+                <face v1="135" v2="326" v3="334" />+                <face v1="334" v2="136" v3="135" />+                <face v1="334" v2="326" v3="319" />+                <face v1="119" v2="116" v3="334" />+                <face v1="315" v2="313" v3="336" />+                <face v1="336" v2="319" v3="315" />+                <face v1="309" v2="307" v3="336" />+                <face v1="336" v2="313" v3="309" />+                <face v1="304" v2="303" v3="336" />+                <face v1="336" v2="307" v3="304" />+                <face v1="119" v2="334" v3="336" />+                <face v1="336" v2="303" v3="119" />+                <face v1="336" v2="334" v3="319" />+                <face v1="56" v2="205" v3="337" />+                <face v1="337" v2="57" v3="56" />+                <face v1="47" v2="51" v3="337" />+                <face v1="337" v2="205" v3="47" />+                <face v1="50" v2="268" v3="337" />+                <face v1="337" v2="51" v3="50" />+                <face v1="69" v2="68" v3="337" />+                <face v1="337" v2="268" v3="69" />+                <face v1="337" v2="68" v3="67" />+                <face v1="221" v2="57" v3="337" />+                <face v1="341" v2="67" v3="248" />+                <face v1="221" v2="337" v3="341" />+                <face v1="341" v2="337" v3="67" />+                <face v1="239" v2="238" v3="341" />+                <face v1="341" v2="248" v3="239" />+                <face v1="238" v2="228" v3="341" />+                <face v1="341" v2="228" v3="221" />+            </lodfacelist>+        </lodgenerated>+    </levelofdetail>+</mesh>
+ media/r2skin.jpg view

binary file changed (absent → 44863 bytes)

+ media/robot.mesh.xml view
@@ -0,0 +1,2685 @@+<mesh>+    <submeshes>+        <submesh material="Examples/Robot" usesharedvertices="false" use32bitindexes="false" operationtype="triangle_list">+            <faces count="308">+                <face v1="0" v2="1" v3="2" />+                <face v1="3" v2="4" v3="0" />+                <face v1="0" v2="5" v3="6" />+                <face v1="4" v2="1" v3="0" />+                <face v1="2" v2="7" v3="0" />+                <face v1="6" v2="3" v3="0" />+                <face v1="8" v2="9" v3="10" />+                <face v1="8" v2="10" v3="11" />+                <face v1="12" v2="13" v3="14" />+                <face v1="12" v2="14" v3="15" />+                <face v1="16" v2="17" v3="18" />+                <face v1="16" v2="18" v3="19" />+                <face v1="19" v2="18" v3="20" />+                <face v1="19" v2="20" v3="21" />+                <face v1="15" v2="14" v3="22" />+                <face v1="15" v2="22" v3="23" />+                <face v1="11" v2="10" v3="24" />+                <face v1="11" v2="24" v3="25" />+                <face v1="25" v2="24" v3="17" />+                <face v1="25" v2="17" v3="16" />+                <face v1="21" v2="20" v3="13" />+                <face v1="21" v2="13" v3="12" />+                <face v1="26" v2="27" v3="28" />+                <face v1="28" v2="27" v3="29" />+                <face v1="28" v2="29" v3="30" />+                <face v1="30" v2="29" v3="31" />+                <face v1="30" v2="31" v3="32" />+                <face v1="32" v2="31" v3="33" />+                <face v1="34" v2="26" v3="28" />+                <face v1="34" v2="28" v3="35" />+                <face v1="35" v2="28" v3="30" />+                <face v1="35" v2="30" v3="36" />+                <face v1="37" v2="33" v3="38" />+                <face v1="37" v2="38" v3="39" />+                <face v1="36" v2="30" v3="32" />+                <face v1="36" v2="32" v3="40" />+                <face v1="40" v2="32" v3="33" />+                <face v1="40" v2="33" v3="37" />+                <face v1="41" v2="34" v3="35" />+                <face v1="41" v2="35" v3="42" />+                <face v1="42" v2="35" v3="36" />+                <face v1="42" v2="36" v3="43" />+                <face v1="44" v2="37" v3="39" />+                <face v1="45" v2="39" v3="46" />+                <face v1="43" v2="36" v3="40" />+                <face v1="43" v2="40" v3="47" />+                <face v1="47" v2="40" v3="37" />+                <face v1="47" v2="37" v3="44" />+                <face v1="45" v2="44" v3="39" />+                <face v1="48" v2="41" v3="42" />+                <face v1="48" v2="42" v3="49" />+                <face v1="49" v2="42" v3="43" />+                <face v1="49" v2="43" v3="50" />+                <face v1="51" v2="44" v3="45" />+                <face v1="51" v2="45" v3="52" />+                <face v1="50" v2="43" v3="47" />+                <face v1="50" v2="47" v3="53" />+                <face v1="54" v2="47" v3="44" />+                <face v1="54" v2="44" v3="51" />+                <face v1="52" v2="45" v3="46" />+                <face v1="52" v2="46" v3="55" />+                <face v1="48" v2="56" v3="41" />+                <face v1="54" v2="53" v3="47" />+                <face v1="57" v2="58" v3="59" />+                <face v1="57" v2="59" v3="60" />+                <face v1="61" v2="62" v3="63" />+                <face v1="63" v2="64" v3="61" />+                <face v1="61" v2="65" v3="66" />+                <face v1="61" v2="66" v3="62" />+                <face v1="62" v2="66" v3="67" />+                <face v1="62" v2="67" v3="63" />+                <face v1="63" v2="67" v3="68" />+                <face v1="63" v2="68" v3="64" />+                <face v1="64" v2="68" v3="65" />+                <face v1="64" v2="65" v3="61" />+                <face v1="69" v2="70" v3="71" />+                <face v1="71" v2="70" v3="72" />+                <face v1="73" v2="74" v3="75" />+                <face v1="76" v2="74" v3="73" />+                <face v1="77" v2="78" v3="79" />+                <face v1="80" v2="78" v3="77" />+                <face v1="81" v2="82" v3="83" />+                <face v1="81" v2="84" v3="85" />+                <face v1="86" v2="87" v3="88" />+                <face v1="86" v2="88" v3="89" />+                <face v1="90" v2="76" v3="73" />+                <face v1="91" v2="80" v3="77" />+                <face v1="92" v2="91" v3="93" />+                <face v1="86" v2="89" v3="94" />+                <face v1="95" v2="96" v3="93" />+                <face v1="97" v2="73" v3="98" />+                <face v1="96" v2="99" v3="93" />+                <face v1="100" v2="81" v3="85" />+                <face v1="100" v2="85" v3="101" />+                <face v1="102" v2="86" v3="94" />+                <face v1="102" v2="94" v3="103" />+                <face v1="91" v2="92" v3="80" />+                <face v1="91" v2="77" v3="93" />+                <face v1="99" v2="92" v3="93" />+                <face v1="103" v2="104" v3="102" />+                <face v1="97" v2="90" v3="73" />+                <face v1="105" v2="106" v3="107" />+                <face v1="105" v2="108" v3="109" />+                <face v1="109" v2="110" v3="105" />+                <face v1="105" v2="107" v3="108" />+                <face v1="109" v2="111" v3="112" />+                <face v1="109" v2="113" v3="110" />+                <face v1="110" v2="113" v3="114" />+                <face v1="110" v2="114" v3="105" />+                <face v1="115" v2="116" v3="117" />+                <face v1="115" v2="118" v3="116" />+                <face v1="119" v2="120" v3="121" />+                <face v1="119" v2="122" v3="120" />+                <face v1="119" v2="123" v3="122" />+                <face v1="119" v2="124" v3="123" />+                <face v1="124" v2="125" v3="123" />+                <face v1="124" v2="126" v3="125" />+                <face v1="126" v2="127" v3="128" />+                <face v1="129" v2="127" v3="124" />+                <face v1="125" v2="130" v3="123" />+                <face v1="128" v2="130" v3="125" />+                <face v1="128" v2="118" v3="130" />+                <face v1="128" v2="127" v3="116" />+                <face v1="128" v2="116" v3="118" />+                <face v1="126" v2="128" v3="125" />+                <face v1="126" v2="124" v3="127" />+                <face v1="127" v2="129" v3="116" />+                <face v1="131" v2="122" v3="132" />+                <face v1="133" v2="134" v3="135" />+                <face v1="133" v2="135" v3="136" />+                <face v1="136" v2="135" v3="137" />+                <face v1="136" v2="137" v3="138" />+                <face v1="139" v2="140" v3="141" />+                <face v1="142" v2="134" v3="133" />+                <face v1="142" v2="133" v3="143" />+                <face v1="144" v2="133" v3="145" />+                <face v1="146" v2="147" v3="148" />+                <face v1="149" v2="146" v3="148" />+                <face v1="146" v2="149" v3="145" />+                <face v1="145" v2="149" v3="144" />+                <face v1="136" v2="150" v3="145" />+                <face v1="145" v2="133" v3="136" />+                <face v1="151" v2="150" v3="136" />+                <face v1="136" v2="138" v3="151" />+                <face v1="138" v2="140" v3="151" />+                <face v1="140" v2="139" v3="151" />+                <face v1="139" v2="152" v3="153" />+                <face v1="153" v2="151" v3="139" />+                <face v1="152" v2="154" v3="153" />+                <face v1="152" v2="139" v3="155" />+                <face v1="79" v2="156" v3="77" />+                <face v1="131" v2="120" v3="122" />+                <face v1="83" v2="84" v3="81" />+                <face v1="144" v2="143" v3="133" />+                <face v1="157" v2="158" v3="159" />+                <face v1="159" v2="160" v3="161" />+                <face v1="162" v2="163" v3="159" />+                <face v1="159" v2="158" v3="160" />+                <face v1="159" v2="164" v3="157" />+                <face v1="159" v2="161" v3="162" />+                <face v1="165" v2="166" v3="167" />+                <face v1="168" v2="165" v3="167" />+                <face v1="169" v2="170" v3="171" />+                <face v1="172" v2="169" v3="171" />+                <face v1="173" v2="174" v3="175" />+                <face v1="176" v2="173" v3="175" />+                <face v1="177" v2="173" v3="176" />+                <face v1="178" v2="177" v3="176" />+                <face v1="179" v2="169" v3="172" />+                <face v1="180" v2="179" v3="172" />+                <face v1="181" v2="165" v3="168" />+                <face v1="182" v2="181" v3="168" />+                <face v1="174" v2="181" v3="182" />+                <face v1="175" v2="174" v3="182" />+                <face v1="170" v2="177" v3="178" />+                <face v1="171" v2="170" v3="178" />+                <face v1="183" v2="184" v3="185" />+                <face v1="186" v2="184" v3="183" />+                <face v1="187" v2="186" v3="183" />+                <face v1="188" v2="186" v3="187" />+                <face v1="189" v2="188" v3="187" />+                <face v1="190" v2="188" v3="189" />+                <face v1="183" v2="185" v3="191" />+                <face v1="192" v2="183" v3="191" />+                <face v1="187" v2="183" v3="192" />+                <face v1="193" v2="187" v3="192" />+                <face v1="194" v2="190" v3="195" />+                <face v1="196" v2="194" v3="195" />+                <face v1="189" v2="187" v3="193" />+                <face v1="197" v2="189" v3="193" />+                <face v1="190" v2="189" v3="197" />+                <face v1="195" v2="190" v3="197" />+                <face v1="192" v2="191" v3="198" />+                <face v1="199" v2="192" v3="198" />+                <face v1="193" v2="192" v3="199" />+                <face v1="200" v2="193" v3="199" />+                <face v1="196" v2="195" v3="201" />+                <face v1="202" v2="196" v3="203" />+                <face v1="197" v2="193" v3="200" />+                <face v1="204" v2="197" v3="200" />+                <face v1="195" v2="197" v3="204" />+                <face v1="201" v2="195" v3="204" />+                <face v1="196" v2="201" v3="203" />+                <face v1="199" v2="198" v3="205" />+                <face v1="206" v2="199" v3="205" />+                <face v1="200" v2="199" v3="206" />+                <face v1="207" v2="200" v3="206" />+                <face v1="203" v2="201" v3="208" />+                <face v1="209" v2="203" v3="208" />+                <face v1="204" v2="200" v3="207" />+                <face v1="210" v2="204" v3="207" />+                <face v1="201" v2="204" v3="211" />+                <face v1="208" v2="201" v3="211" />+                <face v1="202" v2="203" v3="209" />+                <face v1="212" v2="202" v3="209" />+                <face v1="198" v2="213" v3="205" />+                <face v1="204" v2="210" v3="211" />+                <face v1="214" v2="58" v3="57" />+                <face v1="60" v2="214" v3="57" />+                <face v1="215" v2="216" v3="217" />+                <face v1="217" v2="218" v3="215" />+                <face v1="219" v2="220" v3="217" />+                <face v1="216" v2="219" v3="217" />+                <face v1="221" v2="219" v3="216" />+                <face v1="215" v2="221" v3="216" />+                <face v1="222" v2="221" v3="215" />+                <face v1="218" v2="222" v3="215" />+                <face v1="220" v2="222" v3="218" />+                <face v1="217" v2="220" v3="218" />+                <face v1="223" v2="224" v3="225" />+                <face v1="226" v2="224" v3="223" />+                <face v1="227" v2="228" v3="229" />+                <face v1="229" v2="228" v3="230" />+                <face v1="231" v2="232" v3="233" />+                <face v1="233" v2="232" v3="234" />+                <face v1="235" v2="236" v3="237" />+                <face v1="238" v2="239" v3="237" />+                <face v1="240" v2="241" v3="242" />+                <face v1="243" v2="240" v3="242" />+                <face v1="229" v2="230" v3="244" />+                <face v1="233" v2="234" v3="245" />+                <face v1="246" v2="245" v3="247" />+                <face v1="248" v2="243" v3="242" />+                <face v1="246" v2="249" v3="250" />+                <face v1="251" v2="229" v3="252" />+                <face v1="246" v2="253" v3="249" />+                <face v1="238" v2="237" v3="254" />+                <face v1="255" v2="238" v3="254" />+                <face v1="248" v2="242" v3="256" />+                <face v1="257" v2="248" v3="256" />+                <face v1="234" v2="247" v3="245" />+                <face v1="246" v2="233" v3="245" />+                <face v1="246" v2="247" v3="253" />+                <face v1="256" v2="258" v3="257" />+                <face v1="229" v2="244" v3="252" />+                <face v1="107" v2="259" v3="260" />+                <face v1="109" v2="108" v3="260" />+                <face v1="260" v2="261" v3="109" />+                <face v1="108" v2="107" v3="260" />+                <face v1="262" v2="111" v3="109" />+                <face v1="261" v2="263" v3="109" />+                <face v1="264" v2="263" v3="261" />+                <face v1="260" v2="264" v3="261" />+                <face v1="265" v2="266" v3="267" />+                <face v1="266" v2="268" v3="267" />+                <face v1="121" v2="269" v3="119" />+                <face v1="269" v2="270" v3="119" />+                <face v1="270" v2="271" v3="119" />+                <face v1="271" v2="124" v3="119" />+                <face v1="271" v2="272" v3="124" />+                <face v1="272" v2="273" v3="124" />+                <face v1="274" v2="275" v3="273" />+                <face v1="124" v2="275" v3="129" />+                <face v1="271" v2="276" v3="272" />+                <face v1="272" v2="276" v3="274" />+                <face v1="276" v2="268" v3="274" />+                <face v1="266" v2="275" v3="274" />+                <face v1="268" v2="266" v3="274" />+                <face v1="272" v2="274" v3="273" />+                <face v1="275" v2="124" v3="273" />+                <face v1="266" v2="129" v3="275" />+                <face v1="277" v2="270" v3="278" />+                <face v1="279" v2="280" v3="281" />+                <face v1="282" v2="279" v3="281" />+                <face v1="283" v2="279" v3="282" />+                <face v1="284" v2="283" v3="282" />+                <face v1="285" v2="286" v3="287" />+                <face v1="281" v2="280" v3="288" />+                <face v1="289" v2="281" v3="288" />+                <face v1="145" v2="281" v3="290" />+                <face v1="291" v2="147" v3="146" />+                <face v1="291" v2="146" v3="292" />+                <face v1="145" v2="292" v3="146" />+                <face v1="290" v2="292" v3="145" />+                <face v1="145" v2="150" v3="282" />+                <face v1="282" v2="281" v3="145" />+                <face v1="282" v2="150" v3="151" />+                <face v1="151" v2="284" v3="282" />+                <face v1="151" v2="286" v3="284" />+                <face v1="151" v2="287" v3="286" />+                <face v1="153" v2="293" v3="287" />+                <face v1="287" v2="151" v3="153" />+                <face v1="153" v2="154" v3="293" />+                <face v1="155" v2="287" v3="293" />+                <face v1="233" v2="294" v3="231" />+                <face v1="270" v2="269" v3="278" />+                <face v1="237" v2="239" v3="235" />+                <face v1="281" v2="289" v3="290" />+            </faces>+            <geometry vertexcount="295">+                <vertexbuffer positions="true" normals="true">+                    <vertex>+                        <position x="14.8357" y="42.0759" z="21.8862" />+                        <normal x="0.712716" y="-0.694832" z="0.0961511" />+                    </vertex>+                    <vertex>+                        <position x="17.0135" y="43.2254" z="14.0466" />+                        <normal x="0.71281" y="-0.694736" z="0.0961433" />+                    </vertex>+                    <vertex>+                        <position x="18.0914" y="44.6956" z="16.6812" />+                        <normal x="0.71276" y="-0.694789" z="0.0961335" />+                    </vertex>+                    <vertex>+                        <position x="11.9976" y="38.2315" z="15.1363" />+                        <normal x="0.712609" y="-0.694938" z="0.0961762" />+                    </vertex>+                    <vertex>+                        <position x="14.406" y="40.3656" z="12.7177" />+                        <normal x="0.712701" y="-0.694839" z="0.0962119" />+                    </vertex>+                    <vertex>+                        <position x="12.2942" y="39.2978" z="20.6468" />+                        <normal x="0.712682" y="-0.694872" z="0.0961156" />+                    </vertex>+                    <vertex>+                        <position x="11.3457" y="37.9718" z="18.0936" />+                        <normal x="0.712686" y="-0.694868" z="0.0961079" />+                    </vertex>+                    <vertex>+                        <position x="17.3378" y="44.3512" z="19.7785" />+                        <normal x="0.712775" y="-0.694771" z="0.096152" />+                    </vertex>+                    <vertex>+                        <position x="17.0135" y="43.2254" z="14.0466" />+                        <normal x="0.601303" y="0.567371" z="-0.562606" />+                    </vertex>+                    <vertex>+                        <position x="3.80786" y="55.6896" z="12.5024" />+                        <normal x="0.601303" y="0.567371" z="-0.562605" />+                    </vertex>+                    <vertex>+                        <position x="4.88578" y="57.1597" z="15.1371" />+                        <normal x="0.669782" y="0.66995" z="-0.320248" />+                    </vertex>+                    <vertex>+                        <position x="18.0914" y="44.6956" z="16.6812" />+                        <normal x="0.687975" y="0.725079" z="-0.0308413" />+                    </vertex>+                    <vertex>+                        <position x="11.9976" y="38.2315" z="15.1363" />+                        <normal x="-0.490588" y="-0.598266" z="-0.633562" />+                    </vertex>+                    <vertex>+                        <position x="-1.20805" y="50.6956" z="13.5921" />+                        <normal x="-0.593689" y="-0.681934" z="-0.427199" />+                    </vertex>+                    <vertex>+                        <position x="1.2004" y="52.8298" z="11.1735" />+                        <normal x="-0.167692" y="-0.294239" z="-0.940905" />+                    </vertex>+                    <vertex>+                        <position x="14.406" y="40.3656" z="12.7177" />+                        <normal x="0.0731483" y="-0.045928" z="-0.996263" />+                    </vertex>+                    <vertex>+                        <position x="14.8357" y="42.0759" z="21.8862" />+                        <normal x="-0.0848216" y="0.0335073" z="0.995833" />+                    </vertex>+                    <vertex>+                        <position x="1.6301" y="54.5401" z="20.342" />+                        <normal x="0.128702" y="0.255086" z="0.958315" />+                    </vertex>+                    <vertex>+                        <position x="-0.911454" y="51.762" z="19.1026" />+                        <normal x="-0.407973" y="-0.326616" z="0.852573" />+                    </vertex>+                    <vertex>+                        <position x="12.2942" y="39.2978" z="20.6468" />+                        <normal x="-0.52765" y="-0.4715" z="0.706593" />+                    </vertex>+                    <vertex>+                        <position x="-1.85999" y="50.436" z="16.5495" />+                        <normal x="-0.672375" y="-0.674638" z="0.304589" />+                    </vertex>+                    <vertex>+                        <position x="11.3457" y="37.9718" z="18.0936" />+                        <normal x="-0.688339" y="-0.724247" z="0.0406866" />+                    </vertex>+                    <vertex>+                        <position x="3.80786" y="55.6896" z="12.5024" />+                        <normal x="0.281357" y="0.181349" z="-0.942311" />+                    </vertex>+                    <vertex>+                        <position x="17.0135" y="43.2254" z="14.0466" />+                        <normal x="0.281355" y="0.181348" z="-0.942312" />+                    </vertex>+                    <vertex>+                        <position x="4.13221" y="56.8153" z="18.2343" />+                        <normal x="0.575978" y="0.668526" z="0.470449" />+                    </vertex>+                    <vertex>+                        <position x="17.3378" y="44.3512" z="19.7785" />+                        <normal x="0.455479" y="0.567549" z="0.685877" />+                    </vertex>+                    <vertex>+                        <position x="2.0307" y="62.3005" z="10.6728" />+                        <normal x="0.840443" y="-0.54035" z="-0.0409673" />+                    </vertex>+                    <vertex>+                        <position x="4.34732" y="66.8746" z="13.5109" />+                        <normal x="0.880953" y="-0.0950342" z="0.463562" />+                    </vertex>+                    <vertex>+                        <position x="3.0029" y="63.4569" z="15.3651" />+                        <normal x="0.742879" y="-0.30517" z="0.59582" />+                    </vertex>+                    <vertex>+                        <position x="-0.498331" y="69.4109" z="15.6442" />+                        <normal x="0.0998127" y="0.31749" z="0.942994" />+                    </vertex>+                    <vertex>+                        <position x="-1.86" y="65.9947" z="16.6507" />+                        <normal x="-0.050213" y="0.256753" z="0.965172" />+                    </vertex>+                    <vertex>+                        <position x="-3.23167" y="69.7181" z="13.2925" />+                        <normal x="-0.676197" y="0.497531" z="0.543342" />+                    </vertex>+                    <vertex>+                        <position x="-4.57609" y="66.3003" z="15.1468" />+                        <normal x="-0.775556" y="0.324001" z="0.54179" />+                    </vertex>+                    <vertex>+                        <position x="-4.97438" y="65.5376" z="10.6563" />+                        <normal x="-0.956215" y="0.0860612" z="-0.279726" />+                    </vertex>+                    <vertex>+                        <position x="-0.84319" y="59.0603" z="12.3926" />+                        <normal x="0.971722" y="-0.229253" z="-0.0565611" />+                    </vertex>+                    <vertex>+                        <position x="-0.63118" y="59.7802" z="16.0353" />+                        <normal x="0.518754" y="0.566117" z="0.640629" />+                    </vertex>+                    <vertex>+                        <position x="-3.85389" y="56.7786" z="18.2345" />+                        <normal x="-0.30461" y="0.346831" z="0.887086" />+                    </vertex>+                    <vertex>+                        <position x="-5.48546" y="54.4456" z="13.4525" />+                        <normal x="-0.606923" y="-0.577238" z="-0.546297" />+                    </vertex>+                    <vertex>+                        <position x="2.0307" y="62.3005" z="10.6728" />+                        <normal x="0.330794" y="-0.579974" z="-0.74445" />+                    </vertex>+                    <vertex>+                        <position x="-0.84319" y="59.0603" z="12.3926" />+                        <normal x="-0.0678094" y="-0.11341" z="-0.991232" />+                    </vertex>+                    <vertex>+                        <position x="-5.5049" y="54.9159" z="17.0084" />+                        <normal x="-0.876857" y="-0.0315089" z="0.479717" />+                    </vertex>+                    <vertex>+                        <position x="2.78917" y="58.082" z="12.0632" />+                        <normal x="0.523374" y="0.799851" z="-0.293799" />+                    </vertex>+                    <vertex>+                        <position x="3.12559" y="59.2372" z="17.9181" />+                        <normal x="0.354367" y="0.825457" z="0.439369" />+                    </vertex>+                    <vertex>+                        <position x="-0.186709" y="56.1652" z="20.2717" />+                        <normal x="-0.139327" y="0.271016" z="0.952438" />+                    </vertex>+                    <vertex>+                        <position x="-3.80299" y="51.5258" z="13.5472" />+                        <normal x="-0.630631" y="-0.584578" z="-0.510464" />+                    </vertex>+                    <vertex>+                        <position x="-0.608647" y="54.4332" z="10.8908" />+                        <normal x="-0.228468" y="-0.114031" z="-0.96685" />+                    </vertex>+                    <vertex>+                        <position x="2.78917" y="58.082" z="12.0632" />+                        <normal x="0.227775" y="0.144273" z="-0.962966" />+                    </vertex>+                    <vertex>+                        <position x="-3.49958" y="52.6157" z="19.1772" />+                        <normal x="-0.590999" y="-0.499901" z="0.633103" />+                    </vertex>+                    <vertex>+                        <position x="4.88578" y="57.1597" z="15.1371" />+                        <normal x="0.84148" y="0.51882" z="-0.15079" />+                    </vertex>+                    <vertex>+                        <position x="4.13221" y="56.8153" z="18.2343" />+                        <normal x="0.575114" y="0.391558" z="0.71828" />+                    </vertex>+                    <vertex>+                        <position x="1.6301" y="54.5401" z="20.342" />+                        <normal x="0.0306414" y="-0.0258718" z="0.999196" />+                    </vertex>+                    <vertex>+                        <position x="-1.20805" y="50.6956" z="13.5921" />+                        <normal x="-0.286417" y="-0.724193" z="-0.627304" />+                    </vertex>+                    <vertex>+                        <position x="1.2004" y="52.8298" z="11.1735" />+                        <normal x="0.123935" y="-0.148682" z="-0.981088" />+                    </vertex>+                    <vertex>+                        <position x="-0.911454" y="51.762" z="19.1026" />+                        <normal x="-0.179703" y="-0.612012" z="0.770161" />+                    </vertex>+                    <vertex>+                        <position x="-1.85999" y="50.436" z="16.5495" />+                        <normal x="-0.435481" y="-0.879159" z="0.193481" />+                    </vertex>+                    <vertex>+                        <position x="3.80786" y="55.6896" z="12.5024" />+                        <normal x="0.436043" y="0.0205102" z="-0.899692" />+                    </vertex>+                    <vertex>+                        <position x="3.80786" y="55.6896" z="12.5024" />+                        <normal x="0.831793" y="0.264603" z="-0.48796" />+                    </vertex>+                    <vertex>+                        <position x="-2.86061" y="97.3814" z="0.116986" />+                        <normal x="-0.967061" y="0.253742" z="0.0201956" />+                    </vertex>+                    <vertex>+                        <position x="-3.59818" y="72.7662" z="0.0838234" />+                        <normal x="-0.999345" y="0.0299169" z="0.0203611" />+                    </vertex>+                    <vertex>+                        <position x="-3.22902" y="72.7108" z="1.13247" />+                        <normal x="-0.150871" y="0.0429052" z="0.987622" />+                    </vertex>+                    <vertex>+                        <position x="-2.45101" y="74.2176" z="0.063361" />+                        <normal x="0.999638" y="0.0177235" z="-0.0202627" />+                    </vertex>+                    <vertex>+                        <position x="10.5221" y="-0.291216" z="5.38113" />+                        <normal x="0.707195" y="-0.309738" z="-0.635561" />+                    </vertex>+                    <vertex>+                        <position x="10.5912" y="2.165" z="5.53413" />+                        <normal x="0.684162" y="0.638157" z="-0.353098" />+                    </vertex>+                    <vertex>+                        <position x="10.7761" y="2.16506" z="13.463" />+                        <normal x="0.745452" y="0.407237" z="0.527693" />+                    </vertex>+                    <vertex>+                        <position x="10.7792" y="-0.290295" z="13.7662" />+                        <normal x="0.45703" y="-0.793042" z="0.402751" />+                    </vertex>+                    <vertex>+                        <position x="1.93663" y="-0.0818529" z="4.40616" />+                        <normal x="0.0281035" y="-0.897011" z="-0.441114" />+                    </vertex>+                    <vertex>+                        <position x="4.06331" y="5.07529" z="4.55913" />+                        <normal x="0.29997" y="0.412268" z="-0.860264" />+                    </vertex>+                    <vertex>+                        <position x="4.24824" y="5.08014" z="12.488" />+                        <normal x="0.337936" y="0.874072" z="0.348994" />+                    </vertex>+                    <vertex>+                        <position x="2.19373" y="-0.0763126" z="14.9037" />+                        <normal x="0.0790396" y="-0.239584" z="0.967653" />+                    </vertex>+                    <vertex>+                        <position x="2.19373" y="-0.0763126" z="14.9037" />+                        <normal x="-0.00983149" y="-0.999951" z="0.000768539" />+                    </vertex>+                    <vertex>+                        <position x="-8.67494" y="0.0298744" z="14.0276" />+                        <normal x="-0.0101777" y="-0.999948" z="0.00038664" />+                    </vertex>+                    <vertex>+                        <position x="1.93663" y="-0.0818529" z="4.40616" />+                        <normal x="-0.0101777" y="-0.999948" z="0.00038664" />+                    </vertex>+                    <vertex>+                        <position x="-8.66393" y="0.0297176" z="5.38257" />+                        <normal x="-0.0105239" y="-0.999945" z="4.74128e-06" />+                    </vertex>+                    <vertex>+                        <position x="1.19402" y="23.3676" z="9.62502" />+                        <normal x="-0.123516" y="0.181028" z="0.975691" />+                    </vertex>+                    <vertex>+                        <position x="1.11969" y="47.2402" z="6.1743" />+                        <normal x="-0.261136" y="0.1373" z="0.955488" />+                    </vertex>+                    <vertex>+                        <position x="-1.7109" y="48.6459" z="4.32465" />+                        <normal x="-0.499592" y="0.122404" z="0.857569" />+                    </vertex>+                    <vertex>+                        <position x="7.02796" y="25.087" z="9.40758" />+                        <normal x="-0.0117152" y="0.16448" z="0.986311" />+                    </vertex>+                    <vertex>+                        <position x="7.02796" y="25.087" z="9.40758" />+                        <normal x="0.989756" y="0.0810621" z="0.117524" />+                    </vertex>+                    <vertex>+                        <position x="4.16527" y="42.261" z="0.79029" />+                        <normal x="0.988719" y="0.143834" z="-0.0417969" />+                    </vertex>+                    <vertex>+                        <position x="3.9574" y="44.9761" z="3.48228" />+                        <normal x="0.935855" y="0.225222" z="0.271017" />+                    </vertex>+                    <vertex>+                        <position x="6.91512" y="25.0826" z="4.7121" />+                        <normal x="0.998043" y="-0.0180638" z="-0.0598673" />+                    </vertex>+                    <vertex>+                        <position x="1.19402" y="23.3676" z="9.62502" />+                        <normal x="-0.99385" y="-0.0137631" z="0.10988" />+                    </vertex>+                    <vertex>+                        <position x="-1.7109" y="48.6459" z="4.32465" />+                        <normal x="-0.760171" y="0.0484976" z="0.647911" />+                    </vertex>+                    <vertex>+                        <position x="-3.5207" y="43.7374" z="2.56869" />+                        <normal x="-0.962913" y="-0.143784" z="0.228307" />+                    </vertex>+                    <vertex>+                        <position x="-2.19283" y="41.1163" z="0.81273" />+                        <normal x="-0.960972" y="-0.246107" z="-0.126349" />+                    </vertex>+                    <vertex>+                        <position x="1.19889" y="23.3633" z="5.21067" />+                        <normal x="-0.978821" y="0.204716" z="-0.00120519" />+                    </vertex>+                    <vertex>+                        <position x="1.19889" y="23.3633" z="5.21067" />+                        <normal x="-0.0396908" y="-0.104228" z="-0.993761" />+                    </vertex>+                    <vertex>+                        <position x="-2.19283" y="41.1163" z="0.81273" />+                        <normal x="0.0385805" y="-0.233331" z="-0.971632" />+                    </vertex>+                    <vertex>+                        <position x="4.16527" y="42.261" z="0.79029" />+                        <normal x="0.0106727" y="-0.229338" z="-0.973288" />+                    </vertex>+                    <vertex>+                        <position x="6.91512" y="25.0826" z="4.7121" />+                        <normal x="-0.0549144" y="-0.105354" z="-0.992917" />+                    </vertex>+                    <vertex>+                        <position x="6.39906" y="21.5114" z="10.0723" />+                        <normal x="-0.0118725" y="0.202667" z="0.979176" />+                    </vertex>+                    <vertex>+                        <position x="6.90836" y="23.0191" z="7.39221" />+                        <normal x="0.983538" y="-0.179746" z="-0.0185723" />+                    </vertex>+                    <vertex>+                        <position x="6.2862" y="21.5104" z="4.71207" />+                        <normal x="0.973756" y="-0.220304" z="-0.0571455" />+                    </vertex>+                    <vertex>+                        <position x="6.39906" y="21.5114" z="10.0723" />+                        <normal x="0.97646" y="-0.162886" z="0.1414" />+                    </vertex>+                    <vertex>+                        <position x="6.2862" y="21.5104" z="4.71207" />+                        <normal x="-0.083555" y="0.0215248" z="-0.996271" />+                    </vertex>+                    <vertex>+                        <position x="2.19373" y="-0.0763126" z="14.9037" />+                        <normal x="0.768611" y="-0.00656471" z="0.639682" />+                    </vertex>+                    <vertex>+                        <position x="4.24824" y="5.08014" z="12.488" />+                        <normal x="0.94108" y="-0.0746944" z="0.329831" />+                    </vertex>+                    <vertex>+                        <position x="2.19373" y="-0.0763126" z="14.9037" />+                        <normal x="-0.0409955" y="0.217814" z="0.975129" />+                    </vertex>+                    <vertex>+                        <position x="-8.67494" y="0.0298744" z="14.0276" />+                        <normal x="-0.0763523" y="0.215922" z="0.973421" />+                    </vertex>+                    <vertex>+                        <position x="4.06331" y="5.07529" z="4.55913" />+                        <normal x="0.990813" y="-0.133448" z="-0.0219326" />+                    </vertex>+                    <vertex>+                        <position x="-8.67494" y="0.0298744" z="14.0276" />+                        <normal x="-0.921113" y="0.389294" z="-0.00128704" />+                    </vertex>+                    <vertex>+                        <position x="-8.66393" y="0.0297176" z="5.38257" />+                        <normal x="-0.921098" y="0.389329" z="-0.00117993" />+                    </vertex>+                    <vertex>+                        <position x="-8.66393" y="0.0297176" z="5.38257" />+                        <normal x="-0.0832769" y="0.0384565" z="-0.995784" />+                    </vertex>+                    <vertex>+                        <position x="4.06331" y="5.07529" z="4.55913" />+                        <normal x="-0.0814665" y="0.042989" z="-0.995749" />+                    </vertex>+                    <vertex>+                        <position x="1.93663" y="-0.0818529" z="4.40616" />+                        <normal x="-0.0908169" y="0.0669231" z="-0.993616" />+                    </vertex>+                    <vertex>+                        <position x="5.78779" y="77.4734" z="1.78729" />+                        <normal x="0.821948" y="0.339949" z="0.456985" />+                    </vertex>+                    <vertex>+                        <position x="2.43373" y="72.1676" z="3.96252" />+                        <normal x="0.72768" y="-0.189772" z="0.659142" />+                    </vertex>+                    <vertex>+                        <position x="5.15296" y="68.4403" z="-0.11256" />+                        <normal x="0.981444" y="-0.190515" z="-0.021709" />+                    </vertex>+                    <vertex>+                        <position x="6.32887" y="76.7688" z="-0.120155" />+                        <normal x="0.940061" y="0.340464" z="-0.0192066" />+                    </vertex>+                    <vertex>+                        <position x="1.99085" y="80.9392" z="-0.0137138" />+                        <normal x="-0.0882032" y="0.996095" z="0.00384116" />+                    </vertex>+                    <vertex>+                        <position x="2.39304" y="80.6153" z="1.93137" />+                        <normal x="0.0866345" y="0.636919" z="0.766047" />+                    </vertex>+                    <vertex>+                        <position x="-2.45101" y="74.2176" z="0.063361" />+                        <normal x="-0.834062" y="0.551377" z="0.0180199" />+                    </vertex>+                    <vertex>+                        <position x="-2.79196" y="72.9306" z="4.20041" />+                        <normal x="-0.829357" y="0.549236" z="0.102503" />+                    </vertex>+                    <vertex>+                        <position x="-2.79196" y="72.9306" z="4.20041" />+                        <normal x="-0.421205" y="0.506371" z="0.752446" />+                    </vertex>+                    <vertex>+                        <position x="2.43373" y="72.1676" z="3.96252" />+                        <normal x="0.164966" y="0.231323" z="0.958789" />+                    </vertex>+                    <vertex>+                        <position x="-0.498331" y="69.4109" z="15.6442" />+                        <normal x="0.357234" y="0.885027" z="0.298515" />+                    </vertex>+                    <vertex>+                        <position x="2.43373" y="72.1676" z="3.96252" />+                        <normal x="0.571144" y="0.798811" z="0.188933" />+                    </vertex>+                    <vertex>+                        <position x="-2.79196" y="72.9306" z="4.20041" />+                        <normal x="0.151118" y="0.952941" z="0.262807" />+                    </vertex>+                    <vertex>+                        <position x="4.34732" y="66.8746" z="13.5109" />+                        <normal x="0.793856" y="0.447196" z="0.412078" />+                    </vertex>+                    <vertex>+                        <position x="6.29736" y="51.9622" z="-0.01581" />+                        <normal x="0.993856" y="-0.108072" z="-0.0238745" />+                    </vertex>+                    <vertex>+                        <position x="4.16527" y="42.261" z="0.79029" />+                        <normal x="0.975349" y="-0.187837" z="0.115811" />+                    </vertex>+                    <vertex>+                        <position x="3.92966" y="41.901" z="-0.01581" />+                        <normal x="0.96939" y="-0.228125" z="-0.090785" />+                    </vertex>+                    <vertex>+                        <position x="4.54635" y="51.864" z="5.41527" />+                        <normal x="0.894489" y="-0.128036" z="0.428365" />+                    </vertex>+                    <vertex>+                        <position x="3.36801" y="57.0851" z="7.17027" />+                        <normal x="0.802558" y="-0.366385" z="0.470811" />+                    </vertex>+                    <vertex>+                        <position x="6.93863" y="57.6293" z="-0.01581" />+                        <normal x="0.904853" y="-0.425714" z="-0.00285976" />+                    </vertex>+                    <vertex>+                        <position x="7.01393" y="58.4114" z="5.22027" />+                        <normal x="0.715661" y="-0.53752" z="0.445984" />+                    </vertex>+                    <vertex>+                        <position x="7.86798" y="58.7238" z="1.32027" />+                        <normal x="0.986576" y="-0.159293" z="-0.0359618" />+                    </vertex>+                    <vertex>+                        <position x="7.24214" y="66.2263" z="0.992165" />+                        <normal x="0.890043" y="0.339978" z="-0.303707" />+                    </vertex>+                    <vertex>+                        <position x="5.59586" y="67.3195" z="10.789" />+                        <normal x="0.922432" y="0.1161" z="0.368293" />+                    </vertex>+                    <vertex>+                        <position x="5.15296" y="68.4403" z="-0.11256" />+                        <normal x="0.867517" y="0.496996" z="-0.0202416" />+                    </vertex>+                    <vertex>+                        <position x="2.0307" y="62.3005" z="10.6728" />+                        <normal x="0.639742" y="-0.458092" z="0.617156" />+                    </vertex>+                    <vertex>+                        <position x="3.9574" y="44.9761" z="3.48228" />+                        <normal x="0.807966" y="-0.22223" z="0.545714" />+                    </vertex>+                    <vertex>+                        <position x="1.11969" y="47.2402" z="6.1743" />+                        <normal x="0.540615" y="-0.269839" z="0.79682" />+                    </vertex>+                    <vertex>+                        <position x="-2.71425" y="52.0185" z="2.73633" />+                        <normal x="-0.719513" y="0.101659" z="0.686998" />+                    </vertex>+                    <vertex>+                        <position x="4.54635" y="51.864" z="5.41527" />+                        <normal x="-0.346064" y="0.0048041" z="0.938198" />+                    </vertex>+                    <vertex>+                        <position x="3.36801" y="57.0851" z="7.17027" />+                        <normal x="-0.369947" y="-0.396033" z="0.840415" />+                    </vertex>+                    <vertex>+                        <position x="-1.11333" y="56.2907" z="4.6515" />+                        <normal x="-0.794839" y="-0.343124" z="0.500496" />+                    </vertex>+                    <vertex>+                        <position x="2.0307" y="62.3005" z="10.6728" />+                        <normal x="-0.298552" y="-0.593029" z="0.747786" />+                    </vertex>+                    <vertex>+                        <position x="-4.97438" y="65.5376" z="10.6563" />+                        <normal x="-0.847145" y="-0.310564" z="0.431157" />+                    </vertex>+                    <vertex>+                        <position x="-2.79196" y="72.9306" z="4.20041" />+                        <normal x="-0.855971" y="0.498896" z="0.135707" />+                    </vertex>+                    <vertex>+                        <position x="-3.23167" y="69.7181" z="13.2925" />+                        <normal x="-0.774235" y="0.610324" z="0.167527" />+                    </vertex>+                    <vertex>+                        <position x="-0.498331" y="69.4109" z="15.6442" />+                        <normal x="-0.171361" y="0.9315" z="0.320846" />+                    </vertex>+                    <vertex>+                        <position x="1.11969" y="47.2402" z="6.1743" />+                        <normal x="-0.369917" y="0.328476" z="0.86906" />+                    </vertex>+                    <vertex>+                        <position x="-1.7109" y="48.6459" z="4.32465" />+                        <normal x="-0.618822" y="0.176395" z="0.76547" />+                    </vertex>+                    <vertex>+                        <position x="-3.5207" y="43.7374" z="2.56869" />+                        <normal x="-0.999106" y="0.0317206" z="0.0279335" />+                    </vertex>+                    <vertex>+                        <position x="-2.65782" y="51.8402" z="-0.01581" />+                        <normal x="-0.994667" y="0.102539" z="0.0110939" />+                    </vertex>+                    <vertex>+                        <position x="-2.42347" y="42.3851" z="-0.01581" />+                        <normal x="-0.514232" y="-0.857618" z="-0.00751156" />+                    </vertex>+                    <vertex>+                        <position x="3.92966" y="41.901" z="-0.01581" />+                        <normal x="-0.0742556" y="-0.974469" z="0.211886" />+                    </vertex>+                    <vertex>+                        <position x="4.16527" y="42.261" z="0.79029" />+                        <normal x="0.0160994" y="-0.960058" z="-0.279337" />+                    </vertex>+                    <vertex>+                        <position x="-2.19283" y="41.1163" z="0.81273" />+                        <normal x="-0.799241" y="-0.293465" z="-0.524492" />+                    </vertex>+                    <vertex>+                        <position x="-2.04438" y="56.5571" z="-0.01581" />+                        <normal x="-0.970996" y="-0.239094" z="5.59149e-07" />+                    </vertex>+                    <vertex>+                        <position x="-6.53533" y="63.0166" z="-0.01581" />+                        <normal x="-0.999827" y="-0.00983132" z="0.0158024" />+                    </vertex>+                    <vertex>+                        <position x="-3.22902" y="72.7108" z="1.13247" />+                        <normal x="-0.95222" y="0.240833" z="0.187823" />+                    </vertex>+                    <vertex>+                        <position x="-3.69578" y="70.6392" z="0.0816457" />+                        <normal x="-0.98201" y="0.187736" z="0.0202864" />+                    </vertex>+                    <vertex>+                        <position x="-3.59818" y="72.7662" z="0.0838234" />+                        <normal x="-0.998742" y="0.0458078" z="0.02038" />+                    </vertex>+                    <vertex>+                        <position x="-2.45101" y="74.2176" z="0.063361" />+                        <normal x="-0.862332" y="0.506004" z="0.0185048" />+                    </vertex>+                    <vertex>+                        <position x="1.11969" y="47.2402" z="6.1743" />+                        <normal x="0.770018" y="0.288426" z="0.569108" />+                    </vertex>+                    <vertex>+                        <position x="18.861" y="45.8477" z="-18.2451" />+                        <normal x="0.744659" y="-0.649482" z="-0.153808" />+                    </vertex>+                    <vertex>+                        <position x="18.0772" y="44.3099" z="-15.5459" />+                        <normal x="0.744705" y="-0.649426" z="-0.153821" />+                    </vertex>+                    <vertex>+                        <position x="15.3881" y="43.0408" z="-23.2063" />+                        <normal x="0.744617" y="-0.649527" z="-0.153821" />+                    </vertex>+                    <vertex>+                        <position x="15.7575" y="41.2931" z="-14.0422" />+                        <normal x="0.744597" y="-0.649534" z="-0.153882" />+                    </vertex>+                    <vertex>+                        <position x="13.3085" y="39.0186" z="-16.2858" />+                        <normal x="0.744514" y="-0.64964" z="-0.15384" />+                    </vertex>+                    <vertex>+                        <position x="12.4522" y="38.7239" z="-19.1872" />+                        <normal x="0.744594" y="-0.649563" z="-0.153774" />+                    </vertex>+                    <vertex>+                        <position x="13.1223" y="40.1096" z="-21.7963" />+                        <normal x="0.744592" y="-0.649565" z="-0.153778" />+                    </vertex>+                    <vertex>+                        <position x="17.8982" y="45.4624" z="-21.2789" />+                        <normal x="0.744671" y="-0.649463" z="-0.153827" />+                    </vertex>+                    <vertex>+                        <position x="5.0715" y="57.4735" z="-15.6342" />+                        <normal x="0.649779" y="0.709386" z="0.273055" />+                    </vertex>+                    <vertex>+                        <position x="4.28765" y="55.9358" z="-12.935" />+                        <normal x="0.606205" y="0.602414" z="0.519242" />+                    </vertex>+                    <vertex>+                        <position x="18.0772" y="44.3099" z="-15.5459" />+                        <normal x="0.606205" y="0.602415" z="0.519242" />+                    </vertex>+                    <vertex>+                        <position x="18.861" y="45.8477" z="-18.2451" />+                        <normal x="0.642656" y="0.765976" z="-0.0165544" />+                    </vertex>+                    <vertex>+                        <position x="1.96796" y="52.919" z="-11.4313" />+                        <normal x="-0.0778302" y="-0.305446" z="0.949023" />+                    </vertex>+                    <vertex>+                        <position x="-0.48106" y="50.6445" z="-13.6749" />+                        <normal x="-0.51687" y="-0.71782" z="0.466455" />+                    </vertex>+                    <vertex>+                        <position x="13.3085" y="39.0186" z="-16.2858" />+                        <normal x="-0.403795" y="-0.628286" z="0.664985" />+                    </vertex>+                    <vertex>+                        <position x="15.7575" y="41.2931" z="-14.0422" />+                        <normal x="0.15085" y="-0.0428748" z="0.987626" />+                    </vertex>+                    <vertex>+                        <position x="-0.667288" y="51.7356" z="-19.1854" />+                        <normal x="-0.450426" y="-0.349778" z="-0.821445" />+                    </vertex>+                    <vertex>+                        <position x="1.59856" y="54.6667" z="-20.5954" />+                        <normal x="0.0401072" y="0.263993" z="-0.96369" />+                    </vertex>+                    <vertex>+                        <position x="15.3881" y="43.0408" z="-23.2063" />+                        <normal x="-0.161671" y="0.0297607" z="-0.986396" />+                    </vertex>+                    <vertex>+                        <position x="13.1223" y="40.1096" z="-21.7963" />+                        <normal x="-0.549644" y="-0.501974" z="-0.667767" />+                    </vertex>+                    <vertex>+                        <position x="-1.33735" y="50.3498" z="-16.5764" />+                        <normal x="-0.650891" y="-0.714251" z="-0.257269" />+                    </vertex>+                    <vertex>+                        <position x="12.4522" y="38.7239" z="-19.1872" />+                        <normal x="-0.643812" y="-0.765153" z="0.00677343" />+                    </vertex>+                    <vertex>+                        <position x="4.28765" y="55.9358" z="-12.935" />+                        <normal x="0.340083" y="0.196862" z="0.919559" />+                    </vertex>+                    <vertex>+                        <position x="18.0772" y="44.3099" z="-15.5459" />+                        <normal x="0.340079" y="0.196858" z="0.919562" />+                    </vertex>+                    <vertex>+                        <position x="4.1087" y="57.0882" z="-18.668" />+                        <normal x="0.496797" y="0.703414" z="-0.508332" />+                    </vertex>+                    <vertex>+                        <position x="17.8982" y="45.4624" z="-21.2789" />+                        <normal x="0.366781" y="0.595546" z="-0.7147" />+                    </vertex>+                    <vertex>+                        <position x="2.65018" y="63.6382" z="-15.4945" />+                        <normal x="0.754151" y="-0.243876" z="-0.609738" />+                    </vertex>+                    <vertex>+                        <position x="3.8568" y="67.1272" z="-13.6786" />+                        <normal x="0.877411" y="-0.0554154" z="-0.476529" />+                    </vertex>+                    <vertex>+                        <position x="1.59524" y="62.3424" z="-10.7658" />+                        <normal x="0.882595" y="-0.464969" z="0.0694895" />+                    </vertex>+                    <vertex>+                        <position x="-1.21806" y="69.3664" z="-15.6011" />+                        <normal x="0.0417025" y="0.325529" z="-0.944612" />+                    </vertex>+                    <vertex>+                        <position x="-2.40748" y="65.8757" z="-16.5693" />+                        <normal x="-0.110412" y="0.257478" z="-0.959955" />+                    </vertex>+                    <vertex>+                        <position x="-3.86714" y="69.4987" z="-13.1392" />+                        <normal x="-0.714401" y="0.460225" z="-0.527091" />+                    </vertex>+                    <vertex>+                        <position x="-5.07376" y="66.0096" z="-14.9552" />+                        <normal x="-0.807911" y="0.274461" z="-0.52149" />+                    </vertex>+                    <vertex>+                        <position x="-5.40313" y="65.5788" z="-10.4523" />+                        <normal x="-0.953359" y="0.025178" z="0.300787" />+                    </vertex>+                    <vertex>+                        <position x="-0.539444" y="59.0139" z="-12.4547" />+                        <normal x="0.992021" y="-0.119177" z="0.0411202" />+                    </vertex>+                    <vertex>+                        <position x="-0.647587" y="59.7511" z="-16.0984" />+                        <normal x="0.442775" y="0.603279" z="-0.663329" />+                    </vertex>+                    <vertex>+                        <position x="-3.83734" y="56.5603" z="-18.0673" />+                        <normal x="-0.384625" y="0.325591" z="-0.863744" />+                    </vertex>+                    <vertex>+                        <position x="1.59524" y="62.3424" z="-10.7658" />+                        <normal x="0.317328" y="-0.492157" z="0.810608" />+                    </vertex>+                    <vertex>+                        <position x="-4.95725" y="54.124" z="-13.1905" />+                        <normal x="-0.532202" y="-0.577395" z="0.619174" />+                    </vertex>+                    <vertex>+                        <position x="-0.539444" y="59.0139" z="-12.4547" />+                        <normal x="-0.0145604" y="-0.0966263" z="0.995214" />+                    </vertex>+                    <vertex>+                        <position x="-5.27391" y="54.5977" z="-16.7319" />+                        <normal x="-0.899059" y="-0.0950672" z="-0.427382" />+                    </vertex>+                    <vertex>+                        <position x="3.16048" y="58.2604" z="-12.4057" />+                        <normal x="0.494114" y="0.830077" z="0.258505" />+                    </vertex>+                    <vertex>+                        <position x="2.98245" y="59.4431" z="-18.262" />+                        <normal x="0.268975" y="0.846368" z="-0.459688" />+                    </vertex>+                    <vertex>+                        <position x="-0.303823" y="56.1768" z="-20.3785" />+                        <normal x="-0.227183" y="0.2634" z="-0.937554" />+                    </vertex>+                    <vertex>+                        <position x="-3.11115" y="51.3134" z="-13.4296" />+                        <normal x="-0.553308" y="-0.623048" z="0.552867" />+                    </vertex>+                    <vertex>+                        <position x="3.16048" y="58.2604" z="-12.4057" />+                        <normal x="0.290582" y="0.15653" z="0.94396" />+                    </vertex>+                    <vertex>+                        <position x="0.0906706" y="54.4077" z="-11.0034" />+                        <normal x="-0.147398" y="-0.129357" z="0.980582" />+                    </vertex>+                    <vertex>+                        <position x="-3.30105" y="52.4286" z="-19.0596" />+                        <normal x="-0.605404" y="-0.534332" z="-0.589894" />+                    </vertex>+                    <vertex>+                        <position x="5.0715" y="57.4735" z="-15.6342" />+                        <normal x="0.817119" y="0.569365" z="0.090223" />+                    </vertex>+                    <vertex>+                        <position x="4.1087" y="57.0882" z="-18.668" />+                        <normal x="0.494179" y="0.4273" z="-0.757101" />+                    </vertex>+                    <vertex>+                        <position x="1.59856" y="54.6667" z="-20.5954" />+                        <normal x="-0.0433741" y="-0.0223985" z="-0.998808" />+                    </vertex>+                    <vertex>+                        <position x="-0.48106" y="50.6445" z="-13.6749" />+                        <normal x="-0.193358" y="-0.741405" z="0.642598" />+                    </vertex>+                    <vertex>+                        <position x="1.96796" y="52.919" z="-11.4313" />+                        <normal x="0.206533" y="-0.142285" z="0.968039" />+                    </vertex>+                    <vertex>+                        <position x="-0.667288" y="51.7356" z="-19.1854" />+                        <normal x="-0.199542" y="-0.620722" z="-0.758214" />+                    </vertex>+                    <vertex>+                        <position x="-1.33735" y="50.3498" z="-16.5764" />+                        <normal x="-0.394207" y="-0.903983" z="-0.165577" />+                    </vertex>+                    <vertex>+                        <position x="4.28765" y="55.9358" z="-12.935" />+                        <normal x="0.500667" y="0.0459091" z="0.864422" />+                    </vertex>+                    <vertex>+                        <position x="4.28765" y="55.9358" z="-12.935" />+                        <normal x="0.848502" y="0.314514" z="0.425588" />+                    </vertex>+                    <vertex>+                        <position x="-3.27191" y="72.715" z="-0.979184" />+                        <normal x="-0.190844" y="0.0467557" z="-0.980506" />+                    </vertex>+                    <vertex>+                        <position x="10.207" y="2.32556" z="-13.4947" />+                        <normal x="0.737739" y="0.414412" z="-0.53292" />+                    </vertex>+                    <vertex>+                        <position x="10.022" y="2.32733" z="-5.56578" />+                        <normal x="0.650748" y="0.667379" z="0.362121" />+                    </vertex>+                    <vertex>+                        <position x="9.92877" y="-0.128092" z="-5.41278" />+                        <normal x="0.70085" y="-0.307825" z="0.64347" />+                    </vertex>+                    <vertex>+                        <position x="10.1858" y="-0.129706" z="-13.7978" />+                        <normal x="0.449187" y="-0.79751" z="-0.402751" />+                    </vertex>+                    <vertex>+                        <position x="1.8333" y="5.41735" z="-4.59075" />+                        <normal x="0.262288" y="0.437085" z="0.860327" />+                    </vertex>+                    <vertex>+                        <position x="1.34574" y="0.165919" z="-4.43781" />+                        <normal x="0.0200959" y="-0.894035" z="0.447546" />+                    </vertex>+                    <vertex>+                        <position x="2.01742" y="5.39933" z="-12.5197" />+                        <normal x="0.29346" y="0.890337" z="-0.348111" />+                    </vertex>+                    <vertex>+                        <position x="1.60289" y="0.168924" z="-14.9353" />+                        <normal x="0.0756232" y="-0.237116" z="-0.968534" />+                    </vertex>+                    <vertex>+                        <position x="1.34574" y="0.165919" z="-4.43781" />+                        <normal x="-0.0200373" y="-0.999799" z="-0.000386641" />+                    </vertex>+                    <vertex>+                        <position x="-9.2642" y="0.382277" z="-14.0593" />+                        <normal x="-0.0200373" y="-0.999799" z="-0.000386641" />+                    </vertex>+                    <vertex>+                        <position x="1.60289" y="0.168924" z="-14.9353" />+                        <normal x="-0.0196912" y="-0.999806" z="-0.000768538" />+                    </vertex>+                    <vertex>+                        <position x="-9.2532" y="0.382012" z="-5.41419" />+                        <normal x="-0.0203835" y="-0.999792" z="-4.74323e-06" />+                    </vertex>+                    <vertex>+                        <position x="-1.68598" y="47.9161" z="-4.3563" />+                        <normal x="-0.412399" y="0.148197" z="-0.898868" />+                    </vertex>+                    <vertex>+                        <position x="2.18891" y="47.4802" z="-6.20595" />+                        <normal x="-0.205024" y="0.149899" z="-0.96721" />+                    </vertex>+                    <vertex>+                        <position x="1.24511" y="23.9239" z="-9.65667" />+                        <normal x="-0.0910856" y="0.185077" z="-0.978494" />+                    </vertex>+                    <vertex>+                        <position x="7.24674" y="24.9097" z="-9.4392" />+                        <normal x="0.0085348" y="0.165596" z="-0.986157" />+                    </vertex>+                    <vertex>+                        <position x="4.38983" y="44.5932" z="-3.51393" />+                        <normal x="0.979118" y="0.173839" z="-0.105399" />+                    </vertex>+                    <vertex>+                        <position x="3.9303" y="41.9093" z="-0.82194" />+                        <normal x="0.983471" y="0.125902" z="0.130127" />+                    </vertex>+                    <vertex>+                        <position x="7.24674" y="24.9097" z="-9.4392" />+                        <normal x="0.998502" y="0.0154457" z="-0.052481" />+                    </vertex>+                    <vertex>+                        <position x="7.13422" y="24.9193" z="-4.74375" />+                        <normal x="0.993977" y="-0.0915045" z="0.0603126" />+                    </vertex>+                    <vertex>+                        <position x="-3.16478" y="45.2129" z="-2.60034" />+                        <normal x="-0.944886" y="-0.0915365" z="-0.314344" />+                    </vertex>+                    <vertex>+                        <position x="-1.68598" y="47.9161" z="-4.3563" />+                        <normal x="-0.792233" y="0.0377657" z="-0.609048" />+                    </vertex>+                    <vertex>+                        <position x="1.24511" y="23.9239" z="-9.65667" />+                        <normal x="-0.987367" y="0.00961025" z="-0.15816" />+                    </vertex>+                    <vertex>+                        <position x="1.24942" y="23.9191" z="-5.24232" />+                        <normal x="-0.976846" y="0.213943" z="0.00113185" />+                    </vertex>+                    <vertex>+                        <position x="-2.51517" y="42.3474" z="-0.84438" />+                        <normal x="-0.978751" y="-0.204784" z="0.0104904" />+                    </vertex>+                    <vertex>+                        <position x="3.9303" y="41.9093" z="-0.82194" />+                        <normal x="-0.0311218" y="-0.234121" z="0.971709" />+                    </vertex>+                    <vertex>+                        <position x="-2.51517" y="42.3474" z="-0.84438" />+                        <normal x="-0.0194103" y="-0.235839" z="0.971598" />+                    </vertex>+                    <vertex>+                        <position x="1.24942" y="23.9191" z="-5.24232" />+                        <normal x="-0.0600873" y="-0.103293" z="0.992834" />+                    </vertex>+                    <vertex>+                        <position x="7.13422" y="24.9193" z="-4.74375" />+                        <normal x="-0.0665017" y="-0.103419" z="0.992412" />+                    </vertex>+                    <vertex>+                        <position x="6.18106" y="21.4391" z="-10.104" />+                        <normal x="0.0129169" y="0.201948" z="-0.979311" />+                    </vertex>+                    <vertex>+                        <position x="6.87267" y="22.8724" z="-7.42386" />+                        <normal x="0.953809" y="-0.299839" z="0.0185721" />+                    </vertex>+                    <vertex>+                        <position x="6.18106" y="21.4391" z="-10.104" />+                        <normal x="0.944691" y="-0.315076" z="0.0910331" />+                    </vertex>+                    <vertex>+                        <position x="6.06895" y="21.4521" z="-4.74372" />+                        <normal x="0.939093" y="-0.338878" z="0.0571455" />+                    </vertex>+                    <vertex>+                        <position x="6.06895" y="21.4521" z="-4.74372" />+                        <normal x="-0.0882707" y="0.0306133" z="0.995626" />+                    </vertex>+                    <vertex>+                        <position x="2.01742" y="5.39933" z="-12.5197" />+                        <normal x="0.924656" y="-0.279049" z="0.25912" />+                    </vertex>+                    <vertex>+                        <position x="1.60289" y="0.168924" z="-14.9353" />+                        <normal x="0.828753" y="-0.287443" z="0.48015" />+                    </vertex>+                    <vertex>+                        <position x="-9.2642" y="0.382277" z="-14.0593" />+                        <normal x="-0.0742719" y="0.215257" z="-0.973729" />+                    </vertex>+                    <vertex>+                        <position x="1.60289" y="0.168924" z="-14.9353" />+                        <normal x="-0.0267211" y="0.216461" z="-0.975926" />+                    </vertex>+                    <vertex>+                        <position x="1.8333" y="5.41735" z="-4.59075" />+                        <normal x="0.966747" y="-0.254794" z="0.0219325" />+                    </vertex>+                    <vertex>+                        <position x="-9.2642" y="0.382277" z="-14.0593" />+                        <normal x="-0.913224" y="0.407455" z="0.00125686" />+                    </vertex>+                    <vertex>+                        <position x="-9.2532" y="0.382012" z="-5.41419" />+                        <normal x="-0.913213" y="0.407481" z="0.00117504" />+                    </vertex>+                    <vertex>+                        <position x="-9.2532" y="0.382012" z="-5.41419" />+                        <normal x="-0.0889069" y="0.0339696" z="0.995461" />+                    </vertex>+                    <vertex>+                        <position x="1.8333" y="5.41735" z="-4.59075" />+                        <normal x="-0.0899163" y="0.0352044" z="0.995327" />+                    </vertex>+                    <vertex>+                        <position x="1.34574" y="0.165919" z="-4.43781" />+                        <normal x="-0.0909112" y="0.0374229" z="0.995156" />+                    </vertex>+                    <vertex>+                        <position x="2.27121" y="72.1832" z="-4.03895" />+                        <normal x="0.699201" y="-0.185855" z="-0.690345" />+                    </vertex>+                    <vertex>+                        <position x="5.71125" y="77.4807" z="-1.98098" />+                        <normal x="0.802054" y="0.34206" z="-0.489596" />+                    </vertex>+                    <vertex>+                        <position x="2.3137" y="80.6229" z="-1.97481" />+                        <normal x="0.0555069" y="0.639917" z="-0.766437" />+                    </vertex>+                    <vertex>+                        <position x="-2.95977" y="72.9468" z="-4.06146" />+                        <normal x="-0.832791" y="0.549567" z="-0.066592" />+                    </vertex>+                    <vertex>+                        <position x="-2.95977" y="72.9468" z="-4.06146" />+                        <normal x="-0.451373" y="0.509276" z="-0.732735" />+                    </vertex>+                    <vertex>+                        <position x="2.27121" y="72.1832" z="-4.03895" />+                        <normal x="0.125915" y="0.235083" z="-0.963785" />+                    </vertex>+                    <vertex>+                        <position x="-2.95977" y="72.9468" z="-4.06146" />+                        <normal x="0.140069" y="0.951455" z="-0.274069" />+                    </vertex>+                    <vertex>+                        <position x="2.27121" y="72.1832" z="-4.03895" />+                        <normal x="0.565594" y="0.799487" z="-0.202296" />+                    </vertex>+                    <vertex>+                        <position x="-1.21806" y="69.3664" z="-15.6011" />+                        <normal x="0.318267" y="0.894499" z="-0.31397" />+                    </vertex>+                    <vertex>+                        <position x="3.8568" y="67.1272" z="-13.6786" />+                        <normal x="0.779147" y="0.452479" z="-0.433812" />+                    </vertex>+                    <vertex>+                        <position x="3.9303" y="41.9093" z="-0.82194" />+                        <normal x="0.990257" y="-0.134927" z="-0.0344256" />+                    </vertex>+                    <vertex>+                        <position x="4.54635" y="51.864" z="-5.44692" />+                        <normal x="0.94735" y="-0.0720646" z="-0.311984" />+                    </vertex>+                    <vertex>+                        <position x="3.36801" y="57.0851" z="-7.20192" />+                        <normal x="0.803063" y="-0.358816" z="-0.475754" />+                    </vertex>+                    <vertex>+                        <position x="7.01393" y="58.4114" z="-5.25192" />+                        <normal x="0.716023" y="-0.527162" z="-0.457615" />+                    </vertex>+                    <vertex>+                        <position x="7.86798" y="58.7238" z="-1.35192" />+                        <normal x="0.989533" y="-0.141619" z="0.0277357" />+                    </vertex>+                    <vertex>+                        <position x="5.15314" y="67.3621" z="-11.0071" />+                        <normal x="0.913638" y="0.119879" z="-0.388451" />+                    </vertex>+                    <vertex>+                        <position x="7.19579" y="66.2308" z="-1.28955" />+                        <normal x="0.894998" y="0.350349" z="0.276107" />+                    </vertex>+                    <vertex>+                        <position x="1.59524" y="62.3424" z="-10.7658" />+                        <normal x="0.622104" y="-0.445733" z="-0.643668" />+                    </vertex>+                    <vertex>+                        <position x="2.18891" y="47.4802" z="-6.20595" />+                        <normal x="0.633155" y="-0.211573" z="-0.744548" />+                    </vertex>+                    <vertex>+                        <position x="4.38983" y="44.5932" z="-3.51393" />+                        <normal x="0.94201" y="-0.105015" z="-0.318729" />+                    </vertex>+                    <vertex>+                        <position x="3.36801" y="57.0851" z="-7.20192" />+                        <normal x="-0.367303" y="-0.403311" z="-0.838111" />+                    </vertex>+                    <vertex>+                        <position x="4.54635" y="51.864" z="-5.44692" />+                        <normal x="-0.34648" y="-0.021417" z="-0.937813" />+                    </vertex>+                    <vertex>+                        <position x="-2.71425" y="52.0185" z="-2.76798" />+                        <normal x="-0.718382" y="0.0775163" z="-0.691316" />+                    </vertex>+                    <vertex>+                        <position x="-1.11333" y="56.2907" z="-4.68315" />+                        <normal x="-0.797622" y="-0.348521" z="-0.492273" />+                    </vertex>+                    <vertex>+                        <position x="1.59524" y="62.3424" z="-10.7658" />+                        <normal x="-0.308989" y="-0.60187" z="-0.736395" />+                    </vertex>+                    <vertex>+                        <position x="-5.40313" y="65.5788" z="-10.4523" />+                        <normal x="-0.859886" y="-0.31583" z="-0.401057" />+                    </vertex>+                    <vertex>+                        <position x="-1.21806" y="69.3664" z="-15.6011" />+                        <normal x="-0.25305" y="0.912532" z="-0.321327" />+                    </vertex>+                    <vertex>+                        <position x="-3.86714" y="69.4987" z="-13.1392" />+                        <normal x="-0.792894" y="0.594021" z="-0.135861" />+                    </vertex>+                    <vertex>+                        <position x="-2.95977" y="72.9468" z="-4.06146" />+                        <normal x="-0.866131" y="0.489649" z="-0.100301" />+                    </vertex>+                    <vertex>+                        <position x="2.18891" y="47.4802" z="-6.20595" />+                        <normal x="-0.358741" y="0.285623" z="-0.888664" />+                    </vertex>+                    <vertex>+                        <position x="-1.68598" y="47.9161" z="-4.3563" />+                        <normal x="-0.615281" y="0.145726" z="-0.774722" />+                    </vertex>+                    <vertex>+                        <position x="-3.16478" y="45.2129" z="-2.60034" />+                        <normal x="-0.993992" y="0.0233291" z="-0.10694" />+                    </vertex>+                    <vertex>+                        <position x="3.9303" y="41.9093" z="-0.82194" />+                        <normal x="-0.071971" y="-0.99718" z="0.0212719" />+                    </vertex>+                    <vertex>+                        <position x="-2.51517" y="42.3474" z="-0.84438" />+                        <normal x="-0.868201" y="-0.456303" z="0.194975" />+                    </vertex>+                    <vertex>+                        <position x="-3.27191" y="72.715" z="-0.979184" />+                        <normal x="-0.959042" y="0.24149" z="-0.148056" />+                    </vertex>+                    <vertex>+                        <position x="2.18891" y="47.4802" z="-6.20595" />+                        <normal x="0.864559" y="0.255711" z="-0.432609" />+                    </vertex>+                </vertexbuffer>+                <vertexbuffer texture_coord_dimensions_0="2" texture_coords="1">+                    <vertex>+                        <texcoord u="0.050098" v="0.570065" />+                    </vertex>+                    <vertex>+                        <texcoord u="0.170913" v="0.672776" />+                    </vertex>+                    <vertex>+                        <texcoord u="0.1713" v="0.612859" />+                    </vertex>+                    <vertex>+                        <texcoord u="0.054521" v="0.730337" />+                    </vertex>+                    <vertex>+                        <texcoord u="0.127602" v="0.73369" />+                    </vertex>+                    <vertex>+                        <texcoord u="0.010778" v="0.635819" />+                    </vertex>+                    <vertex>+                        <texcoord u="0.015247" v="0.69114" />+                    </vertex>+                    <vertex>+                        <texcoord u="0.125753" v="0.574221" />+                    </vertex>+                    <vertex>+                        <texcoord u="0.287285" v="0.752788" />+                    </vertex>+                    <vertex>+                        <texcoord u="0.001604" v="0.752788" />+                    </vertex>+                    <vertex>+                        <texcoord u="0.001628" v="0.780496" />+                    </vertex>+                    <vertex>+                        <texcoord u="0.287308" v="0.780496" />+                    </vertex>+                    <vertex>+                        <texcoord u="0.287283" v="0.927881" />+                    </vertex>+                    <vertex>+                        <texcoord u="0.001602" v="0.92788" />+                    </vertex>+                    <vertex>+                        <texcoord u="0.001604" v="0.960393" />+                    </vertex>+                    <vertex>+                        <texcoord u="0.287285" v="0.960393" />+                    </vertex>+                    <vertex>+                        <texcoord u="0.287349" v="0.842726" />+                    </vertex>+                    <vertex>+                        <texcoord u="0.001669" v="0.842726" />+                    </vertex>+                    <vertex>+                        <texcoord u="0.001652" v="0.877909" />+                    </vertex>+                    <vertex>+                        <texcoord u="0.287332" v="0.877909" />+                    </vertex>+                    <vertex>+                        <texcoord u="0.001627" v="0.903283" />+                    </vertex>+                    <vertex>+                        <texcoord u="0.287308" v="0.903283" />+                    </vertex>+                    <vertex>+                        <texcoord u="0.001604" v="0.994909" />+                    </vertex>+                    <vertex>+                        <texcoord u="0.287285" v="0.994909" />+                    </vertex>+                    <vertex>+                        <texcoord u="0.001652" v="0.807936" />+                    </vertex>+                    <vertex>+                        <texcoord u="0.287332" v="0.807936" />+                    </vertex>+                    <vertex>+                        <texcoord u="0.258955" v="0.00461298" />+                    </vertex>+                    <vertex>+                        <texcoord u="0.267383" v="0.045482" />+                    </vertex>+                    <vertex>+                        <texcoord u="0.30668" v="0.049369" />+                    </vertex>+                    <vertex>+                        <texcoord u="0.267393" v="0.084796" />+                    </vertex>+                    <vertex>+                        <texcoord u="0.309579" v="0.0835" />+                    </vertex>+                    <vertex>+                        <texcoord u="0.267382" v="0.104315" />+                    </vertex>+                    <vertex>+                        <texcoord u="0.307642" v="0.104315" />+                    </vertex>+                    <vertex>+                        <texcoord u="0.267618" v="0.148836" />+                    </vertex>+                    <vertex>+                        <texcoord u="0.342436" v="0.00951701" />+                    </vertex>+                    <vertex>+                        <texcoord u="0.342468" v="0.044474" />+                    </vertex>+                    <vertex>+                        <texcoord u="0.342479" v="0.079044" />+                    </vertex>+                    <vertex>+                        <texcoord u="0.339546" v="0.136687" />+                    </vertex>+                    <vertex>+                        <texcoord u="0.270508" v="0.197234" />+                    </vertex>+                    <vertex>+                        <texcoord u="0.342436" v="0.190477" />+                    </vertex>+                    <vertex>+                        <texcoord u="0.34343" v="0.105" />+                    </vertex>+                    <vertex>+                        <texcoord u="0.372851" v="0.000918984" />+                    </vertex>+                    <vertex>+                        <texcoord u="0.373846" v="0.045153" />+                    </vertex>+                    <vertex>+                        <texcoord u="0.372894" v="0.071357" />+                    </vertex>+                    <vertex>+                        <texcoord u="0.372849" v="0.131866" />+                    </vertex>+                    <vertex>+                        <texcoord u="0.37285" v="0.159245" />+                    </vertex>+                    <vertex>+                        <texcoord u="0.372851" v="0.188358" />+                    </vertex>+                    <vertex>+                        <texcoord u="0.372883" v="0.100917" />+                    </vertex>+                    <vertex>+                        <texcoord u="0.398529" v="0.024237" />+                    </vertex>+                    <vertex>+                        <texcoord u="0.397582" v="0.045867" />+                    </vertex>+                    <vertex>+                        <texcoord u="0.398556" v="0.07088" />+                    </vertex>+                    <vertex>+                        <texcoord u="0.398512" v="0.13551" />+                    </vertex>+                    <vertex>+                        <texcoord u="0.398513" v="0.159577" />+                    </vertex>+                    <vertex>+                        <texcoord u="0.398545" v="0.097737" />+                    </vertex>+                    <vertex>+                        <texcoord u="0.398528" v="0.117024" />+                    </vertex>+                    <vertex>+                        <texcoord u="0.398513" v="0.184856" />+                    </vertex>+                    <vertex>+                        <texcoord u="0.39755" v="0.00130397" />+                    </vertex>+                    <vertex>+                        <texcoord u="0.963292" v="0.306494" />+                    </vertex>+                    <vertex>+                        <texcoord u="0.932858" v="0.772911" />+                    </vertex>+                    <vertex>+                        <texcoord u="0.956543" v="0.773286" />+                    </vertex>+                    <vertex>+                        <texcoord u="1.00048" v="0.743385" />+                    </vertex>+                    <vertex>+                        <texcoord u="0.485772" v="0.088112" />+                    </vertex>+                    <vertex>+                        <texcoord u="0.48667" v="0.108065" />+                    </vertex>+                    <vertex>+                        <texcoord u="0.492188" v="0.00554699" />+                    </vertex>+                    <vertex>+                        <texcoord u="0.491704" v="0.00286198" />+                    </vertex>+                    <vertex>+                        <texcoord u="0.698639" v="0.088999" />+                    </vertex>+                    <vertex>+                        <texcoord u="0.699537" v="0.109599" />+                    </vertex>+                    <vertex>+                        <texcoord u="0.695899" v="0.021933" />+                    </vertex>+                    <vertex>+                        <texcoord u="0.695414" v="0.000535011" />+                    </vertex>+                    <vertex>+                        <texcoord u="0.875767" v="0.084525" />+                    </vertex>+                    <vertex>+                        <texcoord u="0.997464" v="0.084502" />+                    </vertex>+                    <vertex>+                        <texcoord u="0.875516" v="-0.000314951" />+                    </vertex>+                    <vertex>+                        <texcoord u="0.997341" v="-6.19888e-05" />+                    </vertex>+                    <vertex>+                        <texcoord u="0.930039" v="0.387235" />+                    </vertex>+                    <vertex>+                        <texcoord u="0.870209" v="0.682424" />+                    </vertex>+                    <vertex>+                        <texcoord u="0.912072" v="0.681535" />+                    </vertex>+                    <vertex>+                        <texcoord u="0.867292" v="0.405064" />+                    </vertex>+                    <vertex>+                        <texcoord u="0.794213" v="0.370222" />+                    </vertex>+                    <vertex>+                        <texcoord u="0.846278" v="0.571575" />+                    </vertex>+                    <vertex>+                        <texcoord u="0.81926" v="0.60894" />+                    </vertex>+                    <vertex>+                        <texcoord u="0.853543" v="0.370173" />+                    </vertex>+                    <vertex>+                        <texcoord u="0.793576" v="0.353505" />+                    </vertex>+                    <vertex>+                        <texcoord u="0.792152" v="0.645448" />+                    </vertex>+                    <vertex>+                        <texcoord u="0.81892" v="0.607683" />+                    </vertex>+                    <vertex>+                        <texcoord u="0.845688" v="0.569919" />+                    </vertex>+                    <vertex>+                        <texcoord u="0.851505" v="0.351103" />+                    </vertex>+                    <vertex>+                        <texcoord u="0.930527" v="0.386011" />+                    </vertex>+                    <vertex>+                        <texcoord u="0.912695" v="0.680591" />+                    </vertex>+                    <vertex>+                        <texcoord u="0.870296" v="0.681233" />+                    </vertex>+                    <vertex>+                        <texcoord u="0.868724" v="0.406272" />+                    </vertex>+                    <vertex>+                        <texcoord u="0.874202" v="0.367504" />+                    </vertex>+                    <vertex>+                        <texcoord u="0.827582" v="0.353852" />+                    </vertex>+                    <vertex>+                        <texcoord u="0.857248" v="0.335058" />+                    </vertex>+                    <vertex>+                        <texcoord u="0.797917" v="0.335064" />+                    </vertex>+                    <vertex>+                        <texcoord u="0.874421" v="0.36835" />+                    </vertex>+                    <vertex>+                        <texcoord u="0.73329" v="0.059492" />+                    </vertex>+                    <vertex>+                        <texcoord u="0.769327" v="0.130142" />+                    </vertex>+                    <vertex>+                        <texcoord u="0.877378" v="0.097644" />+                    </vertex>+                    <vertex>+                        <texcoord u="0.998682" v="0.097756" />+                    </vertex>+                    <vertex>+                        <texcoord u="0.857089" v="0.13009" />+                    </vertex>+                    <vertex>+                        <texcoord u="0.709543" v="0.068739" />+                    </vertex>+                    <vertex>+                        <texcoord u="0.845603" v="0.068739" />+                    </vertex>+                    <vertex>+                        <texcoord u="0.999653" v="0.096996" />+                    </vertex>+                    <vertex>+                        <texcoord u="0.876693" v="0.165087" />+                    </vertex>+                    <vertex>+                        <texcoord u="0.877114" v="0.096777" />+                    </vertex>+                    <vertex>+                        <texcoord u="0.922854" v="0.827257" />+                    </vertex>+                    <vertex>+                        <texcoord u="0.768288" v="0.974034" />+                    </vertex>+                    <vertex>+                        <texcoord u="0.978589" v="0.999505" />+                    </vertex>+                    <vertex>+                        <texcoord u="0.992914" v="0.831395" />+                    </vertex>+                    <vertex>+                        <texcoord u="0.734764" v="0.701092" />+                    </vertex>+                    <vertex>+                        <texcoord u="0.754795" v="0.801368" />+                    </vertex>+                    <vertex>+                        <texcoord u="0.489129" v="0.694126" />+                    </vertex>+                    <vertex>+                        <texcoord u="0.48904" v="0.973902" />+                    </vertex>+                    <vertex>+                        <texcoord u="0.48904" v="0.972522" />+                    </vertex>+                    <vertex>+                        <texcoord u="0.768288" v="0.972654" />+                    </vertex>+                    <vertex>+                        <texcoord u="0.000535" v="0.197156" />+                    </vertex>+                    <vertex>+                        <texcoord u="0.244403" v="0.195475" />+                    </vertex>+                    <vertex>+                        <texcoord u="0.243663" v="-0.00323403" />+                    </vertex>+                    <vertex>+                        <texcoord u="0.00056" v="0.307624" />+                    </vertex>+                    <vertex>+                        <texcoord u="0.382041" v="0.604717" />+                    </vertex>+                    <vertex>+                        <texcoord u="0.359879" v="0.776737" />+                    </vertex>+                    <vertex>+                        <texcoord u="0.38204" v="0.776899" />+                    </vertex>+                    <vertex>+                        <texcoord u="0.20705" v="0.602465" />+                    </vertex>+                    <vertex>+                        <texcoord u="0.122687" v="0.50802" />+                    </vertex>+                    <vertex>+                        <texcoord u="0.382041" v="0.486738" />+                    </vertex>+                    <vertex>+                        <texcoord u="0.239973" v="0.471515" />+                    </vertex>+                    <vertex>+                        <texcoord u="0.345534" v="0.463904" />+                    </vertex>+                    <vertex>+                        <texcoord u="0.350812" v="0.320372" />+                    </vertex>+                    <vertex>+                        <texcoord u="0.104731" v="0.362644" />+                    </vertex>+                    <vertex>+                        <texcoord u="0.382041" v="0.281226" />+                    </vertex>+                    <vertex>+                        <texcoord u="0.00156" v="0.419632" />+                    </vertex>+                    <vertex>+                        <texcoord u="0.272271" v="0.724208" />+                    </vertex>+                    <vertex>+                        <texcoord u="0.184662" v="0.67168" />+                    </vertex>+                    <vertex>+                        <texcoord u="0.464952" v="0.587873" />+                    </vertex>+                    <vertex>+                        <texcoord u="0.662396" v="0.587748" />+                    </vertex>+                    <vertex>+                        <texcoord u="0.668727" v="0.491638" />+                    </vertex>+                    <vertex>+                        <texcoord u="0.501897" v="0.49964" />+                    </vertex>+                    <vertex>+                        <texcoord u="0.77816" v="0.390099" />+                    </vertex>+                    <vertex>+                        <texcoord u="0.663509" v="0.346577" />+                    </vertex>+                    <vertex>+                        <texcoord u="0.505692" v="0.138899" />+                    </vertex>+                    <vertex>+                        <texcoord u="0.668127" v="0.222456" />+                    </vertex>+                    <vertex>+                        <texcoord u="0.670016" v="0.129611" />+                    </vertex>+                    <vertex>+                        <texcoord u="0.608005" v="0.658305" />+                    </vertex>+                    <vertex>+                        <texcoord u="0.495592" v="0.657526" />+                    </vertex>+                    <vertex>+                        <texcoord u="0.461717" v="0.715515" />+                    </vertex>+                    <vertex>+                        <texcoord u="0.411615" v="0.591554" />+                    </vertex>+                    <vertex>+                        <texcoord u="0.411615" v="0.772583" />+                    </vertex>+                    <vertex>+                        <texcoord u="0.411615" v="0.772567" />+                    </vertex>+                    <vertex>+                        <texcoord u="0.42741" v="0.772394" />+                    </vertex>+                    <vertex>+                        <texcoord u="0.427843" v="0.773504" />+                    </vertex>+                    <vertex>+                        <texcoord u="0.411615" v="0.494139" />+                    </vertex>+                    <vertex>+                        <texcoord u="0.411615" v="0.3792" />+                    </vertex>+                    <vertex>+                        <texcoord u="0.437275" v="0.173395" />+                    </vertex>+                    <vertex>+                        <texcoord u="0.411615" v="0.216934" />+                    </vertex>+                    <vertex>+                        <texcoord u="0.411615" v="0.172987" />+                    </vertex>+                    <vertex>+                        <texcoord u="0.411615" v="0.140859" />+                    </vertex>+                    <vertex>+                        <texcoord u="0.792241" v="0.646305" />+                    </vertex>+                    <vertex>+                        <texcoord u="0.1713" v="0.612859" />+                    </vertex>+                    <vertex>+                        <texcoord u="0.170913" v="0.672776" />+                    </vertex>+                    <vertex>+                        <texcoord u="0.050098" v="0.570065" />+                    </vertex>+                    <vertex>+                        <texcoord u="0.127602" v="0.73369" />+                    </vertex>+                    <vertex>+                        <texcoord u="0.054521" v="0.730337" />+                    </vertex>+                    <vertex>+                        <texcoord u="0.015247" v="0.69114" />+                    </vertex>+                    <vertex>+                        <texcoord u="0.010778" v="0.635819" />+                    </vertex>+                    <vertex>+                        <texcoord u="0.125753" v="0.574221" />+                    </vertex>+                    <vertex>+                        <texcoord u="0.001628" v="0.780496" />+                    </vertex>+                    <vertex>+                        <texcoord u="0.001604" v="0.752788" />+                    </vertex>+                    <vertex>+                        <texcoord u="0.287285" v="0.752788" />+                    </vertex>+                    <vertex>+                        <texcoord u="0.287308" v="0.780496" />+                    </vertex>+                    <vertex>+                        <texcoord u="0.001604" v="0.960393" />+                    </vertex>+                    <vertex>+                        <texcoord u="0.001602" v="0.92788" />+                    </vertex>+                    <vertex>+                        <texcoord u="0.287283" v="0.927881" />+                    </vertex>+                    <vertex>+                        <texcoord u="0.287285" v="0.960393" />+                    </vertex>+                    <vertex>+                        <texcoord u="0.001652" v="0.877909" />+                    </vertex>+                    <vertex>+                        <texcoord u="0.001669" v="0.842726" />+                    </vertex>+                    <vertex>+                        <texcoord u="0.287349" v="0.842726" />+                    </vertex>+                    <vertex>+                        <texcoord u="0.287332" v="0.877909" />+                    </vertex>+                    <vertex>+                        <texcoord u="0.001627" v="0.903283" />+                    </vertex>+                    <vertex>+                        <texcoord u="0.287308" v="0.903283" />+                    </vertex>+                    <vertex>+                        <texcoord u="0.001604" v="0.994909" />+                    </vertex>+                    <vertex>+                        <texcoord u="0.287285" v="0.994909" />+                    </vertex>+                    <vertex>+                        <texcoord u="0.001652" v="0.807936" />+                    </vertex>+                    <vertex>+                        <texcoord u="0.287332" v="0.807936" />+                    </vertex>+                    <vertex>+                        <texcoord u="0.30668" v="0.049369" />+                    </vertex>+                    <vertex>+                        <texcoord u="0.267383" v="0.045482" />+                    </vertex>+                    <vertex>+                        <texcoord u="0.258955" v="0.00461298" />+                    </vertex>+                    <vertex>+                        <texcoord u="0.267393" v="0.084796" />+                    </vertex>+                    <vertex>+                        <texcoord u="0.309579" v="0.0835" />+                    </vertex>+                    <vertex>+                        <texcoord u="0.267382" v="0.104315" />+                    </vertex>+                    <vertex>+                        <texcoord u="0.307642" v="0.104315" />+                    </vertex>+                    <vertex>+                        <texcoord u="0.267618" v="0.148836" />+                    </vertex>+                    <vertex>+                        <texcoord u="0.342436" v="0.00951701" />+                    </vertex>+                    <vertex>+                        <texcoord u="0.342468" v="0.044474" />+                    </vertex>+                    <vertex>+                        <texcoord u="0.342479" v="0.079044" />+                    </vertex>+                    <vertex>+                        <texcoord u="0.270508" v="0.197234" />+                    </vertex>+                    <vertex>+                        <texcoord u="0.339546" v="0.136687" />+                    </vertex>+                    <vertex>+                        <texcoord u="0.342436" v="0.190477" />+                    </vertex>+                    <vertex>+                        <texcoord u="0.34343" v="0.105" />+                    </vertex>+                    <vertex>+                        <texcoord u="0.372851" v="0.000918984" />+                    </vertex>+                    <vertex>+                        <texcoord u="0.373846" v="0.045153" />+                    </vertex>+                    <vertex>+                        <texcoord u="0.372894" v="0.071357" />+                    </vertex>+                    <vertex>+                        <texcoord u="0.372849" v="0.131866" />+                    </vertex>+                    <vertex>+                        <texcoord u="0.372851" v="0.188358" />+                    </vertex>+                    <vertex>+                        <texcoord u="0.37285" v="0.159245" />+                    </vertex>+                    <vertex>+                        <texcoord u="0.372883" v="0.100917" />+                    </vertex>+                    <vertex>+                        <texcoord u="0.398529" v="0.024237" />+                    </vertex>+                    <vertex>+                        <texcoord u="0.397582" v="0.045867" />+                    </vertex>+                    <vertex>+                        <texcoord u="0.398556" v="0.07088" />+                    </vertex>+                    <vertex>+                        <texcoord u="0.398512" v="0.13551" />+                    </vertex>+                    <vertex>+                        <texcoord u="0.398513" v="0.159577" />+                    </vertex>+                    <vertex>+                        <texcoord u="0.398545" v="0.097737" />+                    </vertex>+                    <vertex>+                        <texcoord u="0.398528" v="0.117024" />+                    </vertex>+                    <vertex>+                        <texcoord u="0.398513" v="0.184856" />+                    </vertex>+                    <vertex>+                        <texcoord u="0.39755" v="0.00130397" />+                    </vertex>+                    <vertex>+                        <texcoord u="0.956543" v="0.773286" />+                    </vertex>+                    <vertex>+                        <texcoord u="0.492188" v="0.00554699" />+                    </vertex>+                    <vertex>+                        <texcoord u="0.48667" v="0.108065" />+                    </vertex>+                    <vertex>+                        <texcoord u="0.485772" v="0.088112" />+                    </vertex>+                    <vertex>+                        <texcoord u="0.491704" v="0.00286198" />+                    </vertex>+                    <vertex>+                        <texcoord u="0.699537" v="0.109599" />+                    </vertex>+                    <vertex>+                        <texcoord u="0.698639" v="0.088999" />+                    </vertex>+                    <vertex>+                        <texcoord u="0.695899" v="0.021933" />+                    </vertex>+                    <vertex>+                        <texcoord u="0.695414" v="0.000535011" />+                    </vertex>+                    <vertex>+                        <texcoord u="0.875516" v="-0.000314951" />+                    </vertex>+                    <vertex>+                        <texcoord u="0.997464" v="0.084502" />+                    </vertex>+                    <vertex>+                        <texcoord u="0.875767" v="0.084525" />+                    </vertex>+                    <vertex>+                        <texcoord u="0.997341" v="-6.19888e-05" />+                    </vertex>+                    <vertex>+                        <texcoord u="0.912072" v="0.681535" />+                    </vertex>+                    <vertex>+                        <texcoord u="0.870209" v="0.682424" />+                    </vertex>+                    <vertex>+                        <texcoord u="0.930039" v="0.387235" />+                    </vertex>+                    <vertex>+                        <texcoord u="0.867292" v="0.405064" />+                    </vertex>+                    <vertex>+                        <texcoord u="0.81926" v="0.60894" />+                    </vertex>+                    <vertex>+                        <texcoord u="0.846278" v="0.571575" />+                    </vertex>+                    <vertex>+                        <texcoord u="0.794213" v="0.370222" />+                    </vertex>+                    <vertex>+                        <texcoord u="0.853543" v="0.370173" />+                    </vertex>+                    <vertex>+                        <texcoord u="0.81892" v="0.607683" />+                    </vertex>+                    <vertex>+                        <texcoord u="0.792152" v="0.645448" />+                    </vertex>+                    <vertex>+                        <texcoord u="0.793576" v="0.353505" />+                    </vertex>+                    <vertex>+                        <texcoord u="0.851505" v="0.351103" />+                    </vertex>+                    <vertex>+                        <texcoord u="0.845688" v="0.569919" />+                    </vertex>+                    <vertex>+                        <texcoord u="0.870296" v="0.681233" />+                    </vertex>+                    <vertex>+                        <texcoord u="0.912695" v="0.680591" />+                    </vertex>+                    <vertex>+                        <texcoord u="0.930527" v="0.386011" />+                    </vertex>+                    <vertex>+                        <texcoord u="0.868724" v="0.406272" />+                    </vertex>+                    <vertex>+                        <texcoord u="0.874202" v="0.367504" />+                    </vertex>+                    <vertex>+                        <texcoord u="0.827582" v="0.353852" />+                    </vertex>+                    <vertex>+                        <texcoord u="0.797917" v="0.335064" />+                    </vertex>+                    <vertex>+                        <texcoord u="0.857248" v="0.335058" />+                    </vertex>+                    <vertex>+                        <texcoord u="0.874421" v="0.36835" />+                    </vertex>+                    <vertex>+                        <texcoord u="0.769327" v="0.130142" />+                    </vertex>+                    <vertex>+                        <texcoord u="0.73329" v="0.059492" />+                    </vertex>+                    <vertex>+                        <texcoord u="0.998682" v="0.097756" />+                    </vertex>+                    <vertex>+                        <texcoord u="0.877378" v="0.097644" />+                    </vertex>+                    <vertex>+                        <texcoord u="0.857089" v="0.13009" />+                    </vertex>+                    <vertex>+                        <texcoord u="0.709543" v="0.068739" />+                    </vertex>+                    <vertex>+                        <texcoord u="0.845603" v="0.068739" />+                    </vertex>+                    <vertex>+                        <texcoord u="0.999653" v="0.096996" />+                    </vertex>+                    <vertex>+                        <texcoord u="0.876693" v="0.165087" />+                    </vertex>+                    <vertex>+                        <texcoord u="0.877114" v="0.096777" />+                    </vertex>+                    <vertex>+                        <texcoord u="0.768288" v="0.974034" />+                    </vertex>+                    <vertex>+                        <texcoord u="0.922854" v="0.827257" />+                    </vertex>+                    <vertex>+                        <texcoord u="0.754795" v="0.801368" />+                    </vertex>+                    <vertex>+                        <texcoord u="0.48904" v="0.973902" />+                    </vertex>+                    <vertex>+                        <texcoord u="0.48904" v="0.972522" />+                    </vertex>+                    <vertex>+                        <texcoord u="0.768288" v="0.972654" />+                    </vertex>+                    <vertex>+                        <texcoord u="0.243663" v="-0.00323403" />+                    </vertex>+                    <vertex>+                        <texcoord u="0.244403" v="0.195475" />+                    </vertex>+                    <vertex>+                        <texcoord u="0.000535" v="0.197156" />+                    </vertex>+                    <vertex>+                        <texcoord u="0.00056" v="0.307624" />+                    </vertex>+                    <vertex>+                        <texcoord u="0.359879" v="0.776737" />+                    </vertex>+                    <vertex>+                        <texcoord u="0.20705" v="0.602465" />+                    </vertex>+                    <vertex>+                        <texcoord u="0.122687" v="0.50802" />+                    </vertex>+                    <vertex>+                        <texcoord u="0.239973" v="0.471515" />+                    </vertex>+                    <vertex>+                        <texcoord u="0.345534" v="0.463904" />+                    </vertex>+                    <vertex>+                        <texcoord u="0.104731" v="0.362644" />+                    </vertex>+                    <vertex>+                        <texcoord u="0.350812" v="0.320372" />+                    </vertex>+                    <vertex>+                        <texcoord u="0.00156" v="0.419632" />+                    </vertex>+                    <vertex>+                        <texcoord u="0.184662" v="0.67168" />+                    </vertex>+                    <vertex>+                        <texcoord u="0.272271" v="0.724208" />+                    </vertex>+                    <vertex>+                        <texcoord u="0.668727" v="0.491638" />+                    </vertex>+                    <vertex>+                        <texcoord u="0.662396" v="0.587748" />+                    </vertex>+                    <vertex>+                        <texcoord u="0.464952" v="0.587873" />+                    </vertex>+                    <vertex>+                        <texcoord u="0.501897" v="0.49964" />+                    </vertex>+                    <vertex>+                        <texcoord u="0.77816" v="0.390099" />+                    </vertex>+                    <vertex>+                        <texcoord u="0.663509" v="0.346577" />+                    </vertex>+                    <vertex>+                        <texcoord u="0.670016" v="0.129611" />+                    </vertex>+                    <vertex>+                        <texcoord u="0.668127" v="0.222456" />+                    </vertex>+                    <vertex>+                        <texcoord u="0.505692" v="0.138899" />+                    </vertex>+                    <vertex>+                        <texcoord u="0.608005" v="0.658305" />+                    </vertex>+                    <vertex>+                        <texcoord u="0.495592" v="0.657526" />+                    </vertex>+                    <vertex>+                        <texcoord u="0.461717" v="0.715515" />+                    </vertex>+                    <vertex>+                        <texcoord u="0.42741" v="0.772394" />+                    </vertex>+                    <vertex>+                        <texcoord u="0.427843" v="0.773504" />+                    </vertex>+                    <vertex>+                        <texcoord u="0.437275" v="0.173395" />+                    </vertex>+                    <vertex>+                        <texcoord u="0.792241" v="0.646305" />+                    </vertex>+                </vertexbuffer>+            </geometry>+            <boneassignments>+                <vertexboneassignment vertexindex="0" boneindex="17" weight="1" />+                <vertexboneassignment vertexindex="1" boneindex="17" weight="1" />+                <vertexboneassignment vertexindex="2" boneindex="17" weight="1" />+                <vertexboneassignment vertexindex="3" boneindex="17" weight="1" />+                <vertexboneassignment vertexindex="4" boneindex="17" weight="1" />+                <vertexboneassignment vertexindex="5" boneindex="17" weight="1" />+                <vertexboneassignment vertexindex="6" boneindex="17" weight="1" />+                <vertexboneassignment vertexindex="7" boneindex="17" weight="1" />+                <vertexboneassignment vertexindex="8" boneindex="17" weight="1" />+                <vertexboneassignment vertexindex="9" boneindex="16" weight="1" />+                <vertexboneassignment vertexindex="10" boneindex="16" weight="1" />+                <vertexboneassignment vertexindex="11" boneindex="17" weight="1" />+                <vertexboneassignment vertexindex="12" boneindex="17" weight="1" />+                <vertexboneassignment vertexindex="13" boneindex="16" weight="1" />+                <vertexboneassignment vertexindex="14" boneindex="16" weight="1" />+                <vertexboneassignment vertexindex="15" boneindex="17" weight="1" />+                <vertexboneassignment vertexindex="16" boneindex="17" weight="1" />+                <vertexboneassignment vertexindex="17" boneindex="16" weight="1" />+                <vertexboneassignment vertexindex="18" boneindex="16" weight="1" />+                <vertexboneassignment vertexindex="19" boneindex="17" weight="1" />+                <vertexboneassignment vertexindex="20" boneindex="16" weight="1" />+                <vertexboneassignment vertexindex="21" boneindex="17" weight="1" />+                <vertexboneassignment vertexindex="22" boneindex="16" weight="1" />+                <vertexboneassignment vertexindex="23" boneindex="17" weight="1" />+                <vertexboneassignment vertexindex="24" boneindex="16" weight="1" />+                <vertexboneassignment vertexindex="25" boneindex="17" weight="1" />+                <vertexboneassignment vertexindex="26" boneindex="10" weight="1" />+                <vertexboneassignment vertexindex="27" boneindex="15" weight="1" />+                <vertexboneassignment vertexindex="28" boneindex="15" weight="1" />+                <vertexboneassignment vertexindex="29" boneindex="15" weight="1" />+                <vertexboneassignment vertexindex="30" boneindex="15" weight="1" />+                <vertexboneassignment vertexindex="31" boneindex="15" weight="1" />+                <vertexboneassignment vertexindex="32" boneindex="15" weight="1" />+                <vertexboneassignment vertexindex="33" boneindex="10" weight="1" />+                <vertexboneassignment vertexindex="34" boneindex="16" weight="1" />+                <vertexboneassignment vertexindex="35" boneindex="16" weight="1" />+                <vertexboneassignment vertexindex="36" boneindex="16" weight="1" />+                <vertexboneassignment vertexindex="37" boneindex="16" weight="1" />+                <vertexboneassignment vertexindex="38" boneindex="10" weight="1" />+                <vertexboneassignment vertexindex="39" boneindex="16" weight="1" />+                <vertexboneassignment vertexindex="40" boneindex="16" weight="1" />+                <vertexboneassignment vertexindex="41" boneindex="16" weight="1" />+                <vertexboneassignment vertexindex="42" boneindex="16" weight="1" />+                <vertexboneassignment vertexindex="43" boneindex="16" weight="1" />+                <vertexboneassignment vertexindex="44" boneindex="16" weight="1" />+                <vertexboneassignment vertexindex="45" boneindex="16" weight="1" />+                <vertexboneassignment vertexindex="46" boneindex="16" weight="1" />+                <vertexboneassignment vertexindex="47" boneindex="16" weight="1" />+                <vertexboneassignment vertexindex="48" boneindex="16" weight="1" />+                <vertexboneassignment vertexindex="49" boneindex="16" weight="1" />+                <vertexboneassignment vertexindex="50" boneindex="16" weight="1" />+                <vertexboneassignment vertexindex="51" boneindex="16" weight="1" />+                <vertexboneassignment vertexindex="52" boneindex="16" weight="1" />+                <vertexboneassignment vertexindex="53" boneindex="16" weight="1" />+                <vertexboneassignment vertexindex="54" boneindex="16" weight="1" />+                <vertexboneassignment vertexindex="55" boneindex="16" weight="1" />+                <vertexboneassignment vertexindex="56" boneindex="16" weight="1" />+                <vertexboneassignment vertexindex="57" boneindex="11" weight="1" />+                <vertexboneassignment vertexindex="58" boneindex="10" weight="1" />+                <vertexboneassignment vertexindex="59" boneindex="10" weight="1" />+                <vertexboneassignment vertexindex="60" boneindex="10" weight="1" />+                <vertexboneassignment vertexindex="61" boneindex="8" weight="1" />+                <vertexboneassignment vertexindex="62" boneindex="8" weight="1" />+                <vertexboneassignment vertexindex="63" boneindex="8" weight="1" />+                <vertexboneassignment vertexindex="64" boneindex="8" weight="1" />+                <vertexboneassignment vertexindex="65" boneindex="7" weight="1" />+                <vertexboneassignment vertexindex="66" boneindex="6" weight="1" />+                <vertexboneassignment vertexindex="67" boneindex="6" weight="1" />+                <vertexboneassignment vertexindex="68" boneindex="7" weight="1" />+                <vertexboneassignment vertexindex="69" boneindex="7" weight="1" />+                <vertexboneassignment vertexindex="70" boneindex="7" weight="1" />+                <vertexboneassignment vertexindex="71" boneindex="7" weight="1" />+                <vertexboneassignment vertexindex="72" boneindex="7" weight="1" />+                <vertexboneassignment vertexindex="73" boneindex="6" weight="1" />+                <vertexboneassignment vertexindex="74" boneindex="5" weight="1" />+                <vertexboneassignment vertexindex="75" boneindex="0" weight="1" />+                <vertexboneassignment vertexindex="76" boneindex="6" weight="1" />+                <vertexboneassignment vertexindex="77" boneindex="6" weight="1" />+                <vertexboneassignment vertexindex="78" boneindex="5" weight="1" />+                <vertexboneassignment vertexindex="79" boneindex="5" weight="1" />+                <vertexboneassignment vertexindex="80" boneindex="6" weight="1" />+                <vertexboneassignment vertexindex="81" boneindex="6" weight="1" />+                <vertexboneassignment vertexindex="82" boneindex="0" weight="1" />+                <vertexboneassignment vertexindex="83" boneindex="5" weight="1" />+                <vertexboneassignment vertexindex="84" boneindex="5" weight="1" />+                <vertexboneassignment vertexindex="85" boneindex="6" weight="1" />+                <vertexboneassignment vertexindex="86" boneindex="6" weight="1" />+                <vertexboneassignment vertexindex="87" boneindex="5" weight="1" />+                <vertexboneassignment vertexindex="88" boneindex="5" weight="1" />+                <vertexboneassignment vertexindex="89" boneindex="6" weight="1" />+                <vertexboneassignment vertexindex="90" boneindex="6" weight="1" />+                <vertexboneassignment vertexindex="91" boneindex="6" weight="1" />+                <vertexboneassignment vertexindex="92" boneindex="6" weight="1" />+                <vertexboneassignment vertexindex="93" boneindex="6" weight="1" />+                <vertexboneassignment vertexindex="94" boneindex="6" weight="1" />+                <vertexboneassignment vertexindex="95" boneindex="7" weight="1" />+                <vertexboneassignment vertexindex="96" boneindex="6" weight="1" />+                <vertexboneassignment vertexindex="97" boneindex="7" weight="1" />+                <vertexboneassignment vertexindex="98" boneindex="7" weight="1" />+                <vertexboneassignment vertexindex="99" boneindex="6" weight="1" />+                <vertexboneassignment vertexindex="100" boneindex="7" weight="1" />+                <vertexboneassignment vertexindex="101" boneindex="7" weight="1" />+                <vertexboneassignment vertexindex="102" boneindex="7" weight="1" />+                <vertexboneassignment vertexindex="103" boneindex="6" weight="1" />+                <vertexboneassignment vertexindex="104" boneindex="7" weight="1" />+                <vertexboneassignment vertexindex="105" boneindex="11" weight="1" />+                <vertexboneassignment vertexindex="106" boneindex="10" weight="1" />+                <vertexboneassignment vertexindex="107" boneindex="10" weight="1" />+                <vertexboneassignment vertexindex="108" boneindex="11" weight="1" />+                <vertexboneassignment vertexindex="109" boneindex="11" weight="1" />+                <vertexboneassignment vertexindex="110" boneindex="11" weight="1" />+                <vertexboneassignment vertexindex="111" boneindex="10" weight="1" />+                <vertexboneassignment vertexindex="112" boneindex="10" weight="1" />+                <vertexboneassignment vertexindex="113" boneindex="10" weight="1" />+                <vertexboneassignment vertexindex="114" boneindex="10" weight="1" />+                <vertexboneassignment vertexindex="115" boneindex="15" weight="1" />+                <vertexboneassignment vertexindex="116" boneindex="10" weight="1" />+                <vertexboneassignment vertexindex="117" boneindex="10" weight="1" />+                <vertexboneassignment vertexindex="118" boneindex="15" weight="1" />+                <vertexboneassignment vertexindex="119" boneindex="0" weight="1" />+                <vertexboneassignment vertexindex="120" boneindex="5" weight="1" />+                <vertexboneassignment vertexindex="121" boneindex="1" weight="1" />+                <vertexboneassignment vertexindex="122" boneindex="0" weight="1" />+                <vertexboneassignment vertexindex="123" boneindex="9" weight="1" />+                <vertexboneassignment vertexindex="124" boneindex="9" weight="1" />+                <vertexboneassignment vertexindex="125" boneindex="9" weight="1" />+                <vertexboneassignment vertexindex="126" boneindex="9" weight="1" />+                <vertexboneassignment vertexindex="127" boneindex="10" weight="1" />+                <vertexboneassignment vertexindex="128" boneindex="10" weight="1" />+                <vertexboneassignment vertexindex="129" boneindex="10" weight="1" />+                <vertexboneassignment vertexindex="130" boneindex="10" weight="1" />+                <vertexboneassignment vertexindex="131" boneindex="5" weight="1" />+                <vertexboneassignment vertexindex="132" boneindex="5" weight="1" />+                <vertexboneassignment vertexindex="133" boneindex="0" weight="1" />+                <vertexboneassignment vertexindex="134" boneindex="0" weight="1" />+                <vertexboneassignment vertexindex="135" boneindex="9" weight="1" />+                <vertexboneassignment vertexindex="136" boneindex="0" weight="1" />+                <vertexboneassignment vertexindex="137" boneindex="10" weight="1" />+                <vertexboneassignment vertexindex="138" boneindex="10" weight="1" />+                <vertexboneassignment vertexindex="139" boneindex="10" weight="1" />+                <vertexboneassignment vertexindex="140" boneindex="15" weight="1" />+                <vertexboneassignment vertexindex="141" boneindex="15" weight="1" />+                <vertexboneassignment vertexindex="142" boneindex="5" weight="1" />+                <vertexboneassignment vertexindex="143" boneindex="0" weight="1" />+                <vertexboneassignment vertexindex="144" boneindex="5" weight="1" />+                <vertexboneassignment vertexindex="145" boneindex="0" weight="1" />+                <vertexboneassignment vertexindex="146" boneindex="1" weight="1" />+                <vertexboneassignment vertexindex="147" boneindex="1" weight="1" />+                <vertexboneassignment vertexindex="148" boneindex="5" weight="1" />+                <vertexboneassignment vertexindex="149" boneindex="5" weight="1" />+                <vertexboneassignment vertexindex="150" boneindex="0" weight="1" />+                <vertexboneassignment vertexindex="151" boneindex="9" weight="1" />+                <vertexboneassignment vertexindex="152" boneindex="10" weight="1" />+                <vertexboneassignment vertexindex="153" boneindex="10" weight="1" />+                <vertexboneassignment vertexindex="154" boneindex="10" weight="1" />+                <vertexboneassignment vertexindex="155" boneindex="10" weight="1" />+                <vertexboneassignment vertexindex="156" boneindex="5" weight="1" />+                <vertexboneassignment vertexindex="157" boneindex="14" weight="1" />+                <vertexboneassignment vertexindex="158" boneindex="14" weight="1" />+                <vertexboneassignment vertexindex="159" boneindex="14" weight="1" />+                <vertexboneassignment vertexindex="160" boneindex="14" weight="1" />+                <vertexboneassignment vertexindex="161" boneindex="14" weight="1" />+                <vertexboneassignment vertexindex="162" boneindex="14" weight="1" />+                <vertexboneassignment vertexindex="163" boneindex="14" weight="1" />+                <vertexboneassignment vertexindex="164" boneindex="14" weight="1" />+                <vertexboneassignment vertexindex="165" boneindex="13" weight="1" />+                <vertexboneassignment vertexindex="166" boneindex="13" weight="1" />+                <vertexboneassignment vertexindex="167" boneindex="14" weight="1" />+                <vertexboneassignment vertexindex="168" boneindex="14" weight="1" />+                <vertexboneassignment vertexindex="169" boneindex="13" weight="1" />+                <vertexboneassignment vertexindex="170" boneindex="13" weight="1" />+                <vertexboneassignment vertexindex="171" boneindex="14" weight="1" />+                <vertexboneassignment vertexindex="172" boneindex="14" weight="1" />+                <vertexboneassignment vertexindex="173" boneindex="13" weight="1" />+                <vertexboneassignment vertexindex="174" boneindex="13" weight="1" />+                <vertexboneassignment vertexindex="175" boneindex="14" weight="1" />+                <vertexboneassignment vertexindex="176" boneindex="14" weight="1" />+                <vertexboneassignment vertexindex="177" boneindex="13" weight="1" />+                <vertexboneassignment vertexindex="178" boneindex="14" weight="1" />+                <vertexboneassignment vertexindex="179" boneindex="13" weight="1" />+                <vertexboneassignment vertexindex="180" boneindex="14" weight="1" />+                <vertexboneassignment vertexindex="181" boneindex="13" weight="1" />+                <vertexboneassignment vertexindex="182" boneindex="14" weight="1" />+                <vertexboneassignment vertexindex="183" boneindex="12" weight="1" />+                <vertexboneassignment vertexindex="184" boneindex="12" weight="1" />+                <vertexboneassignment vertexindex="185" boneindex="10" weight="1" />+                <vertexboneassignment vertexindex="186" boneindex="12" weight="1" />+                <vertexboneassignment vertexindex="187" boneindex="12" weight="1" />+                <vertexboneassignment vertexindex="188" boneindex="12" weight="1" />+                <vertexboneassignment vertexindex="189" boneindex="12" weight="1" />+                <vertexboneassignment vertexindex="190" boneindex="10" weight="1" />+                <vertexboneassignment vertexindex="191" boneindex="13" weight="1" />+                <vertexboneassignment vertexindex="192" boneindex="13" weight="1" />+                <vertexboneassignment vertexindex="193" boneindex="13" weight="1" />+                <vertexboneassignment vertexindex="194" boneindex="10" weight="1" />+                <vertexboneassignment vertexindex="195" boneindex="13" weight="1" />+                <vertexboneassignment vertexindex="196" boneindex="13" weight="1" />+                <vertexboneassignment vertexindex="197" boneindex="13" weight="1" />+                <vertexboneassignment vertexindex="198" boneindex="13" weight="1" />+                <vertexboneassignment vertexindex="199" boneindex="13" weight="1" />+                <vertexboneassignment vertexindex="200" boneindex="13" weight="1" />+                <vertexboneassignment vertexindex="201" boneindex="13" weight="1" />+                <vertexboneassignment vertexindex="202" boneindex="13" weight="1" />+                <vertexboneassignment vertexindex="203" boneindex="13" weight="1" />+                <vertexboneassignment vertexindex="204" boneindex="13" weight="1" />+                <vertexboneassignment vertexindex="205" boneindex="13" weight="1" />+                <vertexboneassignment vertexindex="206" boneindex="13" weight="1" />+                <vertexboneassignment vertexindex="207" boneindex="13" weight="1" />+                <vertexboneassignment vertexindex="208" boneindex="13" weight="1" />+                <vertexboneassignment vertexindex="209" boneindex="13" weight="1" />+                <vertexboneassignment vertexindex="210" boneindex="13" weight="1" />+                <vertexboneassignment vertexindex="211" boneindex="13" weight="1" />+                <vertexboneassignment vertexindex="212" boneindex="13" weight="1" />+                <vertexboneassignment vertexindex="213" boneindex="13" weight="1" />+                <vertexboneassignment vertexindex="214" boneindex="10" weight="1" />+                <vertexboneassignment vertexindex="215" boneindex="4" weight="1" />+                <vertexboneassignment vertexindex="216" boneindex="4" weight="1" />+                <vertexboneassignment vertexindex="217" boneindex="4" weight="1" />+                <vertexboneassignment vertexindex="218" boneindex="4" weight="1" />+                <vertexboneassignment vertexindex="219" boneindex="2" weight="1" />+                <vertexboneassignment vertexindex="220" boneindex="3" weight="1" />+                <vertexboneassignment vertexindex="221" boneindex="2" weight="1" />+                <vertexboneassignment vertexindex="222" boneindex="3" weight="1" />+                <vertexboneassignment vertexindex="223" boneindex="3" weight="1" />+                <vertexboneassignment vertexindex="224" boneindex="3" weight="1" />+                <vertexboneassignment vertexindex="225" boneindex="3" weight="1" />+                <vertexboneassignment vertexindex="226" boneindex="3" weight="1" />+                <vertexboneassignment vertexindex="227" boneindex="1" weight="1" />+                <vertexboneassignment vertexindex="228" boneindex="1" weight="1" />+                <vertexboneassignment vertexindex="229" boneindex="2" weight="1" />+                <vertexboneassignment vertexindex="230" boneindex="2" weight="1" />+                <vertexboneassignment vertexindex="231" boneindex="1" weight="1" />+                <vertexboneassignment vertexindex="232" boneindex="1" weight="1" />+                <vertexboneassignment vertexindex="233" boneindex="2" weight="1" />+                <vertexboneassignment vertexindex="234" boneindex="2" weight="1" />+                <vertexboneassignment vertexindex="235" boneindex="1" weight="1" />+                <vertexboneassignment vertexindex="236" boneindex="1" weight="1" />+                <vertexboneassignment vertexindex="237" boneindex="2" weight="1" />+                <vertexboneassignment vertexindex="238" boneindex="2" weight="1" />+                <vertexboneassignment vertexindex="239" boneindex="1" weight="1" />+                <vertexboneassignment vertexindex="240" boneindex="1" weight="1" />+                <vertexboneassignment vertexindex="241" boneindex="1" weight="1" />+                <vertexboneassignment vertexindex="242" boneindex="2" weight="1" />+                <vertexboneassignment vertexindex="243" boneindex="2" weight="1" />+                <vertexboneassignment vertexindex="244" boneindex="2" weight="1" />+                <vertexboneassignment vertexindex="245" boneindex="2" weight="1" />+                <vertexboneassignment vertexindex="246" boneindex="2" weight="1" />+                <vertexboneassignment vertexindex="247" boneindex="2" weight="1" />+                <vertexboneassignment vertexindex="248" boneindex="2" weight="1" />+                <vertexboneassignment vertexindex="249" boneindex="2" weight="1" />+                <vertexboneassignment vertexindex="250" boneindex="3" weight="1" />+                <vertexboneassignment vertexindex="251" boneindex="3" weight="1" />+                <vertexboneassignment vertexindex="252" boneindex="3" weight="1" />+                <vertexboneassignment vertexindex="253" boneindex="2" weight="1" />+                <vertexboneassignment vertexindex="254" boneindex="3" weight="1" />+                <vertexboneassignment vertexindex="255" boneindex="3" weight="1" />+                <vertexboneassignment vertexindex="256" boneindex="3" weight="1" />+                <vertexboneassignment vertexindex="257" boneindex="2" weight="1" />+                <vertexboneassignment vertexindex="258" boneindex="3" weight="1" />+                <vertexboneassignment vertexindex="259" boneindex="10" weight="1" />+                <vertexboneassignment vertexindex="260" boneindex="11" weight="1" />+                <vertexboneassignment vertexindex="261" boneindex="11" weight="1" />+                <vertexboneassignment vertexindex="262" boneindex="10" weight="1" />+                <vertexboneassignment vertexindex="263" boneindex="10" weight="1" />+                <vertexboneassignment vertexindex="264" boneindex="10" weight="1" />+                <vertexboneassignment vertexindex="265" boneindex="10" weight="1" />+                <vertexboneassignment vertexindex="266" boneindex="10" weight="1" />+                <vertexboneassignment vertexindex="267" boneindex="12" weight="1" />+                <vertexboneassignment vertexindex="268" boneindex="12" weight="1" />+                <vertexboneassignment vertexindex="269" boneindex="1" weight="1" />+                <vertexboneassignment vertexindex="270" boneindex="0" weight="1" />+                <vertexboneassignment vertexindex="271" boneindex="9" weight="1" />+                <vertexboneassignment vertexindex="272" boneindex="9" weight="1" />+                <vertexboneassignment vertexindex="273" boneindex="9" weight="1" />+                <vertexboneassignment vertexindex="274" boneindex="10" weight="1" />+                <vertexboneassignment vertexindex="275" boneindex="10" weight="1" />+                <vertexboneassignment vertexindex="276" boneindex="10" weight="1" />+                <vertexboneassignment vertexindex="277" boneindex="1" weight="1" />+                <vertexboneassignment vertexindex="278" boneindex="1" weight="1" />+                <vertexboneassignment vertexindex="279" boneindex="9" weight="1" />+                <vertexboneassignment vertexindex="280" boneindex="0" weight="1" />+                <vertexboneassignment vertexindex="281" boneindex="0" weight="1" />+                <vertexboneassignment vertexindex="282" boneindex="0" weight="1" />+                <vertexboneassignment vertexindex="283" boneindex="10" weight="1" />+                <vertexboneassignment vertexindex="284" boneindex="10" weight="1" />+                <vertexboneassignment vertexindex="285" boneindex="12" weight="1" />+                <vertexboneassignment vertexindex="286" boneindex="12" weight="1" />+                <vertexboneassignment vertexindex="287" boneindex="10" weight="1" />+                <vertexboneassignment vertexindex="288" boneindex="1" weight="1" />+                <vertexboneassignment vertexindex="289" boneindex="1" weight="1" />+                <vertexboneassignment vertexindex="290" boneindex="1" weight="1" />+                <vertexboneassignment vertexindex="291" boneindex="1" weight="1" />+                <vertexboneassignment vertexindex="292" boneindex="1" weight="1" />+                <vertexboneassignment vertexindex="293" boneindex="10" weight="1" />+                <vertexboneassignment vertexindex="294" boneindex="1" weight="1" />+            </boneassignments>+        </submesh>+    </submeshes>+    <skeletonlink name="robot.skeleton" />+</mesh>
+ media/spheremap.png view

binary file changed (absent → 53416 bytes)

+ media/test.material view
@@ -0,0 +1,180 @@+material MyGroundMaterial+{+	technique+	{+		pass+		{+//			cull_hardware anticlockwise+//			cull_software none+			lighting off+			texture_unit+			{+				texture grass_1024.jpg+    			tex_address_mode mirror+			}+		}+	}+}++material MyAnimMaterial+{+	technique+	{+		pass+		{+			texture_unit+			{+                anim_texture 0.8 01.png 02.png 03.png 04.png+//                anim_texture grass_1024.jpg dirt01.jpg cloudy_noon_fr.jpg 5+			}+		}+	}+}++fragment_program Ogre/Compositor/InvertFP  glsl+{+	source invert.frag+}++vertex_program StdQuad  glsl+{+	source StdQuad_vp.glsl+}++material QuadMaterial2+{+	technique+	{+		pass+		{+//			vertex_program_ref StdQuad {}+			fragment_program_ref Invert {}+            +			lighting off+//			depth_write off+//            ambient 1 0 0 0+			texture_unit+			{+				texture r2skin.jpg+			}+		}+	}+}++//fragment_program Ogre/Compositor/GlassFP cg+//{+//	source GlassFP.cg+//	entry_point main_ps+//	profiles ps_2_0 arbfp1+//}++fragment_program Ogre/Compositor/GlassFP  glsl+{+	source GlassFP.frag+}+++material Ogre/Compositor/GlassPass+{+	technique+	{+		pass+		{+			depth_check off++//			vertex_program_ref Ogre/Compositor/StdQuad {}++			fragment_program_ref Ogre/Compositor/GlassFP+			{+			}++			texture_unit RT+			{+				tex_address_mode clamp+				filtering linear linear linear+			}++			texture_unit+			{+				texture WaterNormal1.tga 2d+                tex_coord_set 1+				tex_address_mode mirror+				filtering linear linear linear+			}+		}+	}+}++material QuadMaterial+{+	technique+	{+		pass+		{+			depth_check on++			vertex_program_ref Ogre/Compositor/StdQuad {}++			fragment_program_ref Ogre/Compositor/GlassFP+			{+			}++			texture_unit RT+			{+				tex_address_mode clamp+				filtering linear linear linear+			}++			texture_unit+			{+				texture WaterNormal1.tga 2d+                tex_coord_set 1+				tex_address_mode mirror+				filtering linear linear linear+			}+		}+	}+}+material Ogre/Compositor/Invert+{+	technique+	{++		pass+		{+			cull_hardware none+			cull_software none+			depth_func always_pass++//			vertex_program_ref Ogre/Compositor/StdQuad_Tex2a_vp+//			{+//			}++			fragment_program_ref Ogre/Compositor/InvertFP+			{+			}++			texture_unit RT+			{+                tex_coord_set 0+				tex_address_mode clamp+				filtering trilinear+			}++		}+	}+}++material CubeMaterial+{+	technique+	{+		pass+		{+			texture_unit+			{+				texture dirt01.jpg+			}+		}+	}+}
+ media/toonf2.frag view
@@ -0,0 +1,26 @@+varying vec3 lightDir,normal;++void main()+{++	float intensity;+	vec4 color;+	+	// normalizing the lights position to be on the safe side+	vec3 l = normalize(vec3(gl_LightSource[0].position));+	+	vec3 n = normalize(normal);+	+	intensity = dot(l,n);+	+	if (intensity > 0.95)+		color = vec4(1.0,0.5,0.5,1.0);+	else if (intensity > 0.5)+		color = vec4(0.6,0.3,0.3,1.0);+	else if (intensity > 0.25)+		color = vec4(0.4,0.2,0.2,1.0);+	else+		color = vec4(0.2,0.1,0.1,1.0);+	+	gl_FragColor = color;+} 
+ media/toonf2.vert view
@@ -0,0 +1,9 @@+varying vec3 lightDir,normal;++void main()+{+	lightDir = normalize(vec3(gl_LightSource[0].position));+	normal = gl_NormalMatrix * gl_Normal;++	gl_Position = ftransform();+} 
+ src/Utils.hs view
@@ -0,0 +1,307 @@+module Utils where++import Data.Maybe+import qualified Data.List as List+import qualified Data.IntMap as IntMap+import qualified Data.Map as Map+import Foreign+import Foreign.C.Types+import Data.IORef ( IORef, newIORef )+import Control.Monad as Monad+import Control.Applicative++--import Graphics.UI.GLFW as GLFW+import Graphics.Rendering.OpenGL as GL+import FRP.Elerea++import Graphics.LambdaCube++driveNetwork network driver = do+    dt <- driver+    case dt of+        Just dt -> do Monad.join $ superstep network dt+                      driveNetwork network driver+        Nothing -> return ()++-- FPS measure code+data State+    = State+    { frames    :: IORef Int+    , t0        :: IORef Double+    }++fpsState = do+    a <- newIORef 0+    b <- newIORef 0+    return $ State a b++updateFPS :: State -> Double -> IO ()        +updateFPS state t1 = do+    let t = 1000*t1+    frames state $~! (+1)+    t0' <- get (t0 state)+    t0 state $= t0' + t+    when (t + t0' >= 5000) $ do+    f <- get (frames state)+    let seconds = (t + t0') / 1000 +        fps = fromIntegral f / seconds+    putStrLn (show f ++ " frames in " ++ show seconds ++ " seconds = "++ show fps ++ " FPS")+    t0 state $= 0+    frames state $= 0++drawCube = renderPrimitive Quads $ do+    -- top of cube+    color $ Color3 0 1 (0.0 :: GLfloat)+    vertex $ Vertex3   1.0    1.0  (-1.0 :: GLfloat)+    vertex $ Vertex3 (-1.0)   1.0  (-1.0 :: GLfloat)+    vertex $ Vertex3 (-1.0)   1.0  ( 1.0 :: GLfloat)+    vertex $ Vertex3   1.0    1.0  ( 1.0 :: GLfloat)+    +    -- bottom of cube+    color $ Color3 1 0.5 (0.0 :: GLfloat)+    vertex $ Vertex3   1.0  (-1.0) ( 1.0 :: GLfloat)+    vertex $ Vertex3 (-1.0) (-1.0) ( 1.0 :: GLfloat)+    vertex $ Vertex3 (-1.0) (-1.0) (-1.0 :: GLfloat)+    vertex $ Vertex3   1.0  (-1.0) (-1.0 :: GLfloat)+    +    -- front of cube+    color $ Color3 1 0 (0.0 :: GLfloat)+    vertex $ Vertex3   1.0    1.0  ( 1.0 :: GLfloat)+    vertex $ Vertex3 (-1.0)   1.0  ( 1.0 :: GLfloat)+    vertex $ Vertex3 (-1.0) (-1.0) ( 1.0 :: GLfloat)+    vertex $ Vertex3   1.0  (-1.0) ( 1.0 :: GLfloat)+    +    -- back of cube.+    color $ Color3 1 1 (0.0 :: GLfloat)+    vertex $ Vertex3   1.0  (-1.0) (-1.0 :: GLfloat)+    vertex $ Vertex3 (-1.0) (-1.0) (-1.0 :: GLfloat)+    vertex $ Vertex3 (-1.0)   1.0  (-1.0 :: GLfloat)+    vertex $ Vertex3   1.0    1.0  (-1.0 :: GLfloat)+    +    -- left of cube+    color $ Color3 0 0 (1.0 :: GLfloat)+    vertex $ Vertex3 (-1.0)   1.0  ( 1.0 :: GLfloat)+    vertex $ Vertex3 (-1.0)   1.0  (-1.0 :: GLfloat)+    vertex $ Vertex3 (-1.0) (-1.0) (-1.0 :: GLfloat)+    vertex $ Vertex3 (-1.0) (-1.0) ( 1.0 :: GLfloat)+    +    -- right of cube+    color $ Color3 1 0 (1.0 :: GLfloat)+    vertex $ Vertex3   1.0    1.0  (-1.0 :: GLfloat)+    vertex $ Vertex3   1.0    1.0  ( 1.0 :: GLfloat)+    vertex $ Vertex3   1.0  (-1.0) ( 1.0 :: GLfloat)+    vertex $ Vertex3   1.0  (-1.0) (-1.0 :: GLfloat)++initGL width height = do+    clearColor $= Color4 0 0 0 1+    clearDepth $= 1+    depthFunc $= Just Less+    --depthMask $= Enabled+    --shadeModel $= Smooth+    cullFace $= Just Back+    -- lighting setup+    materialAmbient Front $= Color4 0.2 0.2 0.2 1+    materialDiffuse Front $= Color4 1 1 1 1+    materialSpecular Front $= Color4 0 0 0 0+    materialShininess Front $= 0+    materialAmbient Back $= Color4 0.2 0.2 0.2 1+    materialDiffuse Back $= Color4 1 1 1 1+    materialSpecular Back $= Color4 0 0 0 0+    materialShininess Back $= 0+    GL.position (Light 0) $= Vertex4 20 80 150 1+    GL.lighting $= Enabled+    GL.light (Light 0) $= Enabled+    +    polygonMode $= (Line,Line)+    +    matrixMode $= Projection+    loadIdentity+    +    perspective 45 (width/height) 0.1 200+    +    matrixMode $= Modelview 0+    color $ Color4 1 1 1 (1::GLfloat)++resizeGLScene winSize size@(Size w h) = do+    winSize (fromIntegral w,fromIntegral h)+    viewport $= (Position 0 0, size)++    matrixMode $= Projection+    loadIdentity++    perspective 45 (fromIntegral w / fromIntegral h) 0.1 1000+    +    matrixMode $= Modelview 0++cameraSignal (sx,sy,sz) mposs keyss = createSignal $ transfer (Vec4 sx sy sz 0, Vec4 1 0 0 0, Vec4 0 1 0 0,(-pi * 50,0)) calcCam ((,) <$> mposs <*> keyss)+  where+    dir cx cy = (vec4xmat44 (Vec4 0 0 (-1) 0) $ rotX (cy) <> rotY (cx),vec4xmat44 (Vec4 0 1 0 0) $ rotX (cy) <> rotY (cx))+    calcCam dt ((dmx,dmy),(ka,kw,ks,kd,turbo)) (p0,_,_,(mx,my)) = (p4,d,u,(mx',my'))+      where+        p1  = if ka then p0 `vec4addvec4` (v `vec4xscalar` t)    else p0+        p2  = if kw then p1 `vec4addvec4` (d `vec4xscalar` (-t)) else p1+        p3  = if ks then p2 `vec4addvec4` (d `vec4xscalar` t)    else p2+        p4  = if kd then p3 `vec4addvec4` (v `vec4xscalar` (-t)) else p3+        k   = if turbo then 10 else 1+        t   = k * realToFrac dt+        mx' = dmx + mx+        my' = dmy + my+        (d,u) = dir (mx' / 100) (my' / 100)+        v   = norm $ d `vec4crossvec4` u+++--mkMesh :: String -> [(Matrix4,Mesh)] -> World -> IO World+mkMesh name ml w = do+    let sml             = concat [[(mat,setVD sm $ msSharedVertexData m) | sm <- msSubMeshList m] | (mat,m) <- ml]+        setVD sm svd    = case smVertexData sm of+            { Just _    -> sm+            ; Nothing   -> sm { smVertexData = svd }+            }+        matGrp          = groupSetBy (\(_,a) (_,b) -> smMaterialName a == smMaterialName b) sml+        geomGrp         = concat $ map (groupSetBy declCmp) matGrp+        declCmp (_,a) (_,b) = sortDecl a == sortDecl b && smOperationType a == smOperationType b+          where+            sortDecl sm = List.sort [(veType e, veSemantic e, veIndex e) | e <- vdElementList $ vdVertexDeclaration $ fromJust $ smVertexData sm]+        vcnt l          = foldl (+) 0 [getNumVertices $ head $ IntMap.elems $ vbbBindingMap $ vdVertexBufferBinding $ fromJust $ smVertexData sm | (_,sm) <- l]+        rl              = wrResource w+        rs              = wrRenderSystem w+        joinVD l        = do+            let counts      = scanl (+) 0 [getNumVertices $ head $ IntMap.elems $ vbbBindingMap $ vdVertexBufferBinding $ fromJust $ smVertexData sm | (_,sm) <- l]+                offs        = scanl (\a b -> a + (getTypeSize $ veType b)) 0 d+                d           = vdElementList $ vdVertexDeclaration $ fromJust $ smVertexData $ snd $ head l+                decl        =  VertexDeclaration [e { veSource = 0, veOffset = o } | (e,o) <- zip d offs]+                --vsize       = getVertexSize $ head $ IntMap.elems $ vbbBindingMap $ vdVertexBufferBinding $ fromJust $ smVertexData $ head l -- FIXME+                vsize       = foldl (\a b -> a + (getTypeSize $ veType b)) 0 $ vdElementList $ decl+                usage       = HBU_STATIC -- TODO+                vcount      = last counts+                material    = smMaterialName $ snd $ head l+                operation   = smOperationType $ snd $ head l+                indexCounts = scanl (\a (_,b) -> a + (idIndexCount $ fromJust $ smIndexData b)) 0 l+                indexCount  = last indexCounts+--                indexCount' = foldl (\a b -> a + (getNumIndexes $ idIndexBuffer $  fromJust $ smIndexData b)) 0 l+                idType      = if vcount > 0xFFFF then IT_32BIT else IT_16BIT+                sortDecl dl = List.sortBy (\a b-> (veType a, veSemantic a, veIndex a) `compare` (veType b, veSemantic b, veIndex b)) dl+                sorteddecl  = sortDecl $ vdElementList decl+            vb <- createVertexBuffer rs vsize vcount usage True+            ptr <- lock vb 0 (getSizeInBytes vb) HBL_NORMAL+            -- iterate over subents+            --  copy and transform vertex attributes+            forM_ (zip counts l) $ \(o,(mat,sm)) -> do+                -- TODO+                --  filter out VES_BLEND attributes from src and dst declarations (static mesh cant be vertex blended)+                --  iterate over each vertex attribute and do copy&transform +                let svbs    = IntMap.elems $ vbbBindingMap $ vdVertexBufferBinding $ fromJust $ smVertexData sm+                    srcdecl = sortDecl $ vdElementList $ vdVertexDeclaration $ fromJust $ smVertexData sm+                --print sorteddecl+                --print srcdecl+                sptrs <- forM svbs $ \svb -> lock svb 0 (getSizeInBytes svb) HBL_NORMAL++                let copyAttr se de = do+                        let sptr    = sptrs !! (veSource se)+                            sstride = getVertexSize $ svbs !! (veSource se)+                            svcount = getNumVertices $ svbs !! (veSource se)+                        forM_ [0..(svcount-1)] $ \i -> copyArray (advancePtr ptr $ (o+i) * vsize + veOffset de) (advancePtr sptr $ i * vsize + veOffset se) (getTypeSize $ veType se)+                    rFloat3 = peekArray 3 :: Ptr CFloat -> IO [CFloat]+                    wFloat3 = pokeArray :: Ptr CFloat -> [CFloat] -> IO ()+                    transrotAttr se de = do+                        let sptr    = sptrs !! (veSource se)+                            sstride = getVertexSize $ svbs !! (veSource se)+                            svcount = getNumVertices $ svbs !! (veSource se)+                        forM_ [0..(svcount-1)] $ \i -> do+                            [x,y,z] <- rFloat3 (castPtr $ advancePtr sptr $ i * vsize + veOffset se)+                            let Vec4 x' y' z' _ = vec4xmat44 (Vec4 (realToFrac x) (realToFrac y) (realToFrac z) 1) mat+                            wFloat3 (castPtr $ advancePtr ptr $ (o+i) * vsize + veOffset de) [realToFrac x', realToFrac y', realToFrac z']+                    rotAttr se de = do+                        let sptr    = sptrs !! (veSource se)+                            sstride = getVertexSize $ svbs !! (veSource se)+                            svcount = getNumVertices $ svbs !! (veSource se)+                        forM_ [0..(svcount-1)] $ \i -> do+                            [x,y,z] <- rFloat3 (castPtr $ advancePtr sptr $ i * vsize + veOffset se)+                            let Vec4 x' y' z' _ = vec4xmat44 (Vec4 (realToFrac x) (realToFrac y) (realToFrac z) 0) mat+                            wFloat3 (castPtr $ advancePtr ptr $ (o+i) * vsize + veOffset de) [realToFrac x', realToFrac y', realToFrac z']+                        +                forM_ (zip srcdecl sorteddecl) $ \(se,de) -> case veSemantic se of+                    { VES_POSITION              -> transrotAttr se de+                    ; VES_BLEND_WEIGHTS         -> error "invalid semantic"+                    ; VES_BLEND_INDICES         -> error "invalid semantic"+                    ; VES_NORMAL                -> rotAttr se de+                    ; VES_DIFFUSE               -> copyAttr se de+                    ; VES_SPECULAR              -> copyAttr se de+                    ; VES_TEXTURE_COORDINATES   -> copyAttr se de+                    ; VES_BINORMAL              -> rotAttr se de+                    ; VES_TANGENT               -> rotAttr se de+                    }+                forM_ svbs $ \svb -> unlock svb+            unlock vb+            +            ib <- createIndexBuffer rs idType indexCount usage True+--            print $ "created new index buffer: " ++ show indexCount ++ " " ++ show idType ++ " "  ++ show indexCount'+            print $ "created new index buffer: " ++ show indexCount ++ " " ++ show idType+            -- 1. lock buffer+            ptr <- lock ib 0 (getSizeInBytes ib) HBL_NORMAL +            -- 2. fill buffer+            forM_ (zip3 counts l indexCounts) $ \(o,(_,sm),io) -> do+                let sib = idIndexBuffer $ fromJust $ smIndexData sm+                    cnt = getNumIndexes sib+                    st  = getIndexType sib+                    r16 = peekElemOff :: Ptr Word16 -> Int -> IO Word16+                    r32 = peekElemOff :: Ptr Word32 -> Int -> IO Word32+                    w16 = pokeElemOff :: Ptr Word16 -> Int -> Word16 -> IO ()+                    w32 = pokeElemOff :: Ptr Word32 -> Int -> Word32 -> IO ()+                sptr <- lock sib 0 (getSizeInBytes sib) HBL_NORMAL +                print (o,cnt,io)+                forM_ [0..(cnt-1)] $ \i -> case (idType,st) of+                    { (IT_16BIT,IT_16BIT) -> do+                        d <- r16 (castPtr sptr) i+                        w16 (castPtr ptr) (io+i) $ d + fromIntegral o+                    ; (IT_16BIT,IT_32BIT) -> do+                        d <- r32 (castPtr sptr) i+                        w16 (castPtr ptr) (io+i) $ fromIntegral d + fromIntegral o+                    ; (IT_32BIT,IT_16BIT) -> do+                        d <- r16 (castPtr sptr) i+                        w32 (castPtr ptr) (io+i) $ fromIntegral d + fromIntegral o+                    ; (IT_32BIT,IT_32BIT) -> do+                        d <- r32 (castPtr sptr) i+                        w32 (castPtr ptr) (io+i) $ d + fromIntegral o+                    }+                unlock sib+            -- 3. unlock buffer+            unlock ib++            let binding = VertexBufferBinding $ IntMap.fromList [(0,vb)]+                vd      = VertexData decl binding 0 vcount+                idat    = IndexData ib 0 indexCount+            print decl+            print $ "vcount " ++ show vcount ++ " indexCount " ++ show indexCount+            return $ SubMesh+                { smOperationType       = operation+                , smVertexData          = Just vd+                , smIndexData           = Just idat+                , smExtremityPoints     = undefined -- TODO+                , smMaterialName        = material+                }+    print $ "groupNum: " ++ (show $ length geomGrp)+    print $ map length geomGrp+    print $ foldl (+) 0 $ map length geomGrp+    print $ map vcnt geomGrp+    print $ foldl (+) 0 $ map vcnt geomGrp+    sml' <- mapM joinVD geomGrp+    let mesh = Mesh +            { msSubMeshList                 = sml'+            , msSharedVertexData            = Nothing+            , msSubMeshNameMap              = undefined -- TODO+            , msBoundRadius                 = undefined -- TODO+            , msSkeletonName                = undefined -- TODO+            , msVertexBufferUsage           = undefined -- TODO+            , msIndexBufferUsage            = undefined -- TODO+            , msVertexBufferShadowBuffer    = undefined -- TODO+            , msIndexBufferShadowBuffer     = undefined -- TODO+            }+    return w { wrResource = rl { rlMeshMap = Map.insert name mesh (rlMeshMap rl) } }++mkMeshN name nl w0 = do+    let f (w,l) (mt,n) = do+            (m,w') <- getMesh n w+            return (w',(mt,m):l)+    (w1,l) <- foldM f (w0,[]) nl+    mkMesh name l w1
+ src/lambdacube-basic.hs view
@@ -0,0 +1,118 @@+import Data.Maybe+import Data.Map+import Control.Applicative+import Control.Monad++import Graphics.UI.GLFW as GLFW+import Graphics.Rendering.OpenGL as GL hiding (light)+import System.Log.Logger+import FRP.Elerea++import Graphics.LambdaCube+import Graphics.LambdaCube.RenderSystem.GL+import qualified Graphics.LambdaCube.Loader.StbImage as Stb++import Paths_lambdacube_examples (getDataFileName)++import Utils++integral v0 s = transfer v0 (\dt v v0 -> v0+v*realToFrac dt) s++baseMousePos = Position 200 200+width = 150+height = 150+main = do+    updateGlobalLogger rootLoggerName (setLevel DEBUG)+    initialize+    openWindow (Size 640 480) [DisplayRGBBits 8 8 8, DisplayAlphaBits 8, DisplayDepthBits 24] Window+    windowTitle $= "LambdaCube Engine Basic Example"+    GLFW.mousePos $= baseMousePos+    GLFW.disableSpecial MouseCursor++    initGL 640 480+    (windowSize,windowSizeSink) <- external (0,0)+    (mousePosition,mousePositionSink) <- external (0,0)+    (mousePress,mousePressSink) <- external False+    (fblrPress,fblrPressSink) <- external (False,False,False,False,False)++    windowSizeCallback $= resizeGLScene windowSizeSink+    let --mkNodeR = mkNode "Root"+        idMatrix4 = transl 0 0 0++    mediaPath <- getDataFileName "media"++    renderSystem <- mkGLRenderSystem+    world' <- addRenderWindow "MainWindow" 640 480 [mkViewport 0 0 1 0.5 "Camera1" ["Glass"{- "Tiling","Glass" -}], mkViewport 0 0.5 1 0.5 "Camera2" []]+        =<< addRenderTexture "RenderTex01" 640 480+        =<< addScene ([-- mkNode "Root" "Car"      idMatrix4 [mesh "scooby_body.mesh.xml"]+                        mkNode "Root" "Robot"    idMatrix4 [mesh "robot.mesh.xml"]+--                      , mkNodeR "OgreHead" idMatrix4 [mesh "BigRamp_N.mesh.xml"] +--                      , mkNodeR "Plane"    (transl 41.5 (-50) (-146)) [entity "robot.mesh.xml"]+                      , mkNode "Root" "OgreHead" (scal 0.05) [mesh "ogrehead.mesh.xml",mesh "Quad.mesh.xml"] +--                      , mkNodeR "Light1"   transl 5 5 10 $ [sun ]+                      , mkNode "Root" "Light1"   (transl 5 5 10) [light,mesh "ogrehead.mesh.xml"]+--                      , mkNode "Root" "Light2"   (transl (-5) 15 10) [light,mesh "Cube.mesh.xml"]+--                      , mkNodeR "CustomMeshNode" idMatrix4 [customMesh (plane) "RenderTex01Material"]+                      , mkNode "Root" "CameraNode1" idMatrix4 [simpleCamera "Camera1"]+                      , mkNode "Root" "CameraEye" idMatrix4 [mesh "Box.mesh.xml"]+--                      , mkNode "Root" "CameraNode1" idMatrix4 [wireCamera "Camera1"]+                      , mkNode "Root" "CameraNode2" (transl 0 0 (-10)) [simpleCamera "Camera2"] ] +--                      , mkNode "Root" "CameraNode2" (transl 0 0 10) [simpleCamera "Camera2"] ] +--                   ++ [ mkNode "Root" ("Robot" ++ show i) (transl ((i-100)*20) (-50) (-166)) [mesh "robot.mesh.xml"] | i <- [1..200] ])+                   ++ [ mkNode "Root" ("Knot" ++ show i) idMatrix4 [meshMat "knot.mesh.xml" (repeat "Examples/TransparentTest")] | i <- [1..200]::[Int] ])+        =<< addResourceLibrary [("General",[(PathDir,mediaPath)])]+--          =<< addConfig "resources.cfg"+        =<< mkWorld renderSystem [Stb.loadImage]+    (world,worldSink) <- external world'++    re1 <- createSignal $ integral 0 $ pure (1.5)-- :: Float)+    re2 <- createSignal $ integral 10 $ pure (-1.0)-- :: Float)+    re3 <- createSignal $ integral 110 $ pure (0.8)-- :: Float)+    time <- createSignal $ stateful 0 (+)+    cam <- cameraSignal (-4,0,0) mousePosition fblrPress++    s <- fpsState++    driveNetwork (drawGLScene worldSink <$> world <*> windowSize <*> mousePosition <*> re1 <*> re2 <*> re3 <*> cam)-- <*> zsin <*> cam)+                 (readInput s mousePositionSink mousePressSink fblrPressSink)++    closeWindow++readInput s mousePos mouseBut fblrPress = do+    t <- get GLFW.time+    updateFPS s t+    GLFW.time $= 0+    let Position x0 y0 = baseMousePos+        f = (==) Press+    Position x y <- get GLFW.mousePos+    GLFW.mousePos $= baseMousePos+    mousePos (fromIntegral (x-x0),fromIntegral (y-x0))+    b <- GLFW.getMouseButton GLFW.ButtonLeft+    mouseBut (b == GLFW.Press)+    k <- getKey ESC+    kw <- getKey UP -- $ CharKey 'w'+    ks <- getKey DOWN -- $ CharKey 's'+    ka <- getKey LEFT -- $ CharKey 'a'+    kd <- getKey RIGHT -- $ CharKey 'd'+    turbo <- getKey RSHIFT+    --print (ka,kw,ks,kd)+    fblrPress (f ka,f kw,f ks,f kd,f turbo)+    return (if k == Press then Nothing else Just t)++drawGLScene worldSink world (w,h) (cx,cy) re1 re2 re3 (cam,dir,up,_) {-zsin camMat-} = do+    w' <- updateTargetSize "MainWindow" w h+      =<< updateTransforms+        ([ {-("Car",       rotY re3 <> scal 0.4 <> transl (cx/w*2-1) (h/w-cy/w*2) zsin)+        , -}("Robot",     scal 0.1 <> rotY re2 <> transl 3.5 (-5) (-7))+        , ("Light1",    transl 0 100 200 <> rotX re2)+--        , ("OgreHead",  rotX (cy/50) <> rotY (-cx/50) <> transl (-0.5) 0 (-160))+--        , ("OgreHead",  rotY re2 <>  transl (-0.5) 0 (-160))+--        , ("CameraNode1", rotX (cy/50) <> rotY (-cx/50) <> transl 0 0 (cx/30))--camMat)+        , ("CameraEye", scal (1) <> (\(Vec4 x y z _) -> transl x y z) cam)+        , ("CameraNode1", lookat cam dir up)+        ]+        ++ [ (("Knot" ++ show i),(rotY re3 <> transl ((fromIntegral $ (i`mod`14)-7)*width) (height*(fromIntegral $ i`div`14 -7)) (-166))) | i <- [1..200] ])+        world+    w <- renderWorld 0 "MainWindow" (flattenScene $ wrScene w') w'+    worldSink w+    swapBuffers
+ src/lambdacube-cameratrack.hs view
@@ -0,0 +1,91 @@+import Data.Maybe+import Data.Map+import qualified Data.List as List+import Control.Applicative+import Control.Monad++import Graphics.UI.GLFW as GLFW+import Graphics.Rendering.OpenGL as GL hiding (light)+import System.Log.Logger+import FRP.Elerea++import Graphics.LambdaCube+import Graphics.LambdaCube.RenderSystem.GL+import qualified Graphics.LambdaCube.Loader.StbImage as Stb++import Paths_lambdacube_examples (getDataFileName)++import Utils++integral v0 s = transfer v0 (\dt v v0 -> v0+v*realToFrac dt) s++main = do+    updateGlobalLogger rootLoggerName (setLevel DEBUG)+    initialize+    openWindow (Size 640 480) [DisplayRGBBits 8 8 8, DisplayAlphaBits 8, DisplayDepthBits 24] Window+    windowTitle $= "LambdaCube Engine Camera Track Example"++    initGL 640 480+    (windowSize,windowSizeSink) <- external (0,0)+    windowSizeCallback $= resizeGLScene windowSizeSink++    let curve kfl t = (fx + t' * dx, fy + t' * dy, fz + t' * dz)+          where+            t''             = len * (snd $ properFraction $ (realToFrac t) / len)+            t'              = t'' - ft+            (al,bl)         = List.span (\(a,_)-> a <= t'') kfl+            (ft,(fx,fy,fz)) = last al+            (gt,(gx,gy,gz)) = head bl+            dt              = gt - ft+            dx              = (gx-fx) / dt+            dy              = (gy-fy) / dt+            dz              = (gz-fz) / dt+            len             = fst $ last kfl+        idMatrix4 = transl 0 0 0+        track =+            [ (0,   (-100 , 100 , 100))+            , (2.5, (-300 ,-10  ,-200))+            , (5,   ( 500 , 700 ,-500))+            , (7.5, ( 200 ,-10  , 400))+            , (10,  (-100 , 100 , 100))+            ]++    mediaPath <- getDataFileName "media"+    renderSystem <- mkGLRenderSystem+    world' <- addRenderWindow "MainWindow" 640 480 [mkViewport 0 0 1 1 "Camera1" []]+        =<< addScene [ mkNode "Root" "OgreHead" idMatrix4 [mesh "ogrehead.mesh.xml"] +                     , mkNode "Root" "Light1"   (transl 5 5 10) [light{-,mesh "Cube.mesh.xml"-}]+                     , mkNode "Root" "Light2"   (transl (-5) 15 10) [light{-,mesh "Cube.mesh.xml"-}]+                     , mkNode "Root" "CameraNode1" idMatrix4 [simpleCamera "Camera1"]+--                     , mkNode "Root" "GroundNode1" (scal 7000 <> transl 0 (-70) 0) [meshMat "Ground.mesh.xml" ["Examples/RustySteel"]]+                     , mkNode "Root" "GroundNode1" (scal 7000 <> transl 0 (-70) 0) [meshMat "Ground.mesh.xml" ["MyAnimMaterial"]]+                     , mkNode "Root" "SkyBoxNode1" (scal 1000) [mesh "Box.mesh.xml"]+                     ]+        =<< addResourceLibrary [("General",[(PathDir,mediaPath)])]+--          =<< addConfig "resources.cfg"+        =<< mkWorld renderSystem [Stb.loadImage]+    (world,worldSink) <- external world'++    time <- createSignal $ stateful 0 (+)+    let anim = curve track <$> time++    s <- fpsState++    driveNetwork (drawGLScene worldSink <$> world <*> windowSize <*> anim <*> time)+                 (readInput s)++    closeWindow++readInput s = do+    t <- get GLFW.time+    updateFPS s t+    GLFW.time $= 0+    k <- getKey ESC+    return (if k == Press then Nothing else Just t)++drawGLScene worldSink world (w,h) (x,y,z) time = do+    w' <- updateTargetSize "MainWindow" w h+      =<< updateTransforms [("CameraNode1", lookat (Vec4 x y z 0) (Vec4 x y z 0) (Vec4 0 1 0 0))] world+    w <- renderWorld (realToFrac time) "MainWindow" (flattenScene $ wrScene w') w'+    worldSink w+    swapBuffers