package HumanoidAnimation.Medical;

import org.web3d.x3d.jsail.Core.*;
import org.web3d.x3d.jsail.EnvironmentalEffects.*;
import org.web3d.x3d.jsail.fields.*;
import org.web3d.x3d.jsail.Geometry3D.*;
import org.web3d.x3d.jsail.Grouping.*;
import org.web3d.x3d.jsail.Navigation.*;
import org.web3d.x3d.jsail.Rendering.*;
import org.web3d.x3d.jsail.Shape.*;

// Javadoc metadata annotations follow, see below for X3DJSAIL Java source code.
/**
 * <p> Human skeleton reference example providing all bones, with no polygonal normals precomputed or embedded. Scaled to normal size. </p>
 <p> Related links:  source SkeletonCompleteNoNormals.java, <a href="https://www.web3d.org/x3d/content/examples/X3dResources.html" target="_blank">X3D Resources</a>, <a href="https://www.web3d.org/x3d/content/examples/X3dSceneAuthoringHints.html" target="_blank">X3D Scene Authoring Hints</a>, and <a href="https://www.web3d.org/x3d/content/X3dTooltips.html" target="_blank">X3D Tooltips</a>. </p>
	<table style="color:black; border:0px solid; border-spacing:10px 0px;">
        <caption>Scene Meta Information</caption>
		<tr style="background-color:silver; border-color:silver;">
			<td style="text-align:center; padding:10px 0px;"><i>meta tags</i></td>
			<td style="text-align:left;   padding:10px 0px;">HumanoidAnimation.Medical.SkeletonCompleteNoNormals&nbsp; Document Metadata </td>
		</tr>

		<tr>
			<td style="text-align:right; vertical-align: text-top;"> <i> title </i> </td>
			<td> <a href="https://www.web3d.org/x3d/content/examples/HumanoidAnimation/Medical/SkeletonCompleteNoNormals.x3d">SkeletonCompleteNoNormals.x3d</a> </td>
		</tr>
		<tr>
			<td style="text-align:right; vertical-align: text-top;"> <i> description </i> </td>
			<td> Human skeleton reference example providing all bones, with no polygonal normals precomputed or embedded. Scaled to normal size. </td>
		</tr>
		<tr>
			<td style="text-align:right; vertical-align: text-top;"> <i> created </i> </td>
			<td> TODO </td>
		</tr>
		<tr>
			<td style="text-align:right; vertical-align: text-top;"> <i> modified </i> </td>
			<td> 2 March 2026 </td>
		</tr>
		<tr style="color:burntorange">
			<td style="text-align:right; vertical-align: text-top;"> <i> warning </i> </td>
			<td> This model has no HAnim nodes, rather it is purely geometry </td>
		</tr>
		<tr>
			<td style="text-align:right; vertical-align: text-top;"> <i> creator </i> </td>
			<td> Damon Hernandez, Joe D. Williams, Don Brutzman </td>
		</tr>
		<tr>
			<td style="text-align:right; vertical-align: text-top;"> <i> reference </i> </td>
			<td> <a href="https://www.web3d.org/x3d/content/examples/HumanoidAnimation/Medical/SkeletonCompleteNormals.x3d">SkeletonCompleteNormals.x3d</a> </td>
		</tr>
		<tr>
			<td style="text-align:right; vertical-align: text-top;"> <i> generator </i> </td>
			<td> UltraEdit, <a href="http://www.ultraedit.com" target="_blank">http://www.ultraedit.com</a> </td>
		</tr>
		<tr>
			<td style="text-align:right; vertical-align: text-top;"> <i> generator </i> </td>
			<td> X3D-Edit 4.0, <a href="https://www.web3d.org/x3d/tools/X3D-Edit" target="_blank">https://www.web3d.org/x3d/tools/X3D-Edit</a> </td>
		</tr>
		<tr>
			<td style="text-align:right; vertical-align: text-top;"> <i> identifier </i> </td>
			<td> <a href="https://www.web3d.org/x3d/content/examples/HumanoidAnimation/Medical/SkeletonCompleteNoNormals.x3d" target="_blank">https://www.web3d.org/x3d/content/examples/HumanoidAnimation/Medical/SkeletonCompleteNoNormals.x3d</a> </td>
		</tr>
		<tr>
			<td style="text-align:right; vertical-align: text-top;"> <i> license </i> </td>
			<td> <a href="https://www.web3d.org/x3d/content/examples/HumanoidAnimation/Medical/../license.html">../license.html</a> </td>
		</tr>
		<tr style="background-color:silver; border-color:silver;">
			<td style="text-align:center;" colspan="2">  &nbsp; </td>
		</tr>
	</table>

	<p>
		This program uses the
		<a href="https://www.web3d.org/specifications/java/X3DJSAIL.html" target="_blank">X3D Java Scene Access Interface Library (X3DJSAIL)</a>.
		It has been produced using the 
		<a href="https://www.web3d.org/x3d/stylesheets/X3dToJava.xslt" target="_blank">X3dToJava.xslt</a>
		stylesheet
	       (<a href="https://sourceforge.net/p/x3d/code/HEAD/tree/www.web3d.org/x3d/stylesheets/X3dToJava.xslt" target="_blank">version control</a>)
                which is used to create Java source code from an original <code>.x3d</code> model.
	</p>

	* @author Damon Hernandez, Joe D. Williams, Don Brutzman
 */

public class SkeletonCompleteNoNormals
{
	/** Default constructor to create this object. */
	public SkeletonCompleteNoNormals ()
	{
	  initialize();
	}

	/** Create and initialize the X3D model for this object. */
	public final void initialize()
	{
            try { // catch-all
  x3dModel = new X3D().setProfile(X3D.PROFILE_IMMERSIVE).setVersion(X3D.VERSION_3_3)
  .setHead(new head()
    .addMeta(new meta().setName(meta.NAME_TITLE      ).setContent("SkeletonCompleteNoNormals.x3d"))
    .addMeta(new meta().setName(meta.NAME_DESCRIPTION).setContent("Human skeleton reference example providing all bones, with no polygonal normals precomputed or embedded. Scaled to normal size."))
    .addMeta(new meta().setName(meta.NAME_CREATED    ).setContent(meta.NAME_TODO       ))
    .addMeta(new meta().setName(meta.NAME_MODIFIED   ).setContent("2 March 2026"))
    .addMeta(new meta().setName(meta.NAME_WARNING    ).setContent("This model has no HAnim nodes, rather it is purely geometry"))
    .addMeta(new meta().setName(meta.NAME_CREATOR    ).setContent("Damon Hernandez, Joe D. Williams, Don Brutzman"))
    .addMeta(new meta().setName(meta.NAME_REFERENCE  ).setContent("SkeletonCompleteNormals.x3d"))
    .addMeta(new meta().setName(meta.NAME_GENERATOR  ).setContent("UltraEdit, http://www.ultraedit.com"))
    .addMeta(new meta().setName(meta.NAME_GENERATOR  ).setContent("X3D-Edit 4.0, https://www.web3d.org/x3d/tools/X3D-Edit"))
    .addMeta(new meta().setName(meta.NAME_IDENTIFIER ).setContent("https://www.web3d.org/x3d/content/examples/HumanoidAnimation/Medical/SkeletonCompleteNoNormals.x3d"))
    .addMeta(new meta().setName(meta.NAME_LICENSE    ).setContent("../license.html")))
  .setScene(new Scene()
    .addChild(new WorldInfo().setTitle("SkeletonCompleteNoNormals.x3d"))
    .addChild(new NavigationInfo())
    .addChild(new Background("Background1").setGroundColor(new MFColor(new double[] {0.0,0.0,0.0})).setSkyColor(new MFColor(new double[] {0.6431,0.6431,0.6431})))
    .addComments(" Translation to move rotated and scaled shape to std hanim 0 0 0 ")
    .addChild(new Transform()
      .addComments(" rotations and scale to std hanim 0 0 0 origin, facing +z, and humanoid size ")
      .addChild(new Transform().setScale(0.029,0.029,0.029)
        .addChild(new Transform()
          .addChild(new Transform()
            .addChild(new Viewpoint("Intro").setDescription("Intro").setFieldOfView(0.785).setPosition(0.3578,30.1721,74.9377))
            .addChild(new Viewpoint("Right").setDescription("Right").setFieldOfView(0.785).setOrientation(0.0,1.0,0.0,1.571).setPosition(77.9089,29.8569,-2.5227))
            .addChild(new Viewpoint("Left").setDescription("Left").setFieldOfView(0.785).setOrientation(0.0,-1.0,0.0,1.571).setPosition(-75.9713,30.7287,-0.4799))
            .addChild(new Viewpoint("Skull").setDescription("Skull").setFieldOfView(0.785).setPosition(0.0899,54.9537,19.0408))
            .addChild(new Viewpoint("Chest").setDescription("Chest").setFieldOfView(0.785).setPosition(-0.1951,43.5537,19.0408))
            .addChild(new Viewpoint("Hips").setDescription("Hips").setFieldOfView(0.785).setPosition(0.2249,32.4387,13.5197))
            .addChild(new Viewpoint("Feet").setDescription("Feet").setFieldOfView(0.785).setOrientation(-1.0,0.0,0.0,0.408).setPosition(-0.2854,6.1198,11.7851))
            .addChild(new Shape("atlas")
              .setAppearance(new Appearance()
                .setMaterial(new Material().setAmbientIntensity(0.098).setDiffuseColor(1.0,0.9765,0.8667).setShininess(0.05).setSpecularColor(0.349,0.349,0.349)))
              .setGeometry(new IndexedFaceSet("atlas_Geo").setDEF("atlas_Geo").setCreaseAngle(1.571).setCoordIndex(getatlas_Geo_8_25_coordIndex())
                .setCoord(new Coordinate("atlas_Coord").setPoint(getatlas_Coord_9_25_point()))))
            .addChild(new Shape("axis")
              .setAppearance(new Appearance()
                .setMaterial(new Material().setAmbientIntensity(0.098).setDiffuseColor(1.0,0.9765,0.8667).setShininess(0.05).setSpecularColor(0.349,0.349,0.349)))
              .setGeometry(new IndexedFaceSet("axis_Geo").setDEF("axis_Geo").setCreaseAngle(1.571).setCoordIndex(getaxis_Geo_8_30_coordIndex())
                .setCoord(new Coordinate("axis_Coord").setPoint(getaxis_Coord_9_30_point()))))
            .addChild(new Shape("c2disc")
              .addComments(" skullbase ")
              .setAppearance(new Appearance()
                .setMaterial(new Material().setAmbientIntensity(0.965).setDiffuseColor(0.9843,0.949,0.7843).setShininess(0.05).setSpecularColor(0.9647,0.949,0.9098)))
              .setGeometry(new IndexedFaceSet("c2disc_Geo").setDEF("c2disc_Geo").setCreaseAngle(1.571).setCoordIndex(getc2disc_Geo_8_35_coordIndex())
                .setCoord(new Coordinate("c2disc_Coord").setPoint(getc2disc_Coord_9_35_point()))))
            .addChild(new Shape("c3")
              .setAppearance(new Appearance()
                .setMaterial(new Material().setAmbientIntensity(0.965).setDiffuseColor(1.0,0.9765,0.8667).setShininess(0.05).setSpecularColor(0.349,0.349,0.349)))
              .setGeometry(new IndexedFaceSet("c3_Geo").setDEF("c3_Geo").setCreaseAngle(1.571).setCoordIndex(getc3_Geo_8_40_coordIndex())
                .setCoord(new Coordinate("c3_Coord").setPoint(getc3_Coord_9_40_point()))))
            .addChild(new Shape("c3disc")
              .setAppearance(new Appearance()
                .setMaterial(new Material().setAmbientIntensity(0.965).setDiffuseColor(0.9843,0.949,0.7843).setShininess(0.05).setSpecularColor(0.9647,0.949,0.9098)))
              .setGeometry(new IndexedFaceSet("c3disc_Geo").setDEF("c3disc_Geo").setCreaseAngle(1.571).setCoordIndex(getc3disc_Geo_8_45_coordIndex())
                .setCoord(new Coordinate("c3disc_Coord").setPoint(getc3disc_Coord_9_45_point()))))
            .addChild(new Shape("c4")
              .setAppearance(new Appearance()
                .setMaterial(new Material().setAmbientIntensity(0.965).setDiffuseColor(1.0,0.9765,0.8667).setShininess(0.05).setSpecularColor(0.349,0.349,0.349)))
              .setGeometry(new IndexedFaceSet("c4_Geo").setDEF("c4_Geo").setCreaseAngle(1.571).setCoordIndex(getc4_Geo_8_50_coordIndex())
                .setCoord(new Coordinate("c4_Coord").setPoint(getc4_Coord_9_50_point()))))
            .addChild(new Shape("c4disc")
              .setAppearance(new Appearance()
                .setMaterial(new Material().setAmbientIntensity(0.965).setDiffuseColor(0.9843,0.949,0.7843).setShininess(0.05).setSpecularColor(0.9647,0.949,0.9098)))
              .setGeometry(new IndexedFaceSet("c4disc_Geo").setDEF("c4disc_Geo").setCreaseAngle(1.571).setCoordIndex(getc4disc_Geo_8_55_coordIndex())
                .setCoord(new Coordinate("c4disc_Coord").setPoint(getc4disc_Coord_9_55_point()))))
            .addChild(new Shape("c5")
              .setAppearance(new Appearance()
                .setMaterial(new Material().setAmbientIntensity(0.965).setDiffuseColor(1.0,0.9765,0.8667).setShininess(0.05).setSpecularColor(0.349,0.349,0.349)))
              .setGeometry(new IndexedFaceSet("c5_Geo").setDEF("c5_Geo").setCreaseAngle(1.571).setCoordIndex(getc5_Geo_8_60_coordIndex())
                .setCoord(new Coordinate("c5_Coord").setPoint(getc5_Coord_9_60_point()))))
            .addChild(new Shape("c5disc")
              .setAppearance(new Appearance()
                .setMaterial(new Material().setAmbientIntensity(0.965).setDiffuseColor(0.9843,0.949,0.7843).setShininess(0.05).setSpecularColor(0.9647,0.949,0.9098)))
              .setGeometry(new IndexedFaceSet("c5disc_Geo").setDEF("c5disc_Geo").setCreaseAngle(1.571).setCoordIndex(getc5disc_Geo_8_65_coordIndex())
                .setCoord(new Coordinate("c5disc_Coord").setPoint(getc5disc_Coord_9_65_point()))))
            .addChild(new Shape("c6")
              .setAppearance(new Appearance()
                .setMaterial(new Material().setAmbientIntensity(0.965).setDiffuseColor(1.0,0.9765,0.8667).setShininess(0.05).setSpecularColor(0.349,0.349,0.349)))
              .setGeometry(new IndexedFaceSet("c6_Geo").setDEF("c6_Geo").setCreaseAngle(1.571).setCoordIndex(getc6_Geo_8_70_coordIndex())
                .setCoord(new Coordinate("c6_Coord").setPoint(getc6_Coord_9_70_point()))))
            .addChild(new Shape("c6disc")
              .setAppearance(new Appearance()
                .setMaterial(new Material().setAmbientIntensity(0.965).setDiffuseColor(0.9843,0.949,0.7843).setShininess(0.05).setSpecularColor(0.9647,0.949,0.9098)))
              .setGeometry(new IndexedFaceSet("c6disc_Geo").setDEF("c6disc_Geo").setCreaseAngle(1.571).setCoordIndex(getc6disc_Geo_8_75_coordIndex())
                .setCoord(new Coordinate("c6disc_Coord").setPoint(getc6disc_Coord_9_75_point()))))
            .addChild(new Shape("c7")
              .setAppearance(new Appearance()
                .setMaterial(new Material().setAmbientIntensity(0.965).setDiffuseColor(1.0,0.9765,0.8667).setShininess(0.05).setSpecularColor(0.349,0.349,0.349)))
              .setGeometry(new IndexedFaceSet("c7_Geo").setDEF("c7_Geo").setCreaseAngle(1.571).setCoordIndex(getc7_Geo_8_80_coordIndex())
                .setCoord(new Coordinate("c7_Coord").setPoint(getc7_Coord_9_80_point()))))
            .addChild(new Shape("c7disc")
              .setAppearance(new Appearance()
                .setMaterial(new Material().setAmbientIntensity(0.965).setDiffuseColor(0.9843,0.949,0.7843).setShininess(0.05).setSpecularColor(0.9647,0.949,0.9098)))
              .setGeometry(new IndexedFaceSet("c7disc_Geo").setDEF("c7disc_Geo").setCreaseAngle(1.571).setCoordIndex(getc7disc_Geo_8_85_coordIndex())
                .setCoord(new Coordinate("c7disc_Coord").setPoint(getc7disc_Coord_9_85_point()))))
            .addChild(new Shape("coccyx")
              .setAppearance(new Appearance()
                .setMaterial(new Material().setAmbientIntensity(0.098).setDiffuseColor(1.0,0.9765,0.8667).setShininess(0.05).setSpecularColor(0.349,0.349,0.349)))
              .setGeometry(new IndexedFaceSet("coccyx_Geo").setDEF("coccyx_Geo").setCreaseAngle(1.571).setCoordIndex(getcoccyx_Geo_8_90_coordIndex())
                .setCoord(new Coordinate("coccyx_Coord").setPoint(getcoccyx_Coord_9_90_point()))))
            .addChild(new Shape("ethmoid")
              .setAppearance(new Appearance()
                .setMaterial(new Material().setAmbientIntensity(0.098).setDiffuseColor(1.0,0.9765,0.8667).setShininess(0.05).setSpecularColor(0.349,0.349,0.349)))
              .setGeometry(new IndexedFaceSet("ethmoid_Geo").setDEF("ethmoid_Geo").setCreaseAngle(1.571).setCoordIndex(getethmoid_Geo_8_95_coordIndex())
                .setCoord(new Coordinate("ethmoid_Coord").setPoint(getethmoid_Coord_9_95_point()))))
            .addChild(new Shape("ethmoid2")
              .setAppearance(new Appearance()
                .setMaterial(new Material().setAmbientIntensity(0.098).setDiffuseColor(1.0,0.9765,0.8667).setShininess(0.05).setSpecularColor(0.349,0.349,0.349)))
              .setGeometry(new IndexedFaceSet("ethmoid2_Geo").setDEF("ethmoid2_Geo").setCreaseAngle(1.571).setCoordIndex(getethmoid2_Geo_8_100_coordIndex())
                .setCoord(new Coordinate("ethmoid2_Coord").setPoint(getethmoid2_Coord_9_100_point()))))
            .addChild(new Shape("frontal")
              .setAppearance(new Appearance()
                .setMaterial(new Material().setAmbientIntensity(0.098).setDiffuseColor(1.0,0.9765,0.8667).setShininess(0.05).setSpecularColor(0.349,0.349,0.349)))
              .setGeometry(new IndexedFaceSet("frontal_Geo").setDEF("frontal_Geo").setCreaseAngle(1.571).setCoordIndex(getfrontal_Geo_8_105_coordIndex())
                .setCoord(new Coordinate("frontal_Coord").setPoint(getfrontal_Coord_9_105_point()))))
            .addChild(new Shape("inconl")
              .setAppearance(new Appearance()
                .setMaterial(new Material().setAmbientIntensity(0.965).setDiffuseColor(1.0,0.9765,0.8667).setShininess(0.05).setSpecularColor(0.349,0.349,0.349)))
              .setGeometry(new IndexedFaceSet("inconl_Geo").setDEF("inconl_Geo").setCreaseAngle(1.571).setCoordIndex(getinconl_Geo_8_110_coordIndex())
                .setCoord(new Coordinate("inconl_Coord").setPoint(getinconl_Coord_9_110_point()))))
            .addChild(new Shape("inconr")
              .setAppearance(new Appearance()
                .setMaterial(new Material().setAmbientIntensity(0.098).setDiffuseColor(1.0,0.9765,0.8667).setShininess(0.05).setSpecularColor(0.349,0.349,0.349)))
              .setGeometry(new IndexedFaceSet("inconr_Geo").setDEF("inconr_Geo").setCreaseAngle(1.571).setCoordIndex(getinconr_Geo_8_115_coordIndex())
                .setCoord(new Coordinate("inconr_Coord").setPoint(getinconr_Coord_9_115_point()))))
            .addChild(new Shape("l1disk")
              .setAppearance(new Appearance()
                .setMaterial(new Material().setAmbientIntensity(0.965).setDiffuseColor(0.9843,0.949,0.7843).setShininess(0.05).setSpecularColor(0.9647,0.949,0.9098)))
              .setGeometry(new IndexedFaceSet("l1disk_Geo").setDEF("l1disk_Geo").setCreaseAngle(1.571).setCoordIndex(getl1disk_Geo_8_120_coordIndex())
                .setCoord(new Coordinate("l1disk_Coord").setPoint(getl1disk_Coord_9_120_point()))))
            .addChild(new Shape("l2")
              .setAppearance(new Appearance()
                .setMaterial(new Material().setAmbientIntensity(0.965).setDiffuseColor(1.0,0.9765,0.8667).setShininess(0.05).setSpecularColor(0.349,0.349,0.349)))
              .setGeometry(new IndexedFaceSet("l2_Geo").setDEF("l2_Geo").setCreaseAngle(1.571).setCoordIndex(getl2_Geo_8_125_coordIndex())
                .setCoord(new Coordinate("l2_Coord").setPoint(getl2_Coord_9_125_point()))))
            .addChild(new Shape("l2disk")
              .setAppearance(new Appearance()
                .setMaterial(new Material().setAmbientIntensity(0.965).setDiffuseColor(0.9843,0.949,0.7843).setShininess(0.05).setSpecularColor(0.9647,0.949,0.9098)))
              .setGeometry(new IndexedFaceSet("l2disk_Geo").setDEF("l2disk_Geo").setCreaseAngle(1.571).setCoordIndex(getl2disk_Geo_8_130_coordIndex())
                .setCoord(new Coordinate("l2disk_Coord").setPoint(getl2disk_Coord_9_130_point()))))
            .addChild(new Shape("l3")
              .setAppearance(new Appearance()
                .setMaterial(new Material().setAmbientIntensity(0.965).setDiffuseColor(1.0,0.9765,0.8667).setShininess(0.05).setSpecularColor(0.349,0.349,0.349)))
              .setGeometry(new IndexedFaceSet("l3_Geo").setDEF("l3_Geo").setCreaseAngle(1.571).setCoordIndex(getl3_Geo_8_135_coordIndex())
                .setCoord(new Coordinate("l3_Coord").setPoint(getl3_Coord_9_135_point()))))
            .addChild(new Shape("l3disk")
              .setAppearance(new Appearance()
                .setMaterial(new Material().setAmbientIntensity(0.965).setDiffuseColor(0.9843,0.949,0.7843).setShininess(0.05).setSpecularColor(0.9647,0.949,0.9098)))
              .setGeometry(new IndexedFaceSet("l3disk_Geo").setDEF("l3disk_Geo").setCreaseAngle(1.571).setCoordIndex(getl3disk_Geo_8_140_coordIndex())
                .setCoord(new Coordinate("l3disk_Coord").setPoint(getl3disk_Coord_9_140_point()))))
            .addChild(new Shape("l4")
              .setAppearance(new Appearance()
                .setMaterial(new Material().setAmbientIntensity(0.965).setDiffuseColor(1.0,0.9765,0.8667).setShininess(0.05).setSpecularColor(0.349,0.349,0.349)))
              .setGeometry(new IndexedFaceSet("l4_Geo").setDEF("l4_Geo").setCreaseAngle(1.571).setCoordIndex(getl4_Geo_8_145_coordIndex())
                .setCoord(new Coordinate("l4_Coord").setPoint(getl4_Coord_9_145_point()))))
            .addChild(new Shape("l4disk")
              .setAppearance(new Appearance()
                .setMaterial(new Material().setAmbientIntensity(0.965).setDiffuseColor(0.9843,0.949,0.7843).setShininess(0.05).setSpecularColor(0.9647,0.949,0.9098)))
              .setGeometry(new IndexedFaceSet("l4disk_Geo").setDEF("l4disk_Geo").setCreaseAngle(1.571).setCoordIndex(getl4disk_Geo_8_150_coordIndex())
                .setCoord(new Coordinate("l4disk_Coord").setPoint(getl4disk_Coord_9_150_point()))))
            .addChild(new Shape("l5")
              .setAppearance(new Appearance()
                .setMaterial(new Material().setAmbientIntensity(0.965).setDiffuseColor(1.0,0.9765,0.8667).setShininess(0.05).setSpecularColor(0.349,0.349,0.349)))
              .setGeometry(new IndexedFaceSet("l5_Geo").setDEF("l5_Geo").setCreaseAngle(1.571).setCoordIndex(getl5_Geo_8_155_coordIndex())
                .setCoord(new Coordinate("l5_Coord").setPoint(getl5_Coord_9_155_point()))))
            .addChild(new Shape("l5disc")
              .setAppearance(new Appearance()
                .setMaterial(new Material().setAmbientIntensity(0.965).setDiffuseColor(0.9843,0.949,0.7843).setShininess(0.05).setSpecularColor(0.9647,0.949,0.9098)))
              .setGeometry(new IndexedFaceSet("l5disc_Geo").setDEF("l5disc_Geo").setCreaseAngle(1.571).setCoordIndex(getl5disc_Geo_8_160_coordIndex())
                .setCoord(new Coordinate("l5disc_Coord").setPoint(getl5disc_Coord_9_160_point()))))
            .addChild(new Shape("lacl")
              .setAppearance(new Appearance()
                .setMaterial(new Material().setAmbientIntensity(0.965).setDiffuseColor(1.0,0.9765,0.8667).setShininess(0.05).setSpecularColor(0.349,0.349,0.349)))
              .setGeometry(new IndexedFaceSet("lacl_Geo").setDEF("lacl_Geo").setCreaseAngle(1.571).setCoordIndex(getlacl_Geo_8_165_coordIndex())
                .setCoord(new Coordinate("lacl_Coord").setPoint(getlacl_Coord_9_165_point()))))
            .addChild(new Shape("lacr")
              .setAppearance(new Appearance()
                .setMaterial(new Material().setAmbientIntensity(0.965).setDiffuseColor(1.0,0.9765,0.8667).setShininess(0.05).setSpecularColor(0.349,0.349,0.349)))
              .setGeometry(new IndexedFaceSet("lacr_Geo").setDEF("lacr_Geo").setCreaseAngle(1.571).setCoordIndex(getlacr_Geo_8_170_coordIndex())
                .setCoord(new Coordinate("lacr_Coord").setPoint(getlacr_Coord_9_170_point()))))
            .addChild(new Shape("lcalc")
              .setAppearance(new Appearance()
                .setMaterial(new Material().setAmbientIntensity(0.965).setDiffuseColor(1.0,0.9765,0.8667).setShininess(0.05).setSpecularColor(0.349,0.349,0.349)))
              .setGeometry(new IndexedFaceSet("lcalc_Geo").setDEF("lcalc_Geo").setCreaseAngle(1.571).setCoordIndex(getlcalc_Geo_8_175_coordIndex())
                .setCoord(new Coordinate("lcalc_Coord").setPoint(getlcalc_Coord_9_175_point()))))
            .addChild(new Shape("lcaninec")
              .setAppearance(new Appearance()
                .setMaterial(new Material().setAmbientIntensity(0.4).setDiffuseColor(1.0,0.9843,0.9843).setShininess(0.05)))
              .setGeometry(new IndexedFaceSet("lcaninec_Geo").setDEF("lcaninec_Geo").setCreaseAngle(1.571).setCoordIndex(getlcaninec_Geo_8_180_coordIndex())
                .setCoord(new Coordinate("lcaninec_Coord").setPoint(getlcaninec_Coord_9_180_point()))))
            .addChild(new Shape("lcaniner")
              .setAppearance(new Appearance()
                .setMaterial(new Material().setAmbientIntensity(0.4).setDiffuseColor(1.0,0.9843,0.9843).setShininess(0.05)))
              .setGeometry(new IndexedFaceSet("lcaniner_Geo").setDEF("lcaniner_Geo").setCreaseAngle(1.571).setCoordIndex(getlcaniner_Geo_8_185_coordIndex())
                .setCoord(new Coordinate("lcaniner_Coord").setPoint(getlcaniner_Coord_9_185_point()))))
            .addChild(new Shape("lcaninlc")
              .setAppearance(new Appearance()
                .setMaterial(new Material().setAmbientIntensity(0.4).setDiffuseColor(1.0,0.9843,0.9843).setShininess(0.05)))
              .setGeometry(new IndexedFaceSet("lcaninlc_Geo").setDEF("lcaninlc_Geo").setCreaseAngle(1.571).setCoordIndex(getlcaninlc_Geo_8_190_coordIndex())
                .setCoord(new Coordinate("lcaninlc_Coord").setPoint(getlcaninlc_Coord_9_190_point()))))
            .addChild(new Shape("lcaninlr")
              .setAppearance(new Appearance()
                .setMaterial(new Material().setAmbientIntensity(0.4).setDiffuseColor(1.0,0.9843,0.9843).setShininess(0.05)))
              .setGeometry(new IndexedFaceSet("lcaninlr_Geo").setDEF("lcaninlr_Geo").setCreaseAngle(1.571).setCoordIndex(getlcaninlr_Geo_8_195_coordIndex())
                .setCoord(new Coordinate("lcaninlr_Coord").setPoint(getlcaninlr_Coord_9_195_point()))))
            .addChild(new Shape("lcaptate")
              .setAppearance(new Appearance()
                .setMaterial(new Material().setAmbientIntensity(0.965).setDiffuseColor(1.0,0.9765,0.8667).setShininess(0.05).setSpecularColor(0.349,0.349,0.349)))
              .setGeometry(new IndexedFaceSet("lcaptate_Geo").setDEF("lcaptate_Geo").setCreaseAngle(1.571).setCoordIndex(getlcaptate_Geo_8_200_coordIndex())
                .setCoord(new Coordinate("lcaptate_Coord").setPoint(getlcaptate_Coord_9_200_point()))))
            .addChild(new Shape("lcartend")
              .setAppearance(new Appearance()
                .setMaterial(new Material().setAmbientIntensity(0.965).setDiffuseColor(0.9843,0.949,0.7843).setShininess(0.05).setSpecularColor(0.9647,0.949,0.9098)))
              .setGeometry(new IndexedFaceSet("lcartend_Geo").setDEF("lcartend_Geo").setCreaseAngle(1.571).setCoordIndex(getlcartend_Geo_8_205_coordIndex())
                .setCoord(new Coordinate("lcartend_Coord").setPoint(getlcartend_Coord_9_205_point()))))
            .addChild(new Shape("lccart")
              .setAppearance(new Appearance()
                .setMaterial(new Material().setAmbientIntensity(0.965).setDiffuseColor(0.9843,0.949,0.7843).setShininess(0.05).setSpecularColor(0.9647,0.949,0.9098)))
              .setGeometry(new IndexedFaceSet("lccart_Geo").setDEF("lccart_Geo").setCreaseAngle(1.571).setCoordIndex(getlccart_Geo_8_210_coordIndex())
                .setCoord(new Coordinate("lccart_Coord").setPoint(getlccart_Coord_9_210_point()))))
            .addChild(new Shape("lccart2")
              .setAppearance(new Appearance()
                .setMaterial(new Material().setAmbientIntensity(0.965).setDiffuseColor(0.9843,0.949,0.7843).setShininess(0.05).setSpecularColor(0.9647,0.949,0.9098)))
              .setGeometry(new IndexedFaceSet("lccart2_Geo").setDEF("lccart2_Geo").setCreaseAngle(1.571).setCoordIndex(getlccart2_Geo_8_215_coordIndex())
                .setCoord(new Coordinate("lccart2_Coord").setPoint(getlccart2_Coord_9_215_point()))))
            .addChild(new Shape("lcenincc")
              .setAppearance(new Appearance()
                .setMaterial(new Material().setAmbientIntensity(0.4).setDiffuseColor(1.0,0.9843,0.9843).setShininess(0.05)))
              .setGeometry(new IndexedFaceSet("lcenincc_Geo").setDEF("lcenincc_Geo").setCreaseAngle(1.571).setCoordIndex(getlcenincc_Geo_8_220_coordIndex())
                .setCoord(new Coordinate("lcenincc_Coord").setPoint(getlcenincc_Coord_9_220_point()))))
            .addChild(new Shape("lcenincr")
              .setAppearance(new Appearance()
                .setMaterial(new Material().setAmbientIntensity(0.4).setDiffuseColor(1.0,0.9843,0.9843).setShininess(0.05)))
              .setGeometry(new IndexedFaceSet("lcenincr_Geo").setDEF("lcenincr_Geo").setCreaseAngle(1.571).setCoordIndex(getlcenincr_Geo_8_225_coordIndex())
                .setCoord(new Coordinate("lcenincr_Coord").setPoint(getlcenincr_Coord_9_225_point()))))
            .addChild(new Shape("lceninlc")
              .setAppearance(new Appearance()
                .setMaterial(new Material().setAmbientIntensity(0.4).setDiffuseColor(1.0,0.9843,0.9843).setShininess(0.05)))
              .setGeometry(new IndexedFaceSet("lceninlc_Geo").setDEF("lceninlc_Geo").setCreaseAngle(1.571).setCoordIndex(getlceninlc_Geo_8_230_coordIndex())
                .setCoord(new Coordinate("lceninlc_Coord").setPoint(getlceninlc_Coord_9_230_point()))))
            .addChild(new Shape("lceninlr")
              .setAppearance(new Appearance()
                .setMaterial(new Material().setAmbientIntensity(0.4).setDiffuseColor(1.0,0.9843,0.9843).setShininess(0.05)))
              .setGeometry(new IndexedFaceSet("lceninlr_Geo").setDEF("lceninlr_Geo").setCreaseAngle(1.571).setCoordIndex(getlceninlr_Geo_8_235_coordIndex())
                .setCoord(new Coordinate("lceninlr_Coord").setPoint(getlceninlr_Coord_9_235_point()))))
            .addChild(new Shape("lclavcle")
              .setAppearance(new Appearance()
                .setMaterial(new Material().setAmbientIntensity(0.965).setDiffuseColor(1.0,0.9765,0.8667).setShininess(0.05).setSpecularColor(0.349,0.349,0.349)))
              .setGeometry(new IndexedFaceSet("lclavcle_Geo").setDEF("lclavcle_Geo").setCreaseAngle(1.571).setCoordIndex(getlclavcle_Geo_8_240_coordIndex())
                .setCoord(new Coordinate("lclavcle_Coord").setPoint(getlclavcle_Coord_9_240_point()))))
            .addChild(new Shape("lcoscart")
              .setAppearance(new Appearance()
                .setMaterial(new Material().setAmbientIntensity(0.965).setDiffuseColor(0.9843,0.949,0.7843).setShininess(0.05).setSpecularColor(0.9647,0.949,0.9098)))
              .setGeometry(new IndexedFaceSet("lcoscart_Geo").setDEF("lcoscart_Geo").setCreaseAngle(1.571).setCoordIndex(getlcoscart_Geo_8_245_coordIndex())
                .setCoord(new Coordinate("lcoscart_Coord").setPoint(getlcoscart_Coord_9_245_point()))))
            .addChild(new Shape("lcuboid")
              .setAppearance(new Appearance()
                .setMaterial(new Material().setAmbientIntensity(0.98).setDiffuseColor(1.0,0.9765,0.8667).setShininess(0.05).setSpecularColor(0.349,0.349,0.349)))
              .setGeometry(new IndexedFaceSet("lcuboid_Geo").setDEF("lcuboid_Geo").setCreaseAngle(1.571).setCoordIndex(getlcuboid_Geo_8_250_coordIndex())
                .setCoord(new Coordinate("lcuboid_Coord").setPoint(getlcuboid_Coord_9_250_point()))))
            .addChild(new Shape("ldphal")
              .setAppearance(new Appearance()
                .setMaterial(new Material().setAmbientIntensity(0.965).setDiffuseColor(1.0,0.9765,0.8667).setShininess(0.05).setSpecularColor(0.349,0.349,0.349)))
              .setGeometry(new IndexedFaceSet("ldphal_Geo").setDEF("ldphal_Geo").setCreaseAngle(1.571).setCoordIndex(getldphal_Geo_8_255_coordIndex())
                .setCoord(new Coordinate("ldphal_Coord").setPoint(getldphal_Coord_9_255_point()))))
            .addChild(new Shape("ldphal2")
              .setAppearance(new Appearance()
                .setMaterial(new Material().setAmbientIntensity(0.965).setDiffuseColor(1.0,0.9765,0.8667).setShininess(0.05).setSpecularColor(0.349,0.349,0.349)))
              .setGeometry(new IndexedFaceSet("ldphal2_Geo").setDEF("ldphal2_Geo").setCreaseAngle(1.571).setCoordIndex(getldphal2_Geo_8_260_coordIndex())
                .setCoord(new Coordinate("ldphal2_Coord").setPoint(getldphal2_Coord_9_260_point()))))
            .addChild(new Shape("ldphal3")
              .setAppearance(new Appearance()
                .setMaterial(new Material().setAmbientIntensity(0.98).setDiffuseColor(1.0,0.9765,0.8667).setShininess(0.05).setSpecularColor(0.349,0.349,0.349)))
              .setGeometry(new IndexedFaceSet("ldphal3_Geo").setDEF("ldphal3_Geo").setCreaseAngle(1.571).setCoordIndex(getldphal3_Geo_8_265_coordIndex())
                .setCoord(new Coordinate("ldphal3_Coord").setPoint(getldphal3_Coord_9_265_point()))))
            .addChild(new Shape("ldphal4")
              .setAppearance(new Appearance()
                .setMaterial(new Material().setAmbientIntensity(0.965).setDiffuseColor(1.0,0.9765,0.8667).setShininess(0.05).setSpecularColor(0.349,0.349,0.349)))
              .setGeometry(new IndexedFaceSet("ldphal4_Geo").setDEF("ldphal4_Geo").setCreaseAngle(1.571).setCoordIndex(getldphal4_Geo_8_270_coordIndex())
                .setCoord(new Coordinate("ldphal4_Coord").setPoint(getldphal4_Coord_9_270_point()))))
            .addChild(new Shape("ldphal5")
              .setAppearance(new Appearance()
                .setMaterial(new Material().setAmbientIntensity(0.965).setDiffuseColor(1.0,0.9765,0.8667).setShininess(0.05).setSpecularColor(0.349,0.349,0.349)))
              .setGeometry(new IndexedFaceSet("ldphal5_Geo").setDEF("ldphal5_Geo").setCreaseAngle(1.571).setCoordIndex(getldphal5_Geo_8_275_coordIndex())
                .setCoord(new Coordinate("ldphal5_Coord").setPoint(getldphal5_Coord_9_275_point()))))
            .addChild(new Shape("lfdphal")
              .setAppearance(new Appearance()
                .setMaterial(new Material().setAmbientIntensity(0.965).setDiffuseColor(1.0,0.9765,0.8667).setShininess(0.05).setSpecularColor(0.349,0.349,0.349)))
              .setGeometry(new IndexedFaceSet("lfdphal_Geo").setDEF("lfdphal_Geo").setCreaseAngle(1.571).setCoordIndex(getlfdphal_Geo_8_280_coordIndex())
                .setCoord(new Coordinate("lfdphal_Coord").setPoint(getlfdphal_Coord_9_280_point()))))
            .addChild(new Shape("lfdphal2")
              .setAppearance(new Appearance()
                .setMaterial(new Material().setAmbientIntensity(0.965).setDiffuseColor(1.0,0.9765,0.8667).setShininess(0.05).setSpecularColor(0.349,0.349,0.349)))
              .setGeometry(new IndexedFaceSet("lfdphal2_Geo").setDEF("lfdphal2_Geo").setCreaseAngle(1.571).setCoordIndex(getlfdphal2_Geo_8_285_coordIndex())
                .setCoord(new Coordinate("lfdphal2_Coord").setPoint(getlfdphal2_Coord_9_285_point()))))
            .addChild(new Shape("lfdphal3")
              .setAppearance(new Appearance()
                .setMaterial(new Material().setAmbientIntensity(0.965).setDiffuseColor(1.0,0.9765,0.8667).setShininess(0.05).setSpecularColor(0.349,0.349,0.349)))
              .setGeometry(new IndexedFaceSet("lfdphal3_Geo").setDEF("lfdphal3_Geo").setCreaseAngle(1.571).setCoordIndex(getlfdphal3_Geo_8_290_coordIndex())
                .setCoord(new Coordinate("lfdphal3_Coord").setPoint(getlfdphal3_Coord_9_290_point()))))
            .addChild(new Shape("lfdphal4")
              .setAppearance(new Appearance()
                .setMaterial(new Material().setAmbientIntensity(0.965).setDiffuseColor(1.0,0.9765,0.8667).setShininess(0.05).setSpecularColor(0.349,0.349,0.349)))
              .setGeometry(new IndexedFaceSet("lfdphal4_Geo").setDEF("lfdphal4_Geo").setCreaseAngle(1.571).setCoordIndex(getlfdphal4_Geo_8_295_coordIndex())
                .setCoord(new Coordinate("lfdphal4_Coord").setPoint(getlfdphal4_Coord_9_295_point()))))
            .addChild(new Shape("lfemur")
              .setAppearance(new Appearance()
                .setMaterial(new Material().setAmbientIntensity(0.965).setDiffuseColor(1.0,0.9765,0.8667).setShininess(0.05).setSpecularColor(0.349,0.349,0.349)))
              .setGeometry(new IndexedFaceSet("lfemur_Geo").setDEF("lfemur_Geo").setCreaseAngle(1.571).setCoordIndex(getlfemur_Geo_8_300_coordIndex())
                .setCoord(new Coordinate("lfemur_Coord").setPoint(getlfemur_Coord_9_300_point()))))
            .addChild(new Shape("lfibula")
              .setAppearance(new Appearance()
                .setMaterial(new Material().setAmbientIntensity(0.965).setDiffuseColor(1.0,0.9765,0.8667).setShininess(0.05).setSpecularColor(0.349,0.349,0.349)))
              .setGeometry(new IndexedFaceSet("lfibula_Geo").setDEF("lfibula_Geo").setCreaseAngle(1.571).setCoordIndex(getlfibula_Geo_8_305_coordIndex())
                .setCoord(new Coordinate("lfibula_Coord").setPoint(getlfibula_Coord_9_305_point()))))
            .addChild(new Shape("lfmet")
              .setAppearance(new Appearance()
                .setMaterial(new Material().setAmbientIntensity(0.965).setDiffuseColor(1.0,0.9765,0.8667).setShininess(0.05).setSpecularColor(0.349,0.349,0.349)))
              .setGeometry(new IndexedFaceSet("lfmet_Geo").setDEF("lfmet_Geo").setCreaseAngle(1.571).setCoordIndex(getlfmet_Geo_8_310_coordIndex())
                .setCoord(new Coordinate("lfmet_Coord").setPoint(getlfmet_Coord_9_310_point()))))
            .addChild(new Shape("lfmphal")
              .setAppearance(new Appearance()
                .setMaterial(new Material().setAmbientIntensity(0.965).setDiffuseColor(1.0,0.9765,0.8667).setShininess(0.05).setSpecularColor(0.349,0.349,0.349)))
              .setGeometry(new IndexedFaceSet("lfmphal_Geo").setDEF("lfmphal_Geo").setCreaseAngle(1.571).setCoordIndex(getlfmphal_Geo_8_315_coordIndex())
                .setCoord(new Coordinate("lfmphal_Coord").setPoint(getlfmphal_Coord_9_315_point()))))
            .addChild(new Shape("lfmphal2")
              .setAppearance(new Appearance()
                .setMaterial(new Material().setAmbientIntensity(0.965).setDiffuseColor(1.0,0.9765,0.8667).setShininess(0.05).setSpecularColor(0.349,0.349,0.349)))
              .setGeometry(new IndexedFaceSet("lfmphal2_Geo").setDEF("lfmphal2_Geo").setCreaseAngle(1.571).setCoordIndex(getlfmphal2_Geo_8_320_coordIndex())
                .setCoord(new Coordinate("lfmphal2_Coord").setPoint(getlfmphal2_Coord_9_320_point()))))
            .addChild(new Shape("lfmphal3")
              .setAppearance(new Appearance()
                .setMaterial(new Material().setAmbientIntensity(0.965).setDiffuseColor(1.0,0.9765,0.8667).setShininess(0.05).setSpecularColor(0.349,0.349,0.349)))
              .setGeometry(new IndexedFaceSet("lfmphal3_Geo").setDEF("lfmphal3_Geo").setCreaseAngle(1.571).setCoordIndex(getlfmphal3_Geo_8_325_coordIndex())
                .setCoord(new Coordinate("lfmphal3_Coord").setPoint(getlfmphal3_Coord_9_325_point()))))
            .addChild(new Shape("lfmphal4")
              .setAppearance(new Appearance()
                .setMaterial(new Material().setAmbientIntensity(0.965).setDiffuseColor(1.0,0.9765,0.8667).setShininess(0.05).setSpecularColor(0.349,0.349,0.349)))
              .setGeometry(new IndexedFaceSet("lfmphal4_Geo").setDEF("lfmphal4_Geo").setCreaseAngle(1.571).setCoordIndex(getlfmphal4_Geo_8_330_coordIndex())
                .setCoord(new Coordinate("lfmphal4_Coord").setPoint(getlfmphal4_Coord_9_330_point()))))
            .addChild(new Shape("lfpprox")
              .setAppearance(new Appearance()
                .setMaterial(new Material().setAmbientIntensity(0.965).setDiffuseColor(1.0,0.9765,0.8667).setShininess(0.05).setSpecularColor(0.349,0.349,0.349)))
              .setGeometry(new IndexedFaceSet("lfpprox_Geo").setDEF("lfpprox_Geo").setCreaseAngle(1.571).setCoordIndex(getlfpprox_Geo_8_335_coordIndex())
                .setCoord(new Coordinate("lfpprox_Coord").setPoint(getlfpprox_Coord_9_335_point()))))
            .addChild(new Shape("lfpprox2")
              .setAppearance(new Appearance()
                .setMaterial(new Material().setAmbientIntensity(0.965).setDiffuseColor(1.0,0.9765,0.8667).setShininess(0.05).setSpecularColor(0.349,0.349,0.349)))
              .setGeometry(new IndexedFaceSet("lfpprox2_Geo").setDEF("lfpprox2_Geo").setCreaseAngle(1.571).setCoordIndex(getlfpprox2_Geo_8_340_coordIndex())
                .setCoord(new Coordinate("lfpprox2_Coord").setPoint(getlfpprox2_Coord_9_340_point()))))
            .addChild(new Shape("lfpprox3")
              .setAppearance(new Appearance()
                .setMaterial(new Material().setAmbientIntensity(0.965).setDiffuseColor(1.0,0.9765,0.8667).setShininess(0.05).setSpecularColor(0.349,0.349,0.349)))
              .setGeometry(new IndexedFaceSet("lfpprox3_Geo").setDEF("lfpprox3_Geo").setCreaseAngle(1.571).setCoordIndex(getlfpprox3_Geo_8_345_coordIndex())
                .setCoord(new Coordinate("lfpprox3_Coord").setPoint(getlfpprox3_Coord_9_345_point()))))
            .addChild(new Shape("lfpprox4")
              .setAppearance(new Appearance()
                .setMaterial(new Material().setAmbientIntensity(0.965).setDiffuseColor(1.0,0.9765,0.8667).setShininess(0.05).setSpecularColor(0.349,0.349,0.349)))
              .setGeometry(new IndexedFaceSet("lfpprox4_Geo").setDEF("lfpprox4_Geo").setCreaseAngle(1.571).setCoordIndex(getlfpprox4_Geo_8_350_coordIndex())
                .setCoord(new Coordinate("lfpprox4_Coord").setPoint(getlfpprox4_Coord_9_350_point()))))
            .addChild(new Shape("lfpprox5")
              .setAppearance(new Appearance()
                .setMaterial(new Material().setAmbientIntensity(0.965).setDiffuseColor(1.0,0.9765,0.8667).setShininess(0.05).setSpecularColor(0.349,0.349,0.349)))
              .setGeometry(new IndexedFaceSet("lfpprox5_Geo").setDEF("lfpprox5_Geo").setCreaseAngle(1.571).setCoordIndex(getlfpprox5_Geo_8_355_coordIndex())
                .setCoord(new Coordinate("lfpprox5_Coord").setPoint(getlfpprox5_Coord_9_355_point()))))
            .addChild(new Shape("lfreecrt")
              .setAppearance(new Appearance()
                .setMaterial(new Material().setAmbientIntensity(0.965).setDiffuseColor(0.9843,0.949,0.7843).setShininess(0.05).setSpecularColor(0.9647,0.949,0.9098)))
              .setGeometry(new IndexedFaceSet("lfreecrt_Geo").setDEF("lfreecrt_Geo").setCreaseAngle(1.571).setCoordIndex(getlfreecrt_Geo_8_360_coordIndex())
                .setCoord(new Coordinate("lfreecrt_Coord").setPoint(getlfreecrt_Coord_9_360_point()))))
            .addChild(new Shape("lhamate")
              .setAppearance(new Appearance()
                .setMaterial(new Material().setAmbientIntensity(0.965).setDiffuseColor(1.0,0.9765,0.8667).setShininess(0.05).setSpecularColor(0.349,0.349,0.349)))
              .setGeometry(new IndexedFaceSet("lhamate_Geo").setDEF("lhamate_Geo").setCreaseAngle(1.571).setCoordIndex(getlhamate_Geo_8_365_coordIndex())
                .setCoord(new Coordinate("lhamate_Coord").setPoint(getlhamate_Coord_9_365_point()))))
            .addChild(new Shape("lhumrus")
              .setAppearance(new Appearance()
                .setMaterial(new Material().setAmbientIntensity(0.965).setDiffuseColor(1.0,0.9765,0.8667).setShininess(0.05).setSpecularColor(0.349,0.349,0.349)))
              .setGeometry(new IndexedFaceSet("lhumrus_Geo").setDEF("lhumrus_Geo").setCreaseAngle(1.571).setCoordIndex(getlhumrus_Geo_8_370_coordIndex())
                .setCoord(new Coordinate("lhumrus_Coord").setPoint(getlhumrus_Coord_9_370_point()))))
            .addChild(new Shape("licun")
              .setAppearance(new Appearance()
                .setMaterial(new Material().setAmbientIntensity(0.965).setDiffuseColor(1.0,0.9765,0.8667).setShininess(0.05).setSpecularColor(0.349,0.349,0.349)))
              .setGeometry(new IndexedFaceSet("licun_Geo").setDEF("licun_Geo").setCreaseAngle(1.571).setCoordIndex(getlicun_Geo_8_375_coordIndex())
                .setCoord(new Coordinate("licun_Coord").setPoint(getlicun_Coord_9_375_point()))))
            .addChild(new Shape("llatincc")
              .setAppearance(new Appearance()
                .setMaterial(new Material().setAmbientIntensity(0.4).setDiffuseColor(1.0,0.9843,0.9843).setShininess(0.05)))
              .setGeometry(new IndexedFaceSet("llatincc_Geo").setDEF("llatincc_Geo").setCreaseAngle(1.571).setCoordIndex(getllatincc_Geo_8_380_coordIndex())
                .setCoord(new Coordinate("llatincc_Coord").setPoint(getllatincc_Coord_9_380_point()))))
            .addChild(new Shape("llatincr")
              .setAppearance(new Appearance()
                .setMaterial(new Material().setAmbientIntensity(0.4).setDiffuseColor(1.0,0.9843,0.9843).setShininess(0.05)))
              .setGeometry(new IndexedFaceSet("llatincr_Geo").setDEF("llatincr_Geo").setCreaseAngle(1.571).setCoordIndex(getllatincr_Geo_8_385_coordIndex())
                .setCoord(new Coordinate("llatincr_Coord").setPoint(getllatincr_Coord_9_385_point()))))
            .addChild(new Shape("llatinlc")
              .setAppearance(new Appearance()
                .setMaterial(new Material().setAmbientIntensity(0.4).setDiffuseColor(1.0,0.9843,0.9843).setShininess(0.05)))
              .setGeometry(new IndexedFaceSet("llatinlc_Geo").setDEF("llatinlc_Geo").setCreaseAngle(1.571).setCoordIndex(getllatinlc_Geo_8_390_coordIndex())
                .setCoord(new Coordinate("llatinlc_Coord").setPoint(getllatinlc_Coord_9_390_point()))))
            .addChild(new Shape("llatinlr")
              .setAppearance(new Appearance()
                .setMaterial(new Material().setAmbientIntensity(0.4).setDiffuseColor(1.0,0.9843,0.9843).setShininess(0.05)))
              .setGeometry(new IndexedFaceSet("llatinlr_Geo").setDEF("llatinlr_Geo").setCreaseAngle(1.571).setCoordIndex(getllatinlr_Geo_8_395_coordIndex())
                .setCoord(new Coordinate("llatinlr_Coord").setPoint(getllatinlr_Coord_9_395_point()))))
            .addChild(new Shape("llcun")
              .setAppearance(new Appearance()
                .setMaterial(new Material().setAmbientIntensity(0.965).setDiffuseColor(1.0,0.9765,0.8667).setShininess(0.05).setSpecularColor(0.349,0.349,0.349)))
              .setGeometry(new IndexedFaceSet("llcun_Geo").setDEF("llcun_Geo").setCreaseAngle(1.571).setCoordIndex(getllcun_Geo_8_400_coordIndex())
                .setCoord(new Coordinate("llcun_Coord").setPoint(getllcun_Coord_9_400_point()))))
            .addChild(new Shape("llunate")
              .setAppearance(new Appearance()
                .setMaterial(new Material().setAmbientIntensity(0.965).setDiffuseColor(1.0,0.9765,0.8667).setShininess(0.05).setSpecularColor(0.349,0.349,0.349)))
              .setGeometry(new IndexedFaceSet("llunate_Geo").setDEF("llunate_Geo").setCreaseAngle(1.571).setCoordIndex(getllunate_Geo_8_405_coordIndex())
                .setCoord(new Coordinate("llunate_Coord").setPoint(getllunate_Coord_9_405_point()))))
            .addChild(new Shape("lmc")
              .setAppearance(new Appearance()
                .setMaterial(new Material().setAmbientIntensity(0.965).setDiffuseColor(1.0,0.9765,0.8667).setShininess(0.05).setSpecularColor(0.349,0.349,0.349)))
              .setGeometry(new IndexedFaceSet("lmc_Geo").setDEF("lmc_Geo").setCreaseAngle(1.571).setCoordIndex(getlmc_Geo_8_410_coordIndex())
                .setCoord(new Coordinate("lmc_Coord").setPoint(getlmc_Coord_9_410_point()))))
            .addChild(new Shape("lmc2")
              .setAppearance(new Appearance()
                .setMaterial(new Material().setAmbientIntensity(0.965).setDiffuseColor(1.0,0.9765,0.8667).setShininess(0.05).setSpecularColor(0.349,0.349,0.349)))
              .setGeometry(new IndexedFaceSet("lmc2_Geo").setDEF("lmc2_Geo").setCreaseAngle(1.571).setCoordIndex(getlmc2_Geo_8_415_coordIndex())
                .setCoord(new Coordinate("lmc2_Coord").setPoint(getlmc2_Coord_9_415_point()))))
            .addChild(new Shape("lmc3")
              .setAppearance(new Appearance()
                .setMaterial(new Material().setAmbientIntensity(0.965).setDiffuseColor(1.0,0.9765,0.8667).setShininess(0.05).setSpecularColor(0.349,0.349,0.349)))
              .setGeometry(new IndexedFaceSet("lmc3_Geo").setDEF("lmc3_Geo").setCreaseAngle(1.571).setCoordIndex(getlmc3_Geo_8_420_coordIndex())
                .setCoord(new Coordinate("lmc3_Coord").setPoint(getlmc3_Coord_9_420_point()))))
            .addChild(new Shape("lmc4")
              .setAppearance(new Appearance()
                .setMaterial(new Material().setAmbientIntensity(0.965).setDiffuseColor(1.0,0.9765,0.8667).setShininess(0.05).setSpecularColor(0.349,0.349,0.349)))
              .setGeometry(new IndexedFaceSet("lmc4_Geo").setDEF("lmc4_Geo").setCreaseAngle(1.571).setCoordIndex(getlmc4_Geo_8_425_coordIndex())
                .setCoord(new Coordinate("lmc4_Coord").setPoint(getlmc4_Coord_9_425_point()))))
            .addChild(new Shape("lmc5")
              .setAppearance(new Appearance()
                .setMaterial(new Material().setAmbientIntensity(0.965).setDiffuseColor(1.0,0.9765,0.8667).setShininess(0.05).setSpecularColor(0.349,0.349,0.349)))
              .setGeometry(new IndexedFaceSet("lmc5_Geo").setDEF("lmc5_Geo").setCreaseAngle(1.571).setCoordIndex(getlmc5_Geo_8_430_coordIndex())
                .setCoord(new Coordinate("lmc5_Coord").setPoint(getlmc5_Coord_9_430_point()))))
            .addChild(new Shape("lmcun")
              .setAppearance(new Appearance()
                .setMaterial(new Material().setAmbientIntensity(0.965).setDiffuseColor(1.0,0.9765,0.8667).setShininess(0.05).setSpecularColor(0.349,0.349,0.349)))
              .setGeometry(new IndexedFaceSet("lmcun_Geo").setDEF("lmcun_Geo").setCreaseAngle(1.571).setCoordIndex(getlmcun_Geo_8_435_coordIndex())
                .setCoord(new Coordinate("lmcun_Coord").setPoint(getlmcun_Coord_9_435_point()))))
            .addChild(new Shape("lmet2")
              .setAppearance(new Appearance()
                .setMaterial(new Material().setAmbientIntensity(0.965).setDiffuseColor(1.0,0.9765,0.8667).setShininess(0.05).setSpecularColor(0.349,0.349,0.349)))
              .setGeometry(new IndexedFaceSet("lmet2_Geo").setDEF("lmet2_Geo").setCreaseAngle(1.571).setCoordIndex(getlmet2_Geo_8_440_coordIndex())
                .setCoord(new Coordinate("lmet2_Coord").setPoint(getlmet2_Coord_9_440_point()))))
            .addChild(new Shape("lmet3")
              .setAppearance(new Appearance()
                .setMaterial(new Material().setAmbientIntensity(0.965).setDiffuseColor(1.0,0.9765,0.8667).setShininess(0.05).setSpecularColor(0.349,0.349,0.349)))
              .setGeometry(new IndexedFaceSet("lmet3_Geo").setDEF("lmet3_Geo").setCreaseAngle(1.571).setCoordIndex(getlmet3_Geo_8_445_coordIndex())
                .setCoord(new Coordinate("lmet3_Coord").setPoint(getlmet3_Coord_9_445_point()))))
            .addChild(new Shape("lmet4")
              .setAppearance(new Appearance()
                .setMaterial(new Material().setAmbientIntensity(0.965).setDiffuseColor(1.0,0.9765,0.8667).setShininess(0.05).setSpecularColor(0.349,0.349,0.349)))
              .setGeometry(new IndexedFaceSet("lmet4_Geo").setDEF("lmet4_Geo").setCreaseAngle(1.571).setCoordIndex(getlmet4_Geo_8_450_coordIndex())
                .setCoord(new Coordinate("lmet4_Coord").setPoint(getlmet4_Coord_9_450_point()))))
            .addChild(new Shape("lmet5")
              .setAppearance(new Appearance()
                .setMaterial(new Material().setAmbientIntensity(0.965).setDiffuseColor(1.0,0.9765,0.8667).setShininess(0.05).setSpecularColor(0.349,0.349,0.349)))
              .setGeometry(new IndexedFaceSet("lmet5_Geo").setDEF("lmet5_Geo").setCreaseAngle(1.571).setCoordIndex(getlmet5_Geo_8_455_coordIndex())
                .setCoord(new Coordinate("lmet5_Coord").setPoint(getlmet5_Coord_9_455_point()))))
            .addChild(new Shape("lmolar1c")
              .setAppearance(new Appearance()
                .setMaterial(new Material().setAmbientIntensity(0.4).setDiffuseColor(1.0,0.9843,0.9843).setShininess(0.05)))
              .setGeometry(new IndexedFaceSet("lmolar1c_Geo").setDEF("lmolar1c_Geo").setCreaseAngle(1.571).setCoordIndex(getlmolar1c_Geo_8_460_coordIndex())
                .setCoord(new Coordinate("lmolar1c_Coord").setPoint(getlmolar1c_Coord_9_460_point()))))
            .addChild(new Shape("lmolar1r")
              .setAppearance(new Appearance()
                .setMaterial(new Material().setAmbientIntensity(0.4).setDiffuseColor(1.0,0.9843,0.9843).setShininess(0.05)))
              .setGeometry(new IndexedFaceSet("lmolar1r_Geo").setDEF("lmolar1r_Geo").setCreaseAngle(1.571).setCoordIndex(getlmolar1r_Geo_8_465_coordIndex())
                .setCoord(new Coordinate("lmolar1r_Coord").setPoint(getlmolar1r_Coord_9_465_point()))))
            .addChild(new Shape("lmolar2c")
              .setAppearance(new Appearance()
                .setMaterial(new Material().setAmbientIntensity(0.4).setDiffuseColor(1.0,0.9843,0.9843).setShininess(0.05)))
              .setGeometry(new IndexedFaceSet("lmolar2c_Geo").setDEF("lmolar2c_Geo").setCreaseAngle(1.571).setCoordIndex(getlmolar2c_Geo_8_470_coordIndex())
                .setCoord(new Coordinate("lmolar2c_Coord").setPoint(getlmolar2c_Coord_9_470_point()))))
            .addChild(new Shape("lmolar2r")
              .setAppearance(new Appearance()
                .setMaterial(new Material().setAmbientIntensity(0.4).setDiffuseColor(1.0,0.9843,0.9843).setShininess(0.05)))
              .setGeometry(new IndexedFaceSet("lmolar2r_Geo").setDEF("lmolar2r_Geo").setCreaseAngle(1.571).setCoordIndex(getlmolar2r_Geo_8_475_coordIndex())
                .setCoord(new Coordinate("lmolar2r_Coord").setPoint(getlmolar2r_Coord_9_475_point()))))
            .addChild(new Shape("lmolar3c")
              .setAppearance(new Appearance()
                .setMaterial(new Material().setAmbientIntensity(0.4).setDiffuseColor(1.0,0.9843,0.9843).setShininess(0.05)))
              .setGeometry(new IndexedFaceSet("lmolar3c_Geo").setDEF("lmolar3c_Geo").setCreaseAngle(1.571).setCoordIndex(getlmolar3c_Geo_8_480_coordIndex())
                .setCoord(new Coordinate("lmolar3c_Coord").setPoint(getlmolar3c_Coord_9_480_point()))))
            .addChild(new Shape("lmolar3r")
              .setAppearance(new Appearance()
                .setMaterial(new Material().setAmbientIntensity(0.4).setDiffuseColor(1.0,0.9843,0.9843).setShininess(0.05)))
              .setGeometry(new IndexedFaceSet("lmolar3r_Geo").setDEF("lmolar3r_Geo").setCreaseAngle(1.571).setCoordIndex(getlmolar3r_Geo_8_485_coordIndex())
                .setCoord(new Coordinate("lmolar3r_Coord").setPoint(getlmolar3r_Coord_9_485_point()))))
            .addChild(new Shape("lmolr1lc")
              .setAppearance(new Appearance()
                .setMaterial(new Material().setAmbientIntensity(0.4).setDiffuseColor(1.0,0.9843,0.9843).setShininess(0.05)))
              .setGeometry(new IndexedFaceSet("lmolr1lc_Geo").setDEF("lmolr1lc_Geo").setCreaseAngle(1.571).setCoordIndex(getlmolr1lc_Geo_8_490_coordIndex())
                .setCoord(new Coordinate("lmolr1lc_Coord").setPoint(getlmolr1lc_Coord_9_490_point()))))
            .addChild(new Shape("lmolr1lr")
              .setAppearance(new Appearance()
                .setMaterial(new Material().setAmbientIntensity(0.4).setDiffuseColor(1.0,0.9843,0.9843).setShininess(0.05)))
              .setGeometry(new IndexedFaceSet("lmolr1lr_Geo").setDEF("lmolr1lr_Geo").setCreaseAngle(1.571).setCoordIndex(getlmolr1lr_Geo_8_495_coordIndex())
                .setCoord(new Coordinate("lmolr1lr_Coord").setPoint(getlmolr1lr_Coord_9_495_point()))))
            .addChild(new Shape("lmolr2lc")
              .setAppearance(new Appearance()
                .setMaterial(new Material().setAmbientIntensity(0.4).setDiffuseColor(1.0,0.9843,0.9843).setShininess(0.05)))
              .setGeometry(new IndexedFaceSet("lmolr2lc_Geo").setDEF("lmolr2lc_Geo").setCreaseAngle(1.571).setCoordIndex(getlmolr2lc_Geo_8_500_coordIndex())
                .setCoord(new Coordinate("lmolr2lc_Coord").setPoint(getlmolr2lc_Coord_9_500_point()))))
            .addChild(new Shape("lmolr2lr")
              .setAppearance(new Appearance()
                .setMaterial(new Material().setAmbientIntensity(0.4).setDiffuseColor(1.0,0.9843,0.9843).setShininess(0.05)))
              .setGeometry(new IndexedFaceSet("lmolr2lr_Geo").setDEF("lmolr2lr_Geo").setCreaseAngle(1.571).setCoordIndex(getlmolr2lr_Geo_8_505_coordIndex())
                .setCoord(new Coordinate("lmolr2lr_Coord").setPoint(getlmolr2lr_Coord_9_505_point()))))
            .addChild(new Shape("lmolr3lc")
              .setAppearance(new Appearance()
                .setMaterial(new Material().setAmbientIntensity(0.4).setDiffuseColor(1.0,0.9843,0.9843).setShininess(0.05)))
              .setGeometry(new IndexedFaceSet("lmolr3lc_Geo").setDEF("lmolr3lc_Geo").setCreaseAngle(1.571).setCoordIndex(getlmolr3lc_Geo_8_510_coordIndex())
                .setCoord(new Coordinate("lmolr3lc_Coord").setPoint(getlmolr3lc_Coord_9_510_point()))))
            .addChild(new Shape("lmolr3lr")
              .setAppearance(new Appearance()
                .setMaterial(new Material().setAmbientIntensity(0.4).setDiffuseColor(1.0,0.9843,0.9843).setShininess(0.05)))
              .setGeometry(new IndexedFaceSet("lmolr3lr_Geo").setDEF("lmolr3lr_Geo").setCreaseAngle(1.571).setCoordIndex(getlmolr3lr_Geo_8_515_coordIndex())
                .setCoord(new Coordinate("lmolr3lr_Coord").setPoint(getlmolr3lr_Coord_9_515_point()))))
            .addChild(new Shape("lmphal2")
              .setAppearance(new Appearance()
                .setMaterial(new Material().setAmbientIntensity(0.965).setDiffuseColor(1.0,0.9765,0.8667).setShininess(0.05).setSpecularColor(0.349,0.349,0.349)))
              .setGeometry(new IndexedFaceSet("lmphal2_Geo").setDEF("lmphal2_Geo").setCreaseAngle(1.571).setCoordIndex(getlmphal2_Geo_8_520_coordIndex())
                .setCoord(new Coordinate("lmphal2_Coord").setPoint(getlmphal2_Coord_9_520_point()))))
            .addChild(new Shape("lmphal3")
              .setAppearance(new Appearance()
                .setMaterial(new Material().setAmbientIntensity(0.965).setDiffuseColor(1.0,0.9765,0.8667).setShininess(0.05).setSpecularColor(0.349,0.349,0.349)))
              .setGeometry(new IndexedFaceSet("lmphal3_Geo").setDEF("lmphal3_Geo").setCreaseAngle(1.571).setCoordIndex(getlmphal3_Geo_8_525_coordIndex())
                .setCoord(new Coordinate("lmphal3_Coord").setPoint(getlmphal3_Coord_9_525_point()))))
            .addChild(new Shape("lmphal4")
              .setAppearance(new Appearance()
                .setMaterial(new Material().setAmbientIntensity(0.965).setDiffuseColor(1.0,0.9765,0.8667).setShininess(0.05).setSpecularColor(0.349,0.349,0.349)))
              .setGeometry(new IndexedFaceSet("lmphal4_Geo").setDEF("lmphal4_Geo").setCreaseAngle(1.571).setCoordIndex(getlmphal4_Geo_8_530_coordIndex())
                .setCoord(new Coordinate("lmphal4_Coord").setPoint(getlmphal4_Coord_9_530_point()))))
            .addChild(new Shape("lmphal5")
              .setAppearance(new Appearance()
                .setMaterial(new Material().setAmbientIntensity(0.965).setDiffuseColor(1.0,0.9765,0.8667).setShininess(0.05).setSpecularColor(0.349,0.349,0.349)))
              .setGeometry(new IndexedFaceSet("lmphal5_Geo").setDEF("lmphal5_Geo").setCreaseAngle(1.571).setCoordIndex(getlmphal5_Geo_8_535_coordIndex())
                .setCoord(new Coordinate("lmphal5_Coord").setPoint(getlmphal5_Coord_9_535_point()))))
            .addChild(new Shape("lnaviclr")
              .setAppearance(new Appearance()
                .setMaterial(new Material().setAmbientIntensity(0.098).setDiffuseColor(1.0,0.9765,0.8667).setShininess(0.05).setSpecularColor(0.349,0.349,0.349)))
              .setGeometry(new IndexedFaceSet("lnaviclr_Geo").setDEF("lnaviclr_Geo").setCreaseAngle(1.571).setCoordIndex(getlnaviclr_Geo_8_540_coordIndex())
                .setCoord(new Coordinate("lnaviclr_Coord").setPoint(getlnaviclr_Coord_9_540_point()))))
            .addChild(new Shape("loscoxae")
              .setAppearance(new Appearance()
                .setMaterial(new Material().setAmbientIntensity(0.098).setDiffuseColor(1.0,0.9765,0.8667).setShininess(0.05).setSpecularColor(0.349,0.349,0.349)))
              .setGeometry(new IndexedFaceSet("loscoxae_Geo").setDEF("loscoxae_Geo").setCreaseAngle(1.571).setCoordIndex(getloscoxae_Geo_8_545_coordIndex())
                .setCoord(new Coordinate("loscoxae_Coord").setPoint(getloscoxae_Coord_9_545_point()))))
            .addChild(new Shape("lowleg")
              .setAppearance(new Appearance()
                .setMaterial(new Material().setAmbientIntensity(0.098).setDiffuseColor(1.0,0.9765,0.8667).setShininess(0.05).setSpecularColor(0.349,0.349,0.349)))
              .setGeometry(new IndexedFaceSet("lowleg_Geo").setDEF("lowleg_Geo").setCreaseAngle(1.571).setCoordIndex(getlowleg_Geo_8_550_coordIndex())
                .setCoord(new Coordinate("lowleg_Coord").setPoint(getlowleg_Coord_9_550_point()))))
            .addChild(new Shape("lpisform")
              .setAppearance(new Appearance()
                .setMaterial(new Material().setAmbientIntensity(0.098).setDiffuseColor(1.0,0.9765,0.8667).setShininess(0.05).setSpecularColor(0.349,0.349,0.349)))
              .setGeometry(new IndexedFaceSet("lpisform_Geo").setDEF("lpisform_Geo").setCreaseAngle(1.571).setCoordIndex(getlpisform_Geo_8_555_coordIndex())
                .setCoord(new Coordinate("lpisform_Coord").setPoint(getlpisform_Coord_9_555_point()))))
            .addChild(new Shape("lpphal")
              .setAppearance(new Appearance()
                .setMaterial(new Material().setAmbientIntensity(0.965).setDiffuseColor(1.0,0.9765,0.8667).setShininess(0.05).setSpecularColor(0.349,0.349,0.349)))
              .setGeometry(new IndexedFaceSet("lpphal_Geo").setDEF("lpphal_Geo").setCreaseAngle(1.571).setCoordIndex(getlpphal_Geo_8_560_coordIndex())
                .setCoord(new Coordinate("lpphal_Coord").setPoint(getlpphal_Coord_9_560_point()))))
            .addChild(new Shape("lpphal2")
              .setAppearance(new Appearance()
                .setMaterial(new Material().setAmbientIntensity(0.965).setDiffuseColor(1.0,0.9765,0.8667).setShininess(0.05).setSpecularColor(0.349,0.349,0.349)))
              .setGeometry(new IndexedFaceSet("lpphal2_Geo").setDEF("lpphal2_Geo").setCreaseAngle(1.571).setCoordIndex(getlpphal2_Geo_8_565_coordIndex())
                .setCoord(new Coordinate("lpphal2_Coord").setPoint(getlpphal2_Coord_9_565_point()))))
            .addChild(new Shape("lpphal3")
              .setAppearance(new Appearance()
                .setMaterial(new Material().setAmbientIntensity(0.965).setDiffuseColor(1.0,0.9765,0.8667).setShininess(0.05).setSpecularColor(0.349,0.349,0.349)))
              .setGeometry(new IndexedFaceSet("lpphal3_Geo").setDEF("lpphal3_Geo").setCreaseAngle(1.571).setCoordIndex(getlpphal3_Geo_8_570_coordIndex())
                .setCoord(new Coordinate("lpphal3_Coord").setPoint(getlpphal3_Coord_9_570_point()))))
            .addChild(new Shape("lpphal4")
              .setAppearance(new Appearance()
                .setMaterial(new Material().setAmbientIntensity(0.965).setDiffuseColor(1.0,0.9765,0.8667).setShininess(0.05).setSpecularColor(0.349,0.349,0.349)))
              .setGeometry(new IndexedFaceSet("lpphal4_Geo").setDEF("lpphal4_Geo").setCreaseAngle(1.571).setCoordIndex(getlpphal4_Geo_8_575_coordIndex())
                .setCoord(new Coordinate("lpphal4_Coord").setPoint(getlpphal4_Coord_9_575_point()))))
            .addChild(new Shape("lpphal5")
              .setAppearance(new Appearance()
                .setMaterial(new Material().setAmbientIntensity(0.965).setDiffuseColor(1.0,0.9765,0.8667).setShininess(0.05).setSpecularColor(0.349,0.349,0.349)))
              .setGeometry(new IndexedFaceSet("lpphal5_Geo").setDEF("lpphal5_Geo").setCreaseAngle(1.571).setCoordIndex(getlpphal5_Geo_8_580_coordIndex())
                .setCoord(new Coordinate("lpphal5_Coord").setPoint(getlpphal5_Coord_9_580_point()))))
            .addChild(new Shape("lprem1lc")
              .setAppearance(new Appearance()
                .setMaterial(new Material().setAmbientIntensity(0.4).setDiffuseColor(1.0,0.9843,0.9843).setShininess(0.05)))
              .setGeometry(new IndexedFaceSet("lprem1lc_Geo").setDEF("lprem1lc_Geo").setCreaseAngle(1.571).setCoordIndex(getlprem1lc_Geo_8_585_coordIndex())
                .setCoord(new Coordinate("lprem1lc_Coord").setPoint(getlprem1lc_Coord_9_585_point()))))
            .addChild(new Shape("lprem1lr")
              .setAppearance(new Appearance()
                .setMaterial(new Material().setAmbientIntensity(0.4).setDiffuseColor(1.0,0.9843,0.9843).setShininess(0.05)))
              .setGeometry(new IndexedFaceSet("lprem1lr_Geo").setDEF("lprem1lr_Geo").setCreaseAngle(1.571).setCoordIndex(getlprem1lr_Geo_8_590_coordIndex())
                .setCoord(new Coordinate("lprem1lr_Coord").setPoint(getlprem1lr_Coord_9_590_point()))))
            .addChild(new Shape("lprem2lc")
              .setAppearance(new Appearance()
                .setMaterial(new Material().setAmbientIntensity(0.4).setDiffuseColor(1.0,0.9843,0.9843).setShininess(0.05)))
              .setGeometry(new IndexedFaceSet("lprem2lc_Geo").setDEF("lprem2lc_Geo").setCreaseAngle(1.571).setCoordIndex(getlprem2lc_Geo_8_595_coordIndex())
                .setCoord(new Coordinate("lprem2lc_Coord").setPoint(getlprem2lc_Coord_9_595_point()))))
            .addChild(new Shape("lprem2lr")
              .setAppearance(new Appearance()
                .setMaterial(new Material().setAmbientIntensity(0.4).setDiffuseColor(1.0,0.9843,0.9843).setShininess(0.05)))
              .setGeometry(new IndexedFaceSet("lprem2lr_Geo").setDEF("lprem2lr_Geo").setCreaseAngle(1.571).setCoordIndex(getlprem2lr_Geo_8_600_coordIndex())
                .setCoord(new Coordinate("lprem2lr_Coord").setPoint(getlprem2lr_Coord_9_600_point()))))
            .addChild(new Shape("lpreo1lc")
              .setAppearance(new Appearance()
                .setMaterial(new Material().setAmbientIntensity(0.4).setDiffuseColor(1.0,0.9843,0.9843).setShininess(0.05)))
              .setGeometry(new IndexedFaceSet("lpreo1lc_Geo").setDEF("lpreo1lc_Geo").setCreaseAngle(1.571).setCoordIndex(getlpreo1lc_Geo_8_605_coordIndex())
                .setCoord(new Coordinate("lpreo1lc_Coord").setPoint(getlpreo1lc_Coord_9_605_point()))))
            .addChild(new Shape("lpreol1r")
              .setAppearance(new Appearance()
                .setMaterial(new Material().setAmbientIntensity(0.4).setDiffuseColor(1.0,0.9843,0.9843).setShininess(0.05)))
              .setGeometry(new IndexedFaceSet("lpreol1r_Geo").setDEF("lpreol1r_Geo").setCreaseAngle(1.571).setCoordIndex(getlpreol1r_Geo_8_610_coordIndex())
                .setCoord(new Coordinate("lpreol1r_Coord").setPoint(getlpreol1r_Coord_9_610_point()))))
            .addChild(new Shape("lpreol2c")
              .setAppearance(new Appearance()
                .setMaterial(new Material().setAmbientIntensity(0.4).setDiffuseColor(1.0,0.9843,0.9843).setShininess(0.05)))
              .setGeometry(new IndexedFaceSet("lpreol2c_Geo").setDEF("lpreol2c_Geo").setCreaseAngle(1.571).setCoordIndex(getlpreol2c_Geo_8_615_coordIndex())
                .setCoord(new Coordinate("lpreol2c_Coord").setPoint(getlpreol2c_Coord_9_615_point()))))
            .addChild(new Shape("lpreol2r")
              .setAppearance(new Appearance()
                .setMaterial(new Material().setAmbientIntensity(0.4).setDiffuseColor(1.0,0.9843,0.9843).setShininess(0.05)))
              .setGeometry(new IndexedFaceSet("lpreol2r_Geo").setDEF("lpreol2r_Geo").setCreaseAngle(1.571).setCoordIndex(getlpreol2r_Geo_8_620_coordIndex())
                .setCoord(new Coordinate("lpreol2r_Coord").setPoint(getlpreol2r_Coord_9_620_point()))))
            .addChild(new Shape("lradius")
              .setAppearance(new Appearance()
                .setMaterial(new Material().setAmbientIntensity(0.965).setDiffuseColor(1.0,0.9765,0.8667).setShininess(0.05).setSpecularColor(0.349,0.349,0.349)))
              .setGeometry(new IndexedFaceSet("lradius_Geo").setDEF("lradius_Geo").setCreaseAngle(1.571).setCoordIndex(getlradius_Geo_8_625_coordIndex())
                .setCoord(new Coordinate("lradius_Coord").setPoint(getlradius_Coord_9_625_point()))))
            .addChild(new Shape("lrib10")
              .setAppearance(new Appearance()
                .setMaterial(new Material().setAmbientIntensity(0.965).setDiffuseColor(1.0,0.9765,0.8667).setShininess(0.05).setSpecularColor(0.349,0.349,0.349)))
              .setGeometry(new IndexedFaceSet("lrib10_Geo").setDEF("lrib10_Geo").setCreaseAngle(1.571).setCoordIndex(getlrib10_Geo_8_630_coordIndex())
                .setCoord(new Coordinate("lrib10_Coord").setPoint(getlrib10_Coord_9_630_point()))))
            .addChild(new Shape("lrib11")
              .setAppearance(new Appearance()
                .setMaterial(new Material().setAmbientIntensity(0.965).setDiffuseColor(1.0,0.9765,0.8667).setShininess(0.05).setSpecularColor(0.349,0.349,0.349)))
              .setGeometry(new IndexedFaceSet("lrib11_Geo").setDEF("lrib11_Geo").setCreaseAngle(1.571).setCoordIndex(getlrib11_Geo_8_635_coordIndex())
                .setCoord(new Coordinate("lrib11_Coord").setPoint(getlrib11_Coord_9_635_point()))))
            .addChild(new Shape("lrib12")
              .setAppearance(new Appearance()
                .setMaterial(new Material().setAmbientIntensity(0.965).setDiffuseColor(1.0,0.9765,0.8667).setShininess(0.05).setSpecularColor(0.349,0.349,0.349)))
              .setGeometry(new IndexedFaceSet("lrib12_Geo").setDEF("lrib12_Geo").setCreaseAngle(1.571).setCoordIndex(getlrib12_Geo_8_640_coordIndex())
                .setCoord(new Coordinate("lrib12_Coord").setPoint(getlrib12_Coord_9_640_point()))))
            .addChild(new Shape("lrib2")
              .setAppearance(new Appearance()
                .setMaterial(new Material().setAmbientIntensity(0.965).setDiffuseColor(1.0,0.9765,0.8667).setShininess(0.05).setSpecularColor(0.349,0.349,0.349)))
              .setGeometry(new IndexedFaceSet("lrib2_Geo").setDEF("lrib2_Geo").setCreaseAngle(1.571).setCoordIndex(getlrib2_Geo_8_645_coordIndex())
                .setCoord(new Coordinate("lrib2_Coord").setPoint(getlrib2_Coord_9_645_point()))))
            .addChild(new Shape("lrib3")
              .setAppearance(new Appearance()
                .setMaterial(new Material().setAmbientIntensity(0.965).setDiffuseColor(1.0,0.9765,0.8667).setShininess(0.05).setSpecularColor(0.349,0.349,0.349)))
              .setGeometry(new IndexedFaceSet("lrib3_Geo").setDEF("lrib3_Geo").setCreaseAngle(1.571).setCoordIndex(getlrib3_Geo_8_650_coordIndex())
                .setCoord(new Coordinate("lrib3_Coord").setPoint(getlrib3_Coord_9_650_point()))))
            .addChild(new Shape("lrib4")
              .setAppearance(new Appearance()
                .setMaterial(new Material().setAmbientIntensity(0.965).setDiffuseColor(1.0,0.9765,0.8667).setShininess(0.05).setSpecularColor(0.349,0.349,0.349)))
              .setGeometry(new IndexedFaceSet("lrib4_Geo").setDEF("lrib4_Geo").setCreaseAngle(1.571).setCoordIndex(getlrib4_Geo_8_655_coordIndex())
                .setCoord(new Coordinate("lrib4_Coord").setPoint(getlrib4_Coord_9_655_point()))))
            .addChild(new Shape("lrib5")
              .setAppearance(new Appearance()
                .setMaterial(new Material().setAmbientIntensity(0.965).setDiffuseColor(1.0,0.9765,0.8667).setShininess(0.05).setSpecularColor(0.349,0.349,0.349)))
              .setGeometry(new IndexedFaceSet("lrib5_Geo").setDEF("lrib5_Geo").setCreaseAngle(1.571).setCoordIndex(getlrib5_Geo_8_660_coordIndex())
                .setCoord(new Coordinate("lrib5_Coord").setPoint(getlrib5_Coord_9_660_point()))))
            .addChild(new Shape("lrib6")
              .setAppearance(new Appearance()
                .setMaterial(new Material().setAmbientIntensity(0.965).setDiffuseColor(1.0,0.9765,0.8667).setShininess(0.05).setSpecularColor(0.349,0.349,0.349)))
              .setGeometry(new IndexedFaceSet("lrib6_Geo").setDEF("lrib6_Geo").setCreaseAngle(1.571).setCoordIndex(getlrib6_Geo_8_665_coordIndex())
                .setCoord(new Coordinate("lrib6_Coord").setPoint(getlrib6_Coord_9_665_point()))))
            .addChild(new Shape("lrib7")
              .setAppearance(new Appearance()
                .setMaterial(new Material().setAmbientIntensity(0.965).setDiffuseColor(1.0,0.9765,0.8667).setShininess(0.05).setSpecularColor(0.349,0.349,0.349)))
              .setGeometry(new IndexedFaceSet("lrib7_Geo").setDEF("lrib7_Geo").setCreaseAngle(1.571).setCoordIndex(getlrib7_Geo_8_670_coordIndex())
                .setCoord(new Coordinate("lrib7_Coord").setPoint(getlrib7_Coord_9_670_point()))))
            .addChild(new Shape("lrib8")
              .setAppearance(new Appearance()
                .setMaterial(new Material().setAmbientIntensity(0.965).setDiffuseColor(1.0,0.9765,0.8667).setShininess(0.05).setSpecularColor(0.349,0.349,0.349)))
              .setGeometry(new IndexedFaceSet("lrib8_Geo").setDEF("lrib8_Geo").setCreaseAngle(1.571).setCoordIndex(getlrib8_Geo_8_675_coordIndex())
                .setCoord(new Coordinate("lrib8_Coord").setPoint(getlrib8_Coord_9_675_point()))))
            .addChild(new Shape("lrib9")
              .setAppearance(new Appearance()
                .setMaterial(new Material().setAmbientIntensity(0.098).setDiffuseColor(1.0,0.9765,0.8667).setShininess(0.05).setSpecularColor(0.349,0.349,0.349)))
              .setGeometry(new IndexedFaceSet("lrib9_Geo").setDEF("lrib9_Geo").setCreaseAngle(1.571).setCoordIndex(getlrib9_Geo_8_680_coordIndex())
                .setCoord(new Coordinate("lrib9_Coord").setPoint(getlrib9_Coord_9_680_point()))))
            .addChild(new Shape("lrrib")
              .setAppearance(new Appearance()
                .setMaterial(new Material().setAmbientIntensity(0.098).setDiffuseColor(1.0,0.9765,0.8667).setShininess(0.05).setSpecularColor(0.349,0.349,0.349)))
              .setGeometry(new IndexedFaceSet("lrrib_Geo").setDEF("lrrib_Geo").setCreaseAngle(1.571).setCoordIndex(getlrrib_Geo_8_685_coordIndex())
                .setCoord(new Coordinate("lrrib_Coord").setPoint(getlrrib_Coord_9_685_point()))))
            .addChild(new Shape("lscapula")
              .setAppearance(new Appearance()
                .setMaterial(new Material().setAmbientIntensity(0.098).setDiffuseColor(1.0,0.9765,0.8667).setShininess(0.05).setSpecularColor(0.349,0.349,0.349)))
              .setGeometry(new IndexedFaceSet("lscapula_Geo").setDEF("lscapula_Geo").setCreaseAngle(1.571).setCoordIndex(getlscapula_Geo_8_690_coordIndex())
                .setCoord(new Coordinate("lscapula_Coord").setPoint(getlscapula_Coord_9_690_point()))))
            .addChild(new Shape("lscphoid")
              .setAppearance(new Appearance()
                .setMaterial(new Material().setAmbientIntensity(0.098).setDiffuseColor(1.0,0.9765,0.8667).setShininess(0.05).setSpecularColor(0.349,0.349,0.349)))
              .setGeometry(new IndexedFaceSet("lscphoid_Geo").setDEF("lscphoid_Geo").setCreaseAngle(1.571).setCoordIndex(getlscphoid_Geo_8_695_coordIndex())
                .setCoord(new Coordinate("lscphoid_Coord").setPoint(getlscphoid_Coord_9_695_point()))))
            .addChild(new Shape("ltalus")
              .setAppearance(new Appearance()
                .setMaterial(new Material().setAmbientIntensity(0.098).setDiffuseColor(1.0,0.9765,0.8667).setShininess(0.05).setSpecularColor(0.349,0.349,0.349)))
              .setGeometry(new IndexedFaceSet("ltalus_Geo").setDEF("ltalus_Geo").setCreaseAngle(1.571).setCoordIndex(getltalus_Geo_8_700_coordIndex())
                .setCoord(new Coordinate("ltalus_Coord").setPoint(getltalus_Coord_9_700_point()))))
            .addChild(new Shape("ltibia")
              .setAppearance(new Appearance()
                .setMaterial(new Material().setAmbientIntensity(0.098).setDiffuseColor(1.0,0.9765,0.8667).setShininess(0.05).setSpecularColor(0.349,0.349,0.349)))
              .setGeometry(new IndexedFaceSet("ltibia_Geo").setDEF("ltibia_Geo").setCreaseAngle(1.571).setCoordIndex(getltibia_Geo_8_705_coordIndex())
                .setCoord(new Coordinate("ltibia_Coord").setPoint(getltibia_Coord_9_705_point()))))
            .addChild(new Shape("ltrpzium")
              .setAppearance(new Appearance()
                .setMaterial(new Material().setAmbientIntensity(0.098).setDiffuseColor(1.0,0.9765,0.8667).setShininess(0.05).setSpecularColor(0.349,0.349,0.349)))
              .setGeometry(new IndexedFaceSet("ltrpzium_Geo").setDEF("ltrpzium_Geo").setCreaseAngle(1.571).setCoordIndex(getltrpzium_Geo_8_710_coordIndex())
                .setCoord(new Coordinate("ltrpzium_Coord").setPoint(getltrpzium_Coord_9_710_point()))))
            .addChild(new Shape("ltrpzoid")
              .setAppearance(new Appearance()
                .setMaterial(new Material().setAmbientIntensity(0.098).setDiffuseColor(1.0,0.9765,0.8667).setShininess(0.05).setSpecularColor(0.349,0.349,0.349)))
              .setGeometry(new IndexedFaceSet("ltrpzoid_Geo").setDEF("ltrpzoid_Geo").setCreaseAngle(1.571).setCoordIndex(getltrpzoid_Geo_8_715_coordIndex())
                .setCoord(new Coordinate("ltrpzoid_Coord").setPoint(getltrpzoid_Coord_9_715_point()))))
            .addChild(new Shape("ltrqtral")
              .setAppearance(new Appearance()
                .setMaterial(new Material().setAmbientIntensity(0.098).setDiffuseColor(1.0,0.9765,0.8667).setEmissiveColor(1.0,1.0,0.0).setShininess(0.05).setSpecularColor(0.349,0.349,0.349)))
              .setGeometry(new IndexedFaceSet("ltrqtral_Geo").setDEF("ltrqtral_Geo").setCreaseAngle(1.571).setCoordIndex(getltrqtral_Geo_8_720_coordIndex())
                .setCoord(new Coordinate("ltrqtral_Coord").setPoint(getltrqtral_Coord_9_720_point()))))
            .addChild(new Shape("lulna")
              .setAppearance(new Appearance()
                .setMaterial(new Material().setAmbientIntensity(0.098).setDiffuseColor(1.0,0.9765,0.8667).setShininess(0.05).setSpecularColor(0.349,0.349,0.349)))
              .setGeometry(new IndexedFaceSet("lulna_Geo").setDEF("lulna_Geo").setCreaseAngle(1.571).setCoordIndex(getlulna_Geo_8_725_coordIndex())
                .setCoord(new Coordinate("lulna_Coord").setPoint(getlulna_Coord_9_725_point()))))
            .addChild(new Shape("lum")
              .setAppearance(new Appearance()
                .setMaterial(new Material().setAmbientIntensity(0.098).setDiffuseColor(1.0,0.9765,0.8667).setShininess(0.05).setSpecularColor(0.349,0.349,0.349)))
              .setGeometry(new IndexedFaceSet("lum_Geo").setDEF("lum_Geo").setCreaseAngle(1.571).setCoordIndex(getlum_Geo_8_730_coordIndex())
                .setCoord(new Coordinate("lum_Coord").setPoint(getlum_Coord_9_730_point()))))
            .addChild(new Shape("mand")
              .setAppearance(new Appearance()
                .setMaterial(new Material().setAmbientIntensity(0.098).setDiffuseColor(1.0,0.9765,0.8667).setShininess(0.05).setSpecularColor(0.349,0.349,0.349)))
              .setGeometry(new IndexedFaceSet("mand_Geo").setDEF("mand_Geo").setCreaseAngle(1.571).setCoordIndex(getmand_Geo_8_735_coordIndex())
                .setCoord(new Coordinate("mand_Coord").setPoint(getmand_Coord_9_735_point()))))
            .addChild(new Shape("maxl")
              .setAppearance(new Appearance()
                .setMaterial(new Material().setAmbientIntensity(0.098).setDiffuseColor(1.0,0.9765,0.8667).setShininess(0.05).setSpecularColor(0.349,0.349,0.349)))
              .setGeometry(new IndexedFaceSet("maxl_Geo").setDEF("maxl_Geo").setCreaseAngle(1.571).setCoordIndex(getmaxl_Geo_8_740_coordIndex())
                .setCoord(new Coordinate("maxl_Coord").setPoint(getmaxl_Coord_9_740_point()))))
            .addChild(new Shape("maxr")
              .setAppearance(new Appearance()
                .setMaterial(new Material().setAmbientIntensity(0.098).setDiffuseColor(1.0,0.9765,0.8667).setShininess(0.05).setSpecularColor(0.349,0.349,0.349)))
              .setGeometry(new IndexedFaceSet("maxr_Geo").setDEF("maxr_Geo").setCreaseAngle(1.571).setCoordIndex(getmaxr_Geo_8_745_coordIndex())
                .setCoord(new Coordinate("maxr_Coord").setPoint(getmaxr_Coord_9_745_point()))))
            .addChild(new Shape("nasall")
              .setAppearance(new Appearance()
                .setMaterial(new Material().setAmbientIntensity(0.098).setDiffuseColor(1.0,0.9765,0.8667).setShininess(0.05).setSpecularColor(0.349,0.349,0.349)))
              .setGeometry(new IndexedFaceSet("nasall_Geo").setDEF("nasall_Geo").setCreaseAngle(1.571).setCoordIndex(getnasall_Geo_8_750_coordIndex())
                .setCoord(new Coordinate("nasall_Coord").setPoint(getnasall_Coord_9_750_point()))))
            .addChild(new Shape("nasalr")
              .setAppearance(new Appearance()
                .setMaterial(new Material().setAmbientIntensity(0.098).setDiffuseColor(1.0,0.9765,0.8667).setShininess(0.05).setSpecularColor(0.349,0.349,0.349)))
              .setGeometry(new IndexedFaceSet("nasalr_Geo").setDEF("nasalr_Geo").setCreaseAngle(1.571).setCoordIndex(getnasalr_Geo_8_755_coordIndex())
                .setCoord(new Coordinate("nasalr_Coord").setPoint(getnasalr_Coord_9_755_point()))))
            .addChild(new Shape("occip")
              .setAppearance(new Appearance()
                .setMaterial(new Material().setAmbientIntensity(0.098).setDiffuseColor(1.0,0.9765,0.8667).setShininess(0.05).setSpecularColor(0.349,0.349,0.349)))
              .setGeometry(new IndexedFaceSet("occip_Geo").setDEF("occip_Geo").setCreaseAngle(1.571).setCoordIndex(getoccip_Geo_8_760_coordIndex())
                .setCoord(new Coordinate("occip_Coord").setPoint(getoccip_Coord_9_760_point()))))
            .addChild(new Shape("palatl")
              .setAppearance(new Appearance()
                .setMaterial(new Material().setAmbientIntensity(0.098).setDiffuseColor(1.0,0.9765,0.8667).setShininess(0.05).setSpecularColor(0.349,0.349,0.349)))
              .setGeometry(new IndexedFaceSet("palatl_Geo").setDEF("palatl_Geo").setCreaseAngle(1.571).setCoordIndex(getpalatl_Geo_8_765_coordIndex())
                .setCoord(new Coordinate("palatl_Coord").setPoint(getpalatl_Coord_9_765_point()))))
            .addChild(new Shape("palatr")
              .setAppearance(new Appearance()
                .setMaterial(new Material().setAmbientIntensity(0.098).setDiffuseColor(1.0,0.9765,0.8667).setShininess(0.05).setSpecularColor(0.349,0.349,0.349)))
              .setGeometry(new IndexedFaceSet("palatr_Geo").setDEF("palatr_Geo").setCreaseAngle(1.571).setCoordIndex(getpalatr_Geo_8_770_coordIndex())
                .setCoord(new Coordinate("palatr_Coord").setPoint(getpalatr_Coord_9_770_point()))))
            .addChild(new Shape("parietl")
              .setAppearance(new Appearance()
                .setMaterial(new Material().setAmbientIntensity(0.098).setDiffuseColor(1.0,0.9765,0.8667).setShininess(0.05).setSpecularColor(0.349,0.349,0.349)))
              .setGeometry(new IndexedFaceSet("parietl_Geo").setDEF("parietl_Geo").setCreaseAngle(1.571).setCoordIndex(getparietl_Geo_8_775_coordIndex())
                .setCoord(new Coordinate("parietl_Coord").setPoint(getparietl_Coord_9_775_point()))))
            .addChild(new Shape("parietr")
              .setAppearance(new Appearance()
                .setMaterial(new Material().setAmbientIntensity(0.098).setDiffuseColor(1.0,0.9765,0.8667).setShininess(0.05).setSpecularColor(0.349,0.349,0.349)))
              .setGeometry(new IndexedFaceSet("parietr_Geo").setDEF("parietr_Geo").setCreaseAngle(1.571).setCoordIndex(getparietr_Geo_8_780_coordIndex())
                .setCoord(new Coordinate("parietr_Coord").setPoint(getparietr_Coord_9_780_point()))))
            .addChild(new Shape("rcalc")
              .setAppearance(new Appearance()
                .setMaterial(new Material().setAmbientIntensity(0.098).setDiffuseColor(1.0,0.9765,0.8667).setShininess(0.05).setSpecularColor(0.349,0.349,0.349)))
              .setGeometry(new IndexedFaceSet("rcalc_Geo").setDEF("rcalc_Geo").setCreaseAngle(1.571).setCoordIndex(getrcalc_Geo_8_785_coordIndex())
                .setCoord(new Coordinate("rcalc_Coord").setPoint(getrcalc_Coord_9_785_point()))))
            .addChild(new Shape("rcaninec")
              .setAppearance(new Appearance()
                .setMaterial(new Material().setAmbientIntensity(0.4).setDiffuseColor(1.0,0.9843,0.9843).setShininess(0.05)))
              .setGeometry(new IndexedFaceSet("rcaninec_Geo").setDEF("rcaninec_Geo").setCreaseAngle(1.571).setCoordIndex(getrcaninec_Geo_8_790_coordIndex())
                .setCoord(new Coordinate("rcaninec_Coord").setPoint(getrcaninec_Coord_9_790_point()))))
            .addChild(new Shape("rcaniner")
              .setAppearance(new Appearance()
                .setMaterial(new Material().setAmbientIntensity(0.4).setDiffuseColor(1.0,0.9843,0.9843).setShininess(0.05)))
              .setGeometry(new IndexedFaceSet("rcaniner_Geo").setDEF("rcaniner_Geo").setCreaseAngle(1.571).setCoordIndex(getrcaniner_Geo_8_795_coordIndex())
                .setCoord(new Coordinate("rcaniner_Coord").setPoint(getrcaniner_Coord_9_795_point()))))
            .addChild(new Shape("rcaninlc")
              .setAppearance(new Appearance()
                .setMaterial(new Material().setAmbientIntensity(0.4).setDiffuseColor(1.0,0.9843,0.9843).setShininess(0.05)))
              .setGeometry(new IndexedFaceSet("rcaninlc_Geo").setDEF("rcaninlc_Geo").setCreaseAngle(1.571).setCoordIndex(getrcaninlc_Geo_8_800_coordIndex())
                .setCoord(new Coordinate("rcaninlc_Coord").setPoint(getrcaninlc_Coord_9_800_point()))))
            .addChild(new Shape("rcaninlr")
              .setAppearance(new Appearance()
                .setMaterial(new Material().setAmbientIntensity(0.4).setDiffuseColor(1.0,0.9843,0.9843).setShininess(0.05)))
              .setGeometry(new IndexedFaceSet("rcaninlr_Geo").setDEF("rcaninlr_Geo").setCreaseAngle(1.571).setCoordIndex(getrcaninlr_Geo_8_805_coordIndex())
                .setCoord(new Coordinate("rcaninlr_Coord").setPoint(getrcaninlr_Coord_9_805_point()))))
            .addChild(new Shape("rcaptate")
              .setAppearance(new Appearance()
                .setMaterial(new Material().setAmbientIntensity(0.098).setDiffuseColor(1.0,0.9765,0.8667).setShininess(0.05).setSpecularColor(0.349,0.349,0.349)))
              .setGeometry(new IndexedFaceSet("rcaptate_Geo").setDEF("rcaptate_Geo").setCreaseAngle(1.571).setCoordIndex(getrcaptate_Geo_8_810_coordIndex())
                .setCoord(new Coordinate("rcaptate_Coord").setPoint(getrcaptate_Coord_9_810_point()))))
            .addChild(new Shape("rcartend")
              .setAppearance(new Appearance()
                .setMaterial(new Material().setAmbientIntensity(0.965).setDiffuseColor(0.9843,0.949,0.7843).setShininess(0.05).setSpecularColor(0.9647,0.949,0.9098)))
              .setGeometry(new IndexedFaceSet("rcartend_Geo").setDEF("rcartend_Geo").setCreaseAngle(1.571).setCoordIndex(getrcartend_Geo_8_815_coordIndex())
                .setCoord(new Coordinate("rcartend_Coord").setPoint(getrcartend_Coord_9_815_point()))))
            .addChild(new Shape("rccart")
              .setAppearance(new Appearance()
                .setMaterial(new Material().setAmbientIntensity(0.965).setDiffuseColor(0.9843,0.949,0.7843).setShininess(0.05).setSpecularColor(0.9647,0.949,0.9098)))
              .setGeometry(new IndexedFaceSet("rccart_Geo").setDEF("rccart_Geo").setCreaseAngle(1.571).setCoordIndex(getrccart_Geo_8_820_coordIndex())
                .setCoord(new Coordinate("rccart_Coord").setPoint(getrccart_Coord_9_820_point()))))
            .addChild(new Shape("rccart2")
              .setAppearance(new Appearance()
                .setMaterial(new Material().setAmbientIntensity(0.965).setDiffuseColor(0.9843,0.949,0.7843).setShininess(0.05).setSpecularColor(0.9647,0.949,0.9098)))
              .setGeometry(new IndexedFaceSet("rccart2_Geo").setDEF("rccart2_Geo").setCreaseAngle(1.571).setCoordIndex(getrccart2_Geo_8_825_coordIndex())
                .setCoord(new Coordinate("rccart2_Coord").setPoint(getrccart2_Coord_9_825_point()))))
            .addChild(new Shape("rcenincc")
              .setAppearance(new Appearance()
                .setMaterial(new Material().setAmbientIntensity(0.4).setDiffuseColor(1.0,0.9843,0.9843).setShininess(0.05)))
              .setGeometry(new IndexedFaceSet("rcenincc_Geo").setDEF("rcenincc_Geo").setCreaseAngle(1.571).setCoordIndex(getrcenincc_Geo_8_830_coordIndex())
                .setCoord(new Coordinate("rcenincc_Coord").setPoint(getrcenincc_Coord_9_830_point()))))
            .addChild(new Shape("rcenincr")
              .setAppearance(new Appearance()
                .setMaterial(new Material().setAmbientIntensity(0.4).setDiffuseColor(1.0,0.9843,0.9843).setShininess(0.05)))
              .setGeometry(new IndexedFaceSet("rcenincr_Geo").setDEF("rcenincr_Geo").setCreaseAngle(1.571).setCoordIndex(getrcenincr_Geo_8_835_coordIndex())
                .setCoord(new Coordinate("rcenincr_Coord").setPoint(getrcenincr_Coord_9_835_point()))))
            .addChild(new Shape("rceninlc")
              .setAppearance(new Appearance()
                .setMaterial(new Material().setAmbientIntensity(0.4).setDiffuseColor(1.0,0.9843,0.9843).setShininess(0.05)))
              .setGeometry(new IndexedFaceSet("rceninlc_Geo").setDEF("rceninlc_Geo").setCreaseAngle(1.571).setCoordIndex(getrceninlc_Geo_8_840_coordIndex())
                .setCoord(new Coordinate("rceninlc_Coord").setPoint(getrceninlc_Coord_9_840_point()))))
            .addChild(new Shape("rceninlr")
              .setAppearance(new Appearance()
                .setMaterial(new Material().setAmbientIntensity(0.4).setDiffuseColor(1.0,0.9843,0.9843).setShininess(0.05)))
              .setGeometry(new IndexedFaceSet("rceninlr_Geo").setDEF("rceninlr_Geo").setCreaseAngle(1.571).setCoordIndex(getrceninlr_Geo_8_845_coordIndex())
                .setCoord(new Coordinate("rceninlr_Coord").setPoint(getrceninlr_Coord_9_845_point()))))
            .addChild(new Shape("rclavcle")
              .setAppearance(new Appearance()
                .setMaterial(new Material().setAmbientIntensity(0.098).setDiffuseColor(1.0,0.9765,0.8667).setShininess(0.05).setSpecularColor(0.349,0.349,0.349)))
              .setGeometry(new IndexedFaceSet("rclavcle_Geo").setDEF("rclavcle_Geo").setCreaseAngle(1.571).setCoordIndex(getrclavcle_Geo_8_850_coordIndex())
                .setCoord(new Coordinate("rclavcle_Coord").setPoint(getrclavcle_Coord_9_850_point()))))
            .addChild(new Shape("rcoscart")
              .setAppearance(new Appearance()
                .setMaterial(new Material().setAmbientIntensity(0.965).setDiffuseColor(0.9843,0.949,0.7843).setShininess(0.05).setSpecularColor(0.9647,0.949,0.9098)))
              .setGeometry(new IndexedFaceSet("rcoscart_Geo").setDEF("rcoscart_Geo").setCreaseAngle(1.571).setCoordIndex(getrcoscart_Geo_8_855_coordIndex())
                .setCoord(new Coordinate("rcoscart_Coord").setPoint(getrcoscart_Coord_9_855_point()))))
            .addChild(new Shape("rcuboid")
              .setAppearance(new Appearance()
                .setMaterial(new Material().setAmbientIntensity(0.098).setDiffuseColor(1.0,0.9765,0.8667).setShininess(0.05).setSpecularColor(0.349,0.349,0.349)))
              .setGeometry(new IndexedFaceSet("rcuboid_Geo").setDEF("rcuboid_Geo").setCreaseAngle(1.571).setCoordIndex(getrcuboid_Geo_8_860_coordIndex())
                .setCoord(new Coordinate("rcuboid_Coord").setPoint(getrcuboid_Coord_9_860_point()))))
            .addChild(new Shape("rdphal")
              .setAppearance(new Appearance()
                .setMaterial(new Material().setAmbientIntensity(0.098).setDiffuseColor(1.0,0.9765,0.8667).setShininess(0.05).setSpecularColor(0.349,0.349,0.349)))
              .setGeometry(new IndexedFaceSet("rdphal_Geo").setDEF("rdphal_Geo").setCreaseAngle(1.571).setCoordIndex(getrdphal_Geo_8_865_coordIndex())
                .setCoord(new Coordinate("rdphal_Coord").setPoint(getrdphal_Coord_9_865_point()))))
            .addChild(new Shape("rdphal2")
              .setAppearance(new Appearance()
                .setMaterial(new Material().setAmbientIntensity(0.098).setDiffuseColor(1.0,0.9765,0.8667).setShininess(0.05).setSpecularColor(0.349,0.349,0.349)))
              .setGeometry(new IndexedFaceSet("rdphal2_Geo").setDEF("rdphal2_Geo").setCreaseAngle(1.571).setCoordIndex(getrdphal2_Geo_8_870_coordIndex())
                .setCoord(new Coordinate("rdphal2_Coord").setPoint(getrdphal2_Coord_9_870_point()))))
            .addChild(new Shape("rdphal3")
              .setAppearance(new Appearance()
                .setMaterial(new Material().setAmbientIntensity(0.098).setDiffuseColor(1.0,0.9765,0.8667).setShininess(0.05).setSpecularColor(0.349,0.349,0.349)))
              .setGeometry(new IndexedFaceSet("rdphal3_Geo").setDEF("rdphal3_Geo").setCreaseAngle(1.571).setCoordIndex(getrdphal3_Geo_8_875_coordIndex())
                .setCoord(new Coordinate("rdphal3_Coord").setPoint(getrdphal3_Coord_9_875_point()))))
            .addChild(new Shape("rdphal4")
              .setAppearance(new Appearance()
                .setMaterial(new Material().setAmbientIntensity(0.098).setDiffuseColor(1.0,0.9765,0.8667).setShininess(0.05).setSpecularColor(0.349,0.349,0.349)))
              .setGeometry(new IndexedFaceSet("rdphal4_Geo").setDEF("rdphal4_Geo").setCreaseAngle(1.571).setCoordIndex(getrdphal4_Geo_8_880_coordIndex())
                .setCoord(new Coordinate("rdphal4_Coord").setPoint(getrdphal4_Coord_9_880_point()))))
            .addChild(new Shape("rdphal5")
              .setAppearance(new Appearance()
                .setMaterial(new Material().setAmbientIntensity(0.098).setDiffuseColor(1.0,0.9765,0.8667).setShininess(0.05).setSpecularColor(0.349,0.349,0.349)))
              .setGeometry(new IndexedFaceSet("rdphal5_Geo").setDEF("rdphal5_Geo").setCreaseAngle(1.571).setCoordIndex(getrdphal5_Geo_8_885_coordIndex())
                .setCoord(new Coordinate("rdphal5_Coord").setPoint(getrdphal5_Coord_9_885_point()))))
            .addChild(new Shape("rfdphal")
              .setAppearance(new Appearance()
                .setMaterial(new Material().setAmbientIntensity(0.098).setDiffuseColor(1.0,0.9765,0.8667).setShininess(0.05).setSpecularColor(0.349,0.349,0.349)))
              .setGeometry(new IndexedFaceSet("rfdphal_Geo").setDEF("rfdphal_Geo").setCreaseAngle(1.571).setCoordIndex(getrfdphal_Geo_8_890_coordIndex())
                .setCoord(new Coordinate("rfdphal_Coord").setPoint(getrfdphal_Coord_9_890_point()))))
            .addChild(new Shape("rfdphal2")
              .setAppearance(new Appearance()
                .setMaterial(new Material().setAmbientIntensity(0.098).setDiffuseColor(1.0,0.9765,0.8667).setShininess(0.05).setSpecularColor(0.349,0.349,0.349)))
              .setGeometry(new IndexedFaceSet("rfdphal2_Geo").setDEF("rfdphal2_Geo").setCreaseAngle(1.571).setCoordIndex(getrfdphal2_Geo_8_895_coordIndex())
                .setCoord(new Coordinate("rfdphal2_Coord").setPoint(getrfdphal2_Coord_9_895_point()))))
            .addChild(new Shape("rfdphal3")
              .setAppearance(new Appearance()
                .setMaterial(new Material().setAmbientIntensity(0.098).setDiffuseColor(1.0,0.9765,0.8667).setShininess(0.05).setSpecularColor(0.349,0.349,0.349)))
              .setGeometry(new IndexedFaceSet("rfdphal3_Geo").setDEF("rfdphal3_Geo").setCreaseAngle(1.571).setCoordIndex(getrfdphal3_Geo_8_900_coordIndex())
                .setCoord(new Coordinate("rfdphal3_Coord").setPoint(getrfdphal3_Coord_9_900_point()))))
            .addChild(new Shape("rfdphal4")
              .setAppearance(new Appearance()
                .setMaterial(new Material().setAmbientIntensity(0.098).setDiffuseColor(1.0,0.9765,0.8667).setShininess(0.05).setSpecularColor(0.349,0.349,0.349)))
              .setGeometry(new IndexedFaceSet("rfdphal4_Geo").setDEF("rfdphal4_Geo").setCreaseAngle(1.571).setCoordIndex(getrfdphal4_Geo_8_905_coordIndex())
                .setCoord(new Coordinate("rfdphal4_Coord").setPoint(getrfdphal4_Coord_9_905_point()))))
            .addChild(new Shape("rfdphal5")
              .setAppearance(new Appearance()
                .setMaterial(new Material().setAmbientIntensity(0.098).setDiffuseColor(1.0,0.9765,0.8667).setShininess(0.05).setSpecularColor(0.349,0.349,0.349)))
              .setGeometry(new IndexedFaceSet("rfdphal5_Geo").setDEF("rfdphal5_Geo").setCreaseAngle(1.571).setCoordIndex(getrfdphal5_Geo_8_910_coordIndex())
                .setCoord(new Coordinate("rfdphal5_Coord").setPoint(getrfdphal5_Coord_9_910_point()))))
            .addChild(new Shape("rfemur")
              .setAppearance(new Appearance()
                .setMaterial(new Material().setAmbientIntensity(0.098).setDiffuseColor(1.0,0.9765,0.8667).setShininess(0.05).setSpecularColor(0.349,0.349,0.349)))
              .setGeometry(new IndexedFaceSet("rfemur_Geo").setDEF("rfemur_Geo").setCreaseAngle(1.571).setCoordIndex(getrfemur_Geo_8_915_coordIndex())
                .setCoord(new Coordinate("rfemur_Coord").setPoint(getrfemur_Coord_9_915_point()))))
            .addChild(new Shape("rfmet")
              .setAppearance(new Appearance()
                .setMaterial(new Material().setAmbientIntensity(0.098).setDiffuseColor(1.0,0.9765,0.8667).setShininess(0.05).setSpecularColor(0.349,0.349,0.349)))
              .setGeometry(new IndexedFaceSet("rfmet_Geo").setDEF("rfmet_Geo").setCreaseAngle(1.571).setCoordIndex(getrfmet_Geo_8_920_coordIndex())
                .setCoord(new Coordinate("rfmet_Coord").setPoint(getrfmet_Coord_9_920_point()))))
            .addChild(new Shape("rfmphal")
              .setAppearance(new Appearance()
                .setMaterial(new Material().setAmbientIntensity(0.098).setDiffuseColor(1.0,0.9765,0.8667).setShininess(0.05).setSpecularColor(0.349,0.349,0.349)))
              .setGeometry(new IndexedFaceSet("rfmphal_Geo").setDEF("rfmphal_Geo").setCreaseAngle(1.571).setCoordIndex(getrfmphal_Geo_8_925_coordIndex())
                .setCoord(new Coordinate("rfmphal_Coord").setPoint(getrfmphal_Coord_9_925_point()))))
            .addChild(new Shape("rfmphal2")
              .setAppearance(new Appearance()
                .setMaterial(new Material().setAmbientIntensity(0.098).setDiffuseColor(1.0,0.9765,0.8667).setShininess(0.05).setSpecularColor(0.349,0.349,0.349)))
              .setGeometry(new IndexedFaceSet("rfmphal2_Geo").setDEF("rfmphal2_Geo").setCreaseAngle(1.571).setCoordIndex(getrfmphal2_Geo_8_930_coordIndex())
                .setCoord(new Coordinate("rfmphal2_Coord").setPoint(getrfmphal2_Coord_9_930_point()))))
            .addChild(new Shape("rfmphal3")
              .setAppearance(new Appearance()
                .setMaterial(new Material().setAmbientIntensity(0.098).setDiffuseColor(1.0,0.9765,0.8667).setShininess(0.05).setSpecularColor(0.349,0.349,0.349)))
              .setGeometry(new IndexedFaceSet("rfmphal3_Geo").setDEF("rfmphal3_Geo").setCreaseAngle(1.571).setCoordIndex(getrfmphal3_Geo_8_935_coordIndex())
                .setCoord(new Coordinate("rfmphal3_Coord").setPoint(getrfmphal3_Coord_9_935_point()))))
            .addChild(new Shape("rfmphal4")
              .setAppearance(new Appearance()
                .setMaterial(new Material().setAmbientIntensity(0.098).setDiffuseColor(1.0,0.9765,0.8667).setShininess(0.05).setSpecularColor(0.349,0.349,0.349)))
              .setGeometry(new IndexedFaceSet("rfmphal4_Geo").setDEF("rfmphal4_Geo").setCreaseAngle(1.571).setCoordIndex(getrfmphal4_Geo_8_940_coordIndex())
                .setCoord(new Coordinate("rfmphal4_Coord").setPoint(getrfmphal4_Coord_9_940_point()))))
            .addChild(new Shape("rfpprox2")
              .setAppearance(new Appearance()
                .setMaterial(new Material().setAmbientIntensity(0.098).setDiffuseColor(1.0,0.9765,0.8667).setShininess(0.05).setSpecularColor(0.349,0.349,0.349)))
              .setGeometry(new IndexedFaceSet("rfpprox2_Geo").setDEF("rfpprox2_Geo").setCreaseAngle(1.571).setCoordIndex(getrfpprox2_Geo_8_945_coordIndex())
                .setCoord(new Coordinate("rfpprox2_Coord").setPoint(getrfpprox2_Coord_9_945_point()))))
            .addChild(new Shape("rfpprox3")
              .setAppearance(new Appearance()
                .setMaterial(new Material().setAmbientIntensity(0.098).setDiffuseColor(1.0,0.9765,0.8667).setShininess(0.05).setSpecularColor(0.349,0.349,0.349)))
              .setGeometry(new IndexedFaceSet("rfpprox3_Geo").setDEF("rfpprox3_Geo").setCreaseAngle(1.571).setCoordIndex(getrfpprox3_Geo_8_950_coordIndex())
                .setCoord(new Coordinate("rfpprox3_Coord").setPoint(getrfpprox3_Coord_9_950_point()))))
            .addChild(new Shape("rfpprox4")
              .setAppearance(new Appearance()
                .setMaterial(new Material().setAmbientIntensity(0.098).setDiffuseColor(1.0,0.9765,0.8667).setShininess(0.05).setSpecularColor(0.349,0.349,0.349)))
              .setGeometry(new IndexedFaceSet("rfpprox4_Geo").setDEF("rfpprox4_Geo").setCreaseAngle(1.571).setCoordIndex(getrfpprox4_Geo_8_955_coordIndex())
                .setCoord(new Coordinate("rfpprox4_Coord").setPoint(getrfpprox4_Coord_9_955_point()))))
            .addChild(new Shape("rfpprox5")
              .setAppearance(new Appearance()
                .setMaterial(new Material().setAmbientIntensity(0.098).setDiffuseColor(1.0,0.9765,0.8667).setShininess(0.05).setSpecularColor(0.349,0.349,0.349)))
              .setGeometry(new IndexedFaceSet("rfpprox5_Geo").setDEF("rfpprox5_Geo").setCreaseAngle(1.571).setCoordIndex(getrfpprox5_Geo_8_960_coordIndex())
                .setCoord(new Coordinate("rfpprox5_Coord").setPoint(getrfpprox5_Coord_9_960_point()))))
            .addChild(new Shape("rfprox")
              .setAppearance(new Appearance()
                .setMaterial(new Material().setAmbientIntensity(0.098).setDiffuseColor(1.0,0.9765,0.8667).setShininess(0.05).setSpecularColor(0.349,0.349,0.349)))
              .setGeometry(new IndexedFaceSet("rfprox_Geo").setDEF("rfprox_Geo").setCreaseAngle(1.571).setCoordIndex(getrfprox_Geo_8_965_coordIndex())
                .setCoord(new Coordinate("rfprox_Coord").setPoint(getrfprox_Coord_9_965_point()))))
            .addChild(new Shape("rfreecrt")
              .setAppearance(new Appearance()
                .setMaterial(new Material().setAmbientIntensity(0.965).setDiffuseColor(0.9843,0.949,0.7843).setShininess(0.05).setSpecularColor(0.9647,0.949,0.9098)))
              .setGeometry(new IndexedFaceSet("rfreecrt_Geo").setDEF("rfreecrt_Geo").setCreaseAngle(1.571).setCoordIndex(getrfreecrt_Geo_8_970_coordIndex())
                .setCoord(new Coordinate("rfreecrt_Coord").setPoint(getrfreecrt_Coord_9_970_point()))))
            .addChild(new Shape("rhamate")
              .setAppearance(new Appearance()
                .setMaterial(new Material().setAmbientIntensity(0.098).setDiffuseColor(1.0,0.9765,0.8667).setShininess(0.05).setSpecularColor(0.349,0.349,0.349)))
              .setGeometry(new IndexedFaceSet("rhamate_Geo").setDEF("rhamate_Geo").setCreaseAngle(1.571).setCoordIndex(getrhamate_Geo_8_975_coordIndex())
                .setCoord(new Coordinate("rhamate_Coord").setPoint(getrhamate_Coord_9_975_point()))))
            .addChild(new Shape("rhumerus")
              .setAppearance(new Appearance()
                .setMaterial(new Material().setAmbientIntensity(0.098).setDiffuseColor(1.0,0.9765,0.8667).setShininess(0.05).setSpecularColor(0.349,0.349,0.349)))
              .setGeometry(new IndexedFaceSet("rhumerus_Geo").setDEF("rhumerus_Geo").setCreaseAngle(1.571).setCoordIndex(getrhumerus_Geo_8_980_coordIndex())
                .setCoord(new Coordinate("rhumerus_Coord").setPoint(getrhumerus_Coord_9_980_point()))))
            .addChild(new Shape("ricun")
              .setAppearance(new Appearance()
                .setMaterial(new Material().setAmbientIntensity(0.098).setDiffuseColor(1.0,0.9765,0.8667).setShininess(0.05).setSpecularColor(0.349,0.349,0.349)))
              .setGeometry(new IndexedFaceSet("ricun_Geo").setDEF("ricun_Geo").setCreaseAngle(1.571).setCoordIndex(getricun_Geo_8_985_coordIndex())
                .setCoord(new Coordinate("ricun_Coord").setPoint(getricun_Coord_9_985_point()))))
            .addChild(new Shape("rlatincc")
              .setAppearance(new Appearance()
                .setMaterial(new Material().setAmbientIntensity(0.4).setDiffuseColor(1.0,0.9843,0.9843).setShininess(0.05)))
              .setGeometry(new IndexedFaceSet("rlatincc_Geo").setDEF("rlatincc_Geo").setCreaseAngle(1.571).setCoordIndex(getrlatincc_Geo_8_990_coordIndex())
                .setCoord(new Coordinate("rlatincc_Coord").setPoint(getrlatincc_Coord_9_990_point()))))
            .addChild(new Shape("rlatincr")
              .setAppearance(new Appearance()
                .setMaterial(new Material().setAmbientIntensity(0.4).setDiffuseColor(1.0,0.9843,0.9843).setShininess(0.05)))
              .setGeometry(new IndexedFaceSet("rlatincr_Geo").setDEF("rlatincr_Geo").setCreaseAngle(1.571).setCoordIndex(getrlatincr_Geo_8_995_coordIndex())
                .setCoord(new Coordinate("rlatincr_Coord").setPoint(getrlatincr_Coord_9_995_point()))))
            .addChild(new Shape("rlatinlc")
              .setAppearance(new Appearance()
                .setMaterial(new Material().setAmbientIntensity(0.4).setDiffuseColor(1.0,0.9843,0.9843).setShininess(0.05)))
              .setGeometry(new IndexedFaceSet("rlatinlc_Geo").setDEF("rlatinlc_Geo").setCreaseAngle(1.571).setCoordIndex(getrlatinlc_Geo_8_1000_coordIndex())
                .setCoord(new Coordinate("rlatinlc_Coord").setPoint(getrlatinlc_Coord_9_1000_point()))))
            .addChild(new Shape("rlatinlr")
              .setAppearance(new Appearance()
                .setMaterial(new Material().setAmbientIntensity(0.4).setDiffuseColor(1.0,0.9843,0.9843).setShininess(0.05)))
              .setGeometry(new IndexedFaceSet("rlatinlr_Geo").setDEF("rlatinlr_Geo").setCreaseAngle(1.571).setCoordIndex(getrlatinlr_Geo_8_1005_coordIndex())
                .setCoord(new Coordinate("rlatinlr_Coord").setPoint(getrlatinlr_Coord_9_1005_point()))))
            .addChild(new Shape("rlcun")
              .setAppearance(new Appearance()
                .setMaterial(new Material().setAmbientIntensity(0.098).setDiffuseColor(1.0,0.9765,0.8667).setShininess(0.05).setSpecularColor(0.349,0.349,0.349)))
              .setGeometry(new IndexedFaceSet("rlcun_Geo").setDEF("rlcun_Geo").setCreaseAngle(1.571).setCoordIndex(getrlcun_Geo_8_1010_coordIndex())
                .setCoord(new Coordinate("rlcun_Coord").setPoint(getrlcun_Coord_9_1010_point()))))
            .addChild(new Shape("rlunate")
              .setAppearance(new Appearance()
                .setMaterial(new Material().setAmbientIntensity(0.098).setDiffuseColor(1.0,0.9765,0.8667).setShininess(0.05).setSpecularColor(0.349,0.349,0.349)))
              .setGeometry(new IndexedFaceSet("rlunate_Geo").setDEF("rlunate_Geo").setCreaseAngle(1.571).setCoordIndex(getrlunate_Geo_8_1015_coordIndex())
                .setCoord(new Coordinate("rlunate_Coord").setPoint(getrlunate_Coord_9_1015_point()))))
            .addChild(new Shape("rmc")
              .setAppearance(new Appearance()
                .setMaterial(new Material().setAmbientIntensity(0.098).setDiffuseColor(1.0,0.9765,0.8667).setShininess(0.05).setSpecularColor(0.349,0.349,0.349)))
              .setGeometry(new IndexedFaceSet("rmc_Geo").setDEF("rmc_Geo").setCreaseAngle(1.571).setCoordIndex(getrmc_Geo_8_1020_coordIndex())
                .setCoord(new Coordinate("rmc_Coord").setPoint(getrmc_Coord_9_1020_point()))))
            .addChild(new Shape("rmc2")
              .setAppearance(new Appearance()
                .setMaterial(new Material().setAmbientIntensity(0.098).setDiffuseColor(1.0,0.9765,0.8667).setShininess(0.05).setSpecularColor(0.349,0.349,0.349)))
              .setGeometry(new IndexedFaceSet("rmc2_Geo").setDEF("rmc2_Geo").setCreaseAngle(1.571).setCoordIndex(getrmc2_Geo_8_1025_coordIndex())
                .setCoord(new Coordinate("rmc2_Coord").setPoint(getrmc2_Coord_9_1025_point()))))
            .addChild(new Shape("rmc3")
              .setAppearance(new Appearance()
                .setMaterial(new Material().setAmbientIntensity(0.098).setDiffuseColor(1.0,0.9765,0.8667).setShininess(0.05).setSpecularColor(0.349,0.349,0.349)))
              .setGeometry(new IndexedFaceSet("rmc3_Geo").setDEF("rmc3_Geo").setCreaseAngle(1.571).setCoordIndex(getrmc3_Geo_8_1030_coordIndex())
                .setCoord(new Coordinate("rmc3_Coord").setPoint(getrmc3_Coord_9_1030_point()))))
            .addChild(new Shape("rmc4")
              .setAppearance(new Appearance()
                .setMaterial(new Material().setAmbientIntensity(0.098).setDiffuseColor(1.0,0.9765,0.8667).setShininess(0.05).setSpecularColor(0.349,0.349,0.349)))
              .setGeometry(new IndexedFaceSet("rmc4_Geo").setDEF("rmc4_Geo").setCreaseAngle(1.571).setCoordIndex(getrmc4_Geo_8_1035_coordIndex())
                .setCoord(new Coordinate("rmc4_Coord").setPoint(getrmc4_Coord_9_1035_point()))))
            .addChild(new Shape("rmc5")
              .setAppearance(new Appearance()
                .setMaterial(new Material().setAmbientIntensity(0.098).setDiffuseColor(1.0,0.9765,0.8667).setShininess(0.05).setSpecularColor(0.349,0.349,0.349)))
              .setGeometry(new IndexedFaceSet("rmc5_Geo").setDEF("rmc5_Geo").setCreaseAngle(1.571).setCoordIndex(getrmc5_Geo_8_1040_coordIndex())
                .setCoord(new Coordinate("rmc5_Coord").setPoint(getrmc5_Coord_9_1040_point()))))
            .addChild(new Shape("rmcun")
              .setAppearance(new Appearance()
                .setMaterial(new Material().setAmbientIntensity(0.098).setDiffuseColor(1.0,0.9765,0.8667).setShininess(0.05).setSpecularColor(0.349,0.349,0.349)))
              .setGeometry(new IndexedFaceSet("rmcun_Geo").setDEF("rmcun_Geo").setCreaseAngle(1.571).setCoordIndex(getrmcun_Geo_8_1045_coordIndex())
                .setCoord(new Coordinate("rmcun_Coord").setPoint(getrmcun_Coord_9_1045_point()))))
            .addChild(new Shape("rmet2")
              .setAppearance(new Appearance()
                .setMaterial(new Material().setAmbientIntensity(0.098).setDiffuseColor(1.0,0.9765,0.8667).setShininess(0.05).setSpecularColor(0.349,0.349,0.349)))
              .setGeometry(new IndexedFaceSet("rmet2_Geo").setDEF("rmet2_Geo").setCreaseAngle(1.571).setCoordIndex(getrmet2_Geo_8_1050_coordIndex())
                .setCoord(new Coordinate("rmet2_Coord").setPoint(getrmet2_Coord_9_1050_point()))))
            .addChild(new Shape("rmet3")
              .setAppearance(new Appearance()
                .setMaterial(new Material().setAmbientIntensity(0.098).setDiffuseColor(1.0,0.9765,0.8667).setShininess(0.05).setSpecularColor(0.349,0.349,0.349)))
              .setGeometry(new IndexedFaceSet("rmet3_Geo").setDEF("rmet3_Geo").setCreaseAngle(1.571).setCoordIndex(getrmet3_Geo_8_1055_coordIndex())
                .setCoord(new Coordinate("rmet3_Coord").setPoint(getrmet3_Coord_9_1055_point()))))
            .addChild(new Shape("rmet4")
              .setAppearance(new Appearance()
                .setMaterial(new Material().setAmbientIntensity(0.098).setDiffuseColor(1.0,0.9765,0.8667).setShininess(0.05).setSpecularColor(0.349,0.349,0.349)))
              .setGeometry(new IndexedFaceSet("rmet4_Geo").setDEF("rmet4_Geo").setCreaseAngle(1.571).setCoordIndex(getrmet4_Geo_8_1060_coordIndex())
                .setCoord(new Coordinate("rmet4_Coord").setPoint(getrmet4_Coord_9_1060_point()))))
            .addChild(new Shape("rmet5")
              .setAppearance(new Appearance()
                .setMaterial(new Material().setAmbientIntensity(0.098).setDiffuseColor(1.0,0.9765,0.8667).setShininess(0.05).setSpecularColor(0.349,0.349,0.349)))
              .setGeometry(new IndexedFaceSet("rmet5_Geo").setDEF("rmet5_Geo").setCreaseAngle(1.571).setCoordIndex(getrmet5_Geo_8_1065_coordIndex())
                .setCoord(new Coordinate("rmet5_Coord").setPoint(getrmet5_Coord_9_1065_point()))))
            .addChild(new Shape("rmolar1c")
              .setAppearance(new Appearance()
                .setMaterial(new Material().setAmbientIntensity(0.4).setDiffuseColor(1.0,0.9843,0.9843).setShininess(0.05)))
              .setGeometry(new IndexedFaceSet("rmolar1c_Geo").setDEF("rmolar1c_Geo").setCreaseAngle(1.571).setCoordIndex(getrmolar1c_Geo_8_1070_coordIndex())
                .setCoord(new Coordinate("rmolar1c_Coord").setPoint(getrmolar1c_Coord_9_1070_point()))))
            .addChild(new Shape("rmolar1r")
              .setAppearance(new Appearance()
                .setMaterial(new Material().setAmbientIntensity(0.4).setDiffuseColor(1.0,0.9843,0.9843).setShininess(0.05)))
              .setGeometry(new IndexedFaceSet("rmolar1r_Geo").setDEF("rmolar1r_Geo").setCreaseAngle(1.571).setCoordIndex(getrmolar1r_Geo_8_1075_coordIndex())
                .setCoord(new Coordinate("rmolar1r_Coord").setPoint(getrmolar1r_Coord_9_1075_point()))))
            .addChild(new Shape("rmolar2c")
              .setAppearance(new Appearance()
                .setMaterial(new Material().setAmbientIntensity(0.4).setDiffuseColor(1.0,0.9843,0.9843).setShininess(0.05)))
              .setGeometry(new IndexedFaceSet("rmolar2c_Geo").setDEF("rmolar2c_Geo").setCreaseAngle(1.571).setCoordIndex(getrmolar2c_Geo_8_1080_coordIndex())
                .setCoord(new Coordinate("rmolar2c_Coord").setPoint(getrmolar2c_Coord_9_1080_point()))))
            .addChild(new Shape("rmolar2r")
              .setAppearance(new Appearance()
                .setMaterial(new Material().setAmbientIntensity(0.4).setDiffuseColor(1.0,0.9843,0.9843).setShininess(0.05)))
              .setGeometry(new IndexedFaceSet("rmolar2r_Geo").setDEF("rmolar2r_Geo").setCreaseAngle(1.571).setCoordIndex(getrmolar2r_Geo_8_1085_coordIndex())
                .setCoord(new Coordinate("rmolar2r_Coord").setPoint(getrmolar2r_Coord_9_1085_point()))))
            .addChild(new Shape("rmolar3c")
              .setAppearance(new Appearance()
                .setMaterial(new Material().setAmbientIntensity(0.4).setDiffuseColor(1.0,0.9843,0.9843).setShininess(0.05)))
              .setGeometry(new IndexedFaceSet("rmolar3c_Geo").setDEF("rmolar3c_Geo").setCreaseAngle(1.571).setCoordIndex(getrmolar3c_Geo_8_1090_coordIndex())
                .setCoord(new Coordinate("rmolar3c_Coord").setPoint(getrmolar3c_Coord_9_1090_point()))))
            .addChild(new Shape("rmolar3r")
              .setAppearance(new Appearance()
                .setMaterial(new Material().setAmbientIntensity(0.4).setDiffuseColor(1.0,0.9843,0.9843).setShininess(0.05)))
              .setGeometry(new IndexedFaceSet("rmolar3r_Geo").setDEF("rmolar3r_Geo").setCreaseAngle(1.571).setCoordIndex(getrmolar3r_Geo_8_1095_coordIndex())
                .setCoord(new Coordinate("rmolar3r_Coord").setPoint(getrmolar3r_Coord_9_1095_point()))))
            .addChild(new Shape("rmolr1lc")
              .setAppearance(new Appearance()
                .setMaterial(new Material().setAmbientIntensity(0.4).setDiffuseColor(1.0,0.9843,0.9843).setShininess(0.05)))
              .setGeometry(new IndexedFaceSet("rmolr1lc_Geo").setDEF("rmolr1lc_Geo").setCreaseAngle(1.571).setCoordIndex(getrmolr1lc_Geo_8_1100_coordIndex())
                .setCoord(new Coordinate("rmolr1lc_Coord").setPoint(getrmolr1lc_Coord_9_1100_point()))))
            .addChild(new Shape("rmolr1lr")
              .setAppearance(new Appearance()
                .setMaterial(new Material().setAmbientIntensity(0.4).setDiffuseColor(1.0,0.9843,0.9843).setShininess(0.05)))
              .setGeometry(new IndexedFaceSet("rmolr1lr_Geo").setDEF("rmolr1lr_Geo").setCreaseAngle(1.571).setCoordIndex(getrmolr1lr_Geo_8_1105_coordIndex())
                .setCoord(new Coordinate("rmolr1lr_Coord").setPoint(getrmolr1lr_Coord_9_1105_point()))))
            .addChild(new Shape("rmolr2lc")
              .setAppearance(new Appearance()
                .setMaterial(new Material().setAmbientIntensity(0.4).setDiffuseColor(1.0,0.9843,0.9843).setShininess(0.05)))
              .setGeometry(new IndexedFaceSet("rmolr2lc_Geo").setDEF("rmolr2lc_Geo").setCreaseAngle(1.571).setCoordIndex(getrmolr2lc_Geo_8_1110_coordIndex())
                .setCoord(new Coordinate("rmolr2lc_Coord").setPoint(getrmolr2lc_Coord_9_1110_point()))))
            .addChild(new Shape("rmolr2lr")
              .setAppearance(new Appearance()
                .setMaterial(new Material().setAmbientIntensity(0.4).setDiffuseColor(1.0,0.9843,0.9843).setShininess(0.05)))
              .setGeometry(new IndexedFaceSet("rmolr2lr_Geo").setDEF("rmolr2lr_Geo").setCreaseAngle(1.571).setCoordIndex(getrmolr2lr_Geo_8_1115_coordIndex())
                .setCoord(new Coordinate("rmolr2lr_Coord").setPoint(getrmolr2lr_Coord_9_1115_point()))))
            .addChild(new Shape("rmolr3lc")
              .setAppearance(new Appearance()
                .setMaterial(new Material().setAmbientIntensity(0.4).setDiffuseColor(1.0,0.9843,0.9843).setShininess(0.05)))
              .setGeometry(new IndexedFaceSet("rmolr3lc_Geo").setDEF("rmolr3lc_Geo").setCreaseAngle(1.571).setCoordIndex(getrmolr3lc_Geo_8_1120_coordIndex())
                .setCoord(new Coordinate("rmolr3lc_Coord").setPoint(getrmolr3lc_Coord_9_1120_point()))))
            .addChild(new Shape("rmolr3lr")
              .setAppearance(new Appearance()
                .setMaterial(new Material().setAmbientIntensity(0.4).setDiffuseColor(1.0,0.9843,0.9843).setShininess(0.05)))
              .setGeometry(new IndexedFaceSet("rmolr3lr_Geo").setDEF("rmolr3lr_Geo").setCreaseAngle(1.571).setCoordIndex(getrmolr3lr_Geo_8_1125_coordIndex())
                .setCoord(new Coordinate("rmolr3lr_Coord").setPoint(getrmolr3lr_Coord_9_1125_point()))))
            .addChild(new Shape("rmphal2")
              .setAppearance(new Appearance()
                .setMaterial(new Material().setAmbientIntensity(0.098).setDiffuseColor(1.0,0.9765,0.8667).setShininess(0.05).setSpecularColor(0.349,0.349,0.349)))
              .setGeometry(new IndexedFaceSet("rmphal2_Geo").setDEF("rmphal2_Geo").setCreaseAngle(1.571).setCoordIndex(getrmphal2_Geo_8_1130_coordIndex())
                .setCoord(new Coordinate("rmphal2_Coord").setPoint(getrmphal2_Coord_9_1130_point()))))
            .addChild(new Shape("rmphal3")
              .setAppearance(new Appearance()
                .setMaterial(new Material().setAmbientIntensity(0.098).setDiffuseColor(1.0,0.9765,0.8667).setShininess(0.05).setSpecularColor(0.349,0.349,0.349)))
              .setGeometry(new IndexedFaceSet("rmphal3_Geo").setDEF("rmphal3_Geo").setCreaseAngle(1.571).setCoordIndex(getrmphal3_Geo_8_1135_coordIndex())
                .setCoord(new Coordinate("rmphal3_Coord").setPoint(getrmphal3_Coord_9_1135_point()))))
            .addChild(new Shape("rmphal4")
              .setAppearance(new Appearance()
                .setMaterial(new Material().setAmbientIntensity(0.098).setDiffuseColor(1.0,0.9765,0.8667).setShininess(0.05).setSpecularColor(0.349,0.349,0.349)))
              .setGeometry(new IndexedFaceSet("rmphal4_Geo").setDEF("rmphal4_Geo").setCreaseAngle(1.571).setCoordIndex(getrmphal4_Geo_8_1140_coordIndex())
                .setCoord(new Coordinate("rmphal4_Coord").setPoint(getrmphal4_Coord_9_1140_point()))))
            .addChild(new Shape("rmphal5")
              .setAppearance(new Appearance()
                .setMaterial(new Material().setAmbientIntensity(0.098).setDiffuseColor(1.0,0.9765,0.8667).setShininess(0.05).setSpecularColor(0.349,0.349,0.349)))
              .setGeometry(new IndexedFaceSet("rmphal5_Geo").setDEF("rmphal5_Geo").setCreaseAngle(1.571).setCoordIndex(getrmphal5_Geo_8_1145_coordIndex())
                .setCoord(new Coordinate("rmphal5_Coord").setPoint(getrmphal5_Coord_9_1145_point()))))
            .addChild(new Shape("rnaviclr")
              .setAppearance(new Appearance()
                .setMaterial(new Material().setAmbientIntensity(0.098).setDiffuseColor(1.0,0.9765,0.8667).setShininess(0.05).setSpecularColor(0.349,0.349,0.349)))
              .setGeometry(new IndexedFaceSet("rnaviclr_Geo").setDEF("rnaviclr_Geo").setCreaseAngle(1.571).setCoordIndex(getrnaviclr_Geo_8_1150_coordIndex())
                .setCoord(new Coordinate("rnaviclr_Coord").setPoint(getrnaviclr_Coord_9_1150_point()))))
            .addChild(new Shape("roscoxae")
              .setAppearance(new Appearance()
                .setMaterial(new Material().setAmbientIntensity(0.098).setDiffuseColor(1.0,0.9765,0.8667).setShininess(0.05).setSpecularColor(0.349,0.349,0.349)))
              .setGeometry(new IndexedFaceSet("roscoxae_Geo").setDEF("roscoxae_Geo").setCreaseAngle(1.571).setCoordIndex(getroscoxae_Geo_8_1155_coordIndex())
                .setCoord(new Coordinate("roscoxae_Coord").setPoint(getroscoxae_Coord_9_1155_point()))))
            .addChild(new Shape("rpisform")
              .setAppearance(new Appearance()
                .setMaterial(new Material().setAmbientIntensity(0.098).setDiffuseColor(1.0,0.9765,0.8667).setShininess(0.05).setSpecularColor(0.349,0.349,0.349)))
              .setGeometry(new IndexedFaceSet("rpisform_Geo").setDEF("rpisform_Geo").setCreaseAngle(1.571).setCoordIndex(getrpisform_Geo_8_1160_coordIndex())
                .setCoord(new Coordinate("rpisform_Coord").setPoint(getrpisform_Coord_9_1160_point()))))
            .addChild(new Shape("rpphal")
              .setAppearance(new Appearance()
                .setMaterial(new Material().setAmbientIntensity(0.098).setDiffuseColor(1.0,0.9765,0.8667).setShininess(0.05).setSpecularColor(0.349,0.349,0.349)))
              .setGeometry(new IndexedFaceSet("rpphal_Geo").setDEF("rpphal_Geo").setCreaseAngle(1.571).setCoordIndex(getrpphal_Geo_8_1165_coordIndex())
                .setCoord(new Coordinate("rpphal_Coord").setPoint(getrpphal_Coord_9_1165_point()))))
            .addChild(new Shape("rpphal2")
              .setAppearance(new Appearance()
                .setMaterial(new Material().setAmbientIntensity(0.098).setDiffuseColor(1.0,0.9765,0.8667).setShininess(0.05).setSpecularColor(0.349,0.349,0.349)))
              .setGeometry(new IndexedFaceSet("rpphal2_Geo").setDEF("rpphal2_Geo").setCreaseAngle(1.571).setCoordIndex(getrpphal2_Geo_8_1170_coordIndex())
                .setCoord(new Coordinate("rpphal2_Coord").setPoint(getrpphal2_Coord_9_1170_point()))))
            .addChild(new Shape("rpphal3")
              .setAppearance(new Appearance()
                .setMaterial(new Material().setAmbientIntensity(0.098).setDiffuseColor(1.0,0.9765,0.8667).setShininess(0.05).setSpecularColor(0.349,0.349,0.349)))
              .setGeometry(new IndexedFaceSet("rpphal3_Geo").setDEF("rpphal3_Geo").setCreaseAngle(1.571).setCoordIndex(getrpphal3_Geo_8_1175_coordIndex())
                .setCoord(new Coordinate("rpphal3_Coord").setPoint(getrpphal3_Coord_9_1175_point()))))
            .addChild(new Shape("rpphal4")
              .setAppearance(new Appearance()
                .setMaterial(new Material().setAmbientIntensity(0.965).setDiffuseColor(1.0,0.9765,0.8667).setShininess(0.05).setSpecularColor(0.349,0.349,0.349)))
              .setGeometry(new IndexedFaceSet("rpphal4_Geo").setDEF("rpphal4_Geo").setCreaseAngle(1.571).setCoordIndex(getrpphal4_Geo_8_1180_coordIndex())
                .setCoord(new Coordinate("rpphal4_Coord").setPoint(getrpphal4_Coord_9_1180_point()))))
            .addChild(new Shape("rpphal5")
              .setAppearance(new Appearance()
                .setMaterial(new Material().setAmbientIntensity(0.098).setDiffuseColor(1.0,0.9765,0.8667).setShininess(0.05).setSpecularColor(0.349,0.349,0.349)))
              .setGeometry(new IndexedFaceSet("rpphal5_Geo").setDEF("rpphal5_Geo").setCreaseAngle(1.571).setCoordIndex(getrpphal5_Geo_8_1185_coordIndex())
                .setCoord(new Coordinate("rpphal5_Coord").setPoint(getrpphal5_Coord_9_1185_point()))))
            .addChild(new Shape("rprem1lc")
              .setAppearance(new Appearance()
                .setMaterial(new Material().setAmbientIntensity(0.4).setDiffuseColor(1.0,0.9843,0.9843).setShininess(0.05)))
              .setGeometry(new IndexedFaceSet("rprem1lc_Geo").setDEF("rprem1lc_Geo").setCreaseAngle(1.571).setCoordIndex(getrprem1lc_Geo_8_1190_coordIndex())
                .setCoord(new Coordinate("rprem1lc_Coord").setPoint(getrprem1lc_Coord_9_1190_point()))))
            .addChild(new Shape("rprem1lr")
              .setAppearance(new Appearance()
                .setMaterial(new Material().setAmbientIntensity(0.4).setDiffuseColor(1.0,0.9843,0.9843).setShininess(0.05)))
              .setGeometry(new IndexedFaceSet("rprem1lr_Geo").setDEF("rprem1lr_Geo").setCreaseAngle(1.571).setCoordIndex(getrprem1lr_Geo_8_1195_coordIndex())
                .setCoord(new Coordinate("rprem1lr_Coord").setPoint(getrprem1lr_Coord_9_1195_point()))))
            .addChild(new Shape("rprem2lc")
              .setAppearance(new Appearance()
                .setMaterial(new Material().setAmbientIntensity(0.4).setDiffuseColor(1.0,0.9843,0.9843).setShininess(0.05)))
              .setGeometry(new IndexedFaceSet("rprem2lc_Geo").setDEF("rprem2lc_Geo").setCreaseAngle(1.571).setCoordIndex(getrprem2lc_Geo_8_1200_coordIndex())
                .setCoord(new Coordinate("rprem2lc_Coord").setPoint(getrprem2lc_Coord_9_1200_point()))))
            .addChild(new Shape("rprem2lr")
              .setAppearance(new Appearance()
                .setMaterial(new Material().setAmbientIntensity(0.4).setDiffuseColor(1.0,0.9843,0.9843).setShininess(0.05)))
              .setGeometry(new IndexedFaceSet("rprem2lr_Geo").setDEF("rprem2lr_Geo").setCreaseAngle(1.571).setCoordIndex(getrprem2lr_Geo_8_1205_coordIndex())
                .setCoord(new Coordinate("rprem2lr_Coord").setPoint(getrprem2lr_Coord_9_1205_point()))))
            .addChild(new Shape("rpreol1c")
              .setAppearance(new Appearance()
                .setMaterial(new Material().setAmbientIntensity(0.4).setDiffuseColor(1.0,0.9843,0.9843).setShininess(0.05)))
              .setGeometry(new IndexedFaceSet("rpreol1c_Geo").setDEF("rpreol1c_Geo").setCreaseAngle(1.571).setCoordIndex(getrpreol1c_Geo_8_1210_coordIndex())
                .setCoord(new Coordinate("rpreol1c_Coord").setPoint(getrpreol1c_Coord_9_1210_point()))))
            .addChild(new Shape("rpreol1r")
              .setAppearance(new Appearance()
                .setMaterial(new Material().setAmbientIntensity(0.4).setDiffuseColor(1.0,0.9843,0.9843).setShininess(0.05)))
              .setGeometry(new IndexedFaceSet("rpreol1r_Geo").setDEF("rpreol1r_Geo").setCreaseAngle(1.571).setCoordIndex(getrpreol1r_Geo_8_1215_coordIndex())
                .setCoord(new Coordinate("rpreol1r_Coord").setPoint(getrpreol1r_Coord_9_1215_point()))))
            .addChild(new Shape("rpreol2c")
              .setAppearance(new Appearance()
                .setMaterial(new Material().setAmbientIntensity(0.4).setDiffuseColor(1.0,0.9843,0.9843).setShininess(0.05)))
              .setGeometry(new IndexedFaceSet("rpreol2c_Geo").setDEF("rpreol2c_Geo").setCreaseAngle(1.571).setCoordIndex(getrpreol2c_Geo_8_1220_coordIndex())
                .setCoord(new Coordinate("rpreol2c_Coord").setPoint(getrpreol2c_Coord_9_1220_point()))))
            .addChild(new Shape("rpreol2r")
              .setAppearance(new Appearance()
                .setMaterial(new Material().setAmbientIntensity(0.4).setDiffuseColor(1.0,0.9843,0.9843).setShininess(0.05)))
              .setGeometry(new IndexedFaceSet("rpreol2r_Geo").setDEF("rpreol2r_Geo").setCreaseAngle(1.571).setCoordIndex(getrpreol2r_Geo_8_1225_coordIndex())
                .setCoord(new Coordinate("rpreol2r_Coord").setPoint(getrpreol2r_Coord_9_1225_point()))))
            .addChild(new Shape("rradius")
              .setAppearance(new Appearance()
                .setMaterial(new Material().setAmbientIntensity(0.098).setDiffuseColor(1.0,0.9765,0.8667).setShininess(0.05).setSpecularColor(0.349,0.349,0.349)))
              .setGeometry(new IndexedFaceSet("rradius_Geo").setDEF("rradius_Geo").setCreaseAngle(1.571).setCoordIndex(getrradius_Geo_8_1230_coordIndex())
                .setCoord(new Coordinate("rradius_Coord").setPoint(getrradius_Coord_9_1230_point()))))
            .addChild(new Shape("rrib10")
              .setAppearance(new Appearance()
                .setMaterial(new Material().setAmbientIntensity(0.098).setDiffuseColor(1.0,0.9765,0.8667).setShininess(0.05).setSpecularColor(0.349,0.349,0.349)))
              .setGeometry(new IndexedFaceSet("rrib10_Geo").setDEF("rrib10_Geo").setCreaseAngle(1.571).setCoordIndex(getrrib10_Geo_8_1235_coordIndex())
                .setCoord(new Coordinate("rrib10_Coord").setPoint(getrrib10_Coord_9_1235_point()))))
            .addChild(new Shape("rrib11")
              .setAppearance(new Appearance()
                .setMaterial(new Material().setAmbientIntensity(0.098).setDiffuseColor(1.0,0.9765,0.8667).setShininess(0.05).setSpecularColor(0.349,0.349,0.349)))
              .setGeometry(new IndexedFaceSet("rrib11_Geo").setDEF("rrib11_Geo").setCreaseAngle(1.571).setCoordIndex(getrrib11_Geo_8_1240_coordIndex())
                .setCoord(new Coordinate("rrib11_Coord").setPoint(getrrib11_Coord_9_1240_point()))))
            .addChild(new Shape("rrib12")
              .setAppearance(new Appearance()
                .setMaterial(new Material().setAmbientIntensity(0.098).setDiffuseColor(1.0,0.9765,0.8667).setShininess(0.05).setSpecularColor(0.349,0.349,0.349)))
              .setGeometry(new IndexedFaceSet("rrib12_Geo").setDEF("rrib12_Geo").setCreaseAngle(1.571).setCoordIndex(getrrib12_Geo_8_1245_coordIndex())
                .setCoord(new Coordinate("rrib12_Coord").setPoint(getrrib12_Coord_9_1245_point()))))
            .addChild(new Shape("rrib2")
              .setAppearance(new Appearance()
                .setMaterial(new Material().setAmbientIntensity(0.098).setDiffuseColor(1.0,0.9765,0.8667).setShininess(0.05).setSpecularColor(0.349,0.349,0.349)))
              .setGeometry(new IndexedFaceSet("rrib2_Geo").setDEF("rrib2_Geo").setCreaseAngle(1.571).setCoordIndex(getrrib2_Geo_8_1250_coordIndex())
                .setCoord(new Coordinate("rrib2_Coord").setPoint(getrrib2_Coord_9_1250_point()))))
            .addChild(new Shape("rrib3")
              .setAppearance(new Appearance()
                .setMaterial(new Material().setAmbientIntensity(0.098).setDiffuseColor(1.0,0.9765,0.8667).setShininess(0.05).setSpecularColor(0.349,0.349,0.349)))
              .setGeometry(new IndexedFaceSet("rrib3_Geo").setDEF("rrib3_Geo").setCreaseAngle(1.571).setCoordIndex(getrrib3_Geo_8_1255_coordIndex())
                .setCoord(new Coordinate("rrib3_Coord").setPoint(getrrib3_Coord_9_1255_point()))))
            .addChild(new Shape("rrib4")
              .setAppearance(new Appearance()
                .setMaterial(new Material().setAmbientIntensity(0.098).setDiffuseColor(1.0,0.9765,0.8667).setShininess(0.05).setSpecularColor(0.349,0.349,0.349)))
              .setGeometry(new IndexedFaceSet("rrib4_Geo").setDEF("rrib4_Geo").setCreaseAngle(1.571).setCoordIndex(getrrib4_Geo_8_1260_coordIndex())
                .setCoord(new Coordinate("rrib4_Coord").setPoint(getrrib4_Coord_9_1260_point()))))
            .addChild(new Shape("rrib5")
              .setAppearance(new Appearance()
                .setMaterial(new Material().setAmbientIntensity(0.098).setDiffuseColor(1.0,0.9765,0.8667).setShininess(0.05).setSpecularColor(0.349,0.349,0.349)))
              .setGeometry(new IndexedFaceSet("rrib5_Geo").setDEF("rrib5_Geo").setCreaseAngle(1.571).setCoordIndex(getrrib5_Geo_8_1265_coordIndex())
                .setCoord(new Coordinate("rrib5_Coord").setPoint(getrrib5_Coord_9_1265_point()))))
            .addChild(new Shape("rrib6")
              .setAppearance(new Appearance()
                .setMaterial(new Material().setAmbientIntensity(0.098).setDiffuseColor(1.0,0.9765,0.8667).setShininess(0.05).setSpecularColor(0.349,0.349,0.349)))
              .setGeometry(new IndexedFaceSet("rrib6_Geo").setDEF("rrib6_Geo").setCreaseAngle(1.571).setCoordIndex(getrrib6_Geo_8_1270_coordIndex())
                .setCoord(new Coordinate("rrib6_Coord").setPoint(getrrib6_Coord_9_1270_point()))))
            .addChild(new Shape("rrib7")
              .setAppearance(new Appearance()
                .setMaterial(new Material().setAmbientIntensity(0.098).setDiffuseColor(1.0,0.9765,0.8667).setShininess(0.05).setSpecularColor(0.349,0.349,0.349)))
              .setGeometry(new IndexedFaceSet("rrib7_Geo").setDEF("rrib7_Geo").setCreaseAngle(1.571).setCoordIndex(getrrib7_Geo_8_1275_coordIndex())
                .setCoord(new Coordinate("rrib7_Coord").setPoint(getrrib7_Coord_9_1275_point()))))
            .addChild(new Shape("rrib8")
              .setAppearance(new Appearance()
                .setMaterial(new Material().setAmbientIntensity(0.098).setDiffuseColor(1.0,0.9765,0.8667).setShininess(0.05).setSpecularColor(0.349,0.349,0.349)))
              .setGeometry(new IndexedFaceSet("rrib8_Geo").setDEF("rrib8_Geo").setCreaseAngle(1.571).setCoordIndex(getrrib8_Geo_8_1280_coordIndex())
                .setCoord(new Coordinate("rrib8_Coord").setPoint(getrrib8_Coord_9_1280_point()))))
            .addChild(new Shape("rrib9")
              .setAppearance(new Appearance()
                .setMaterial(new Material().setAmbientIntensity(0.098).setDiffuseColor(1.0,0.9765,0.8667).setShininess(0.05).setSpecularColor(0.349,0.349,0.349)))
              .setGeometry(new IndexedFaceSet("rrib9_Geo").setDEF("rrib9_Geo").setCreaseAngle(1.571).setCoordIndex(getrrib9_Geo_8_1285_coordIndex())
                .setCoord(new Coordinate("rrib9_Coord").setPoint(getrrib9_Coord_9_1285_point()))))
            .addChild(new Shape("rrrib")
              .setAppearance(new Appearance()
                .setMaterial(new Material().setAmbientIntensity(0.098).setDiffuseColor(1.0,0.9765,0.8667).setShininess(0.05).setSpecularColor(0.349,0.349,0.349)))
              .setGeometry(new IndexedFaceSet("rrrib_Geo").setDEF("rrrib_Geo").setCreaseAngle(1.571).setCoordIndex(getrrrib_Geo_8_1290_coordIndex())
                .setCoord(new Coordinate("rrrib_Coord").setPoint(getrrrib_Coord_9_1290_point()))))
            .addChild(new Shape("rscapula")
              .setAppearance(new Appearance()
                .setMaterial(new Material().setAmbientIntensity(0.098).setDiffuseColor(1.0,0.9765,0.8667).setShininess(0.05).setSpecularColor(0.349,0.349,0.349)))
              .setGeometry(new IndexedFaceSet("rscapula_Geo").setDEF("rscapula_Geo").setCreaseAngle(1.571).setCoordIndex(getrscapula_Geo_8_1295_coordIndex())
                .setCoord(new Coordinate("rscapula_Coord").setPoint(getrscapula_Coord_9_1295_point()))))
            .addChild(new Shape("rscphoid")
              .setAppearance(new Appearance()
                .setMaterial(new Material().setAmbientIntensity(0.098).setDiffuseColor(1.0,0.9765,0.8667).setShininess(0.05).setSpecularColor(0.349,0.349,0.349)))
              .setGeometry(new IndexedFaceSet("rscphoid_Geo").setDEF("rscphoid_Geo").setCreaseAngle(1.571).setCoordIndex(getrscphoid_Geo_8_1300_coordIndex())
                .setCoord(new Coordinate("rscphoid_Coord").setPoint(getrscphoid_Coord_9_1300_point()))))
            .addChild(new Shape("rtalus")
              .setAppearance(new Appearance()
                .setMaterial(new Material().setAmbientIntensity(0.098).setDiffuseColor(1.0,0.9765,0.8667).setShininess(0.05).setSpecularColor(0.349,0.349,0.349)))
              .setGeometry(new IndexedFaceSet("rtalus_Geo").setDEF("rtalus_Geo").setCreaseAngle(1.571).setCoordIndex(getrtalus_Geo_8_1305_coordIndex())
                .setCoord(new Coordinate("rtalus_Coord").setPoint(getrtalus_Coord_9_1305_point()))))
            .addChild(new Shape("rtibia")
              .setAppearance(new Appearance()
                .setMaterial(new Material().setAmbientIntensity(0.098).setDiffuseColor(1.0,0.9765,0.8667).setShininess(0.05).setSpecularColor(0.349,0.349,0.349)))
              .setGeometry(new IndexedFaceSet("rtibia_Geo").setDEF("rtibia_Geo").setCreaseAngle(1.571).setCoordIndex(getrtibia_Geo_8_1310_coordIndex())
                .setCoord(new Coordinate("rtibia_Coord").setPoint(getrtibia_Coord_9_1310_point()))))
            .addChild(new Shape("rtrpzium")
              .setAppearance(new Appearance()
                .setMaterial(new Material().setAmbientIntensity(0.098).setDiffuseColor(1.0,0.9765,0.8667).setShininess(0.05).setSpecularColor(0.349,0.349,0.349)))
              .setGeometry(new IndexedFaceSet("rtrpzium_Geo").setDEF("rtrpzium_Geo").setCreaseAngle(1.571).setCoordIndex(getrtrpzium_Geo_8_1315_coordIndex())
                .setCoord(new Coordinate("rtrpzium_Coord").setPoint(getrtrpzium_Coord_9_1315_point()))))
            .addChild(new Shape("rtrpzoid")
              .setAppearance(new Appearance()
                .setMaterial(new Material().setAmbientIntensity(0.098).setDiffuseColor(1.0,0.9765,0.8667).setShininess(0.05).setSpecularColor(0.349,0.349,0.349)))
              .setGeometry(new IndexedFaceSet("rtrpzoid_Geo").setDEF("rtrpzoid_Geo").setCreaseAngle(1.571).setCoordIndex(getrtrpzoid_Geo_8_1320_coordIndex())
                .setCoord(new Coordinate("rtrpzoid_Coord").setPoint(getrtrpzoid_Coord_9_1320_point()))))
            .addChild(new Shape("rtrqtral")
              .setAppearance(new Appearance()
                .setMaterial(new Material().setAmbientIntensity(0.098).setDiffuseColor(1.0,0.9765,0.8667).setShininess(0.05).setSpecularColor(0.349,0.349,0.349)))
              .setGeometry(new IndexedFaceSet("rtrqtral_Geo").setDEF("rtrqtral_Geo").setCreaseAngle(1.571).setCoordIndex(getrtrqtral_Geo_8_1325_coordIndex())
                .setCoord(new Coordinate("rtrqtral_Coord").setPoint(getrtrqtral_Coord_9_1325_point()))))
            .addChild(new Shape("rulna")
              .setAppearance(new Appearance()
                .setMaterial(new Material().setAmbientIntensity(0.098).setDiffuseColor(1.0,0.9765,0.8667).setShininess(0.05).setSpecularColor(0.349,0.349,0.349)))
              .setGeometry(new IndexedFaceSet("rulna_Geo").setDEF("rulna_Geo").setCreaseAngle(1.571).setCoordIndex(getrulna_Geo_8_1330_coordIndex())
                .setCoord(new Coordinate("rulna_Coord").setPoint(getrulna_Coord_9_1330_point()))))
            .addChild(new Shape("sacrum")
              .setAppearance(new Appearance()
                .setMaterial(new Material().setAmbientIntensity(0.098).setDiffuseColor(1.0,0.9765,0.8667).setShininess(0.05).setSpecularColor(0.349,0.349,0.349)))
              .setGeometry(new IndexedFaceSet("sacrum_Geo").setDEF("sacrum_Geo").setCreaseAngle(1.571).setCoordIndex(getsacrum_Geo_8_1335_coordIndex())
                .setCoord(new Coordinate("sacrum_Coord").setPoint(getsacrum_Coord_9_1335_point()))))
            .addChild(new Shape("sphenoid")
              .setAppearance(new Appearance()
                .setMaterial(new Material().setAmbientIntensity(0.098).setDiffuseColor(1.0,0.9765,0.8667).setShininess(0.05).setSpecularColor(0.349,0.349,0.349)))
              .setGeometry(new IndexedFaceSet("sphenoid_Geo").setDEF("sphenoid_Geo").setCreaseAngle(1.571).setCoordIndex(getsphenoid_Geo_8_1340_coordIndex())
                .setCoord(new Coordinate("sphenoid_Coord").setPoint(getsphenoid_Coord_9_1340_point()))))
            .addChild(new Shape("sternum")
              .setAppearance(new Appearance()
                .setMaterial(new Material().setAmbientIntensity(0.098).setDiffuseColor(1.0,0.9765,0.8667).setShininess(0.05).setSpecularColor(0.349,0.349,0.349)))
              .setGeometry(new IndexedFaceSet("sternum_Geo").setDEF("sternum_Geo").setCreaseAngle(1.571).setCoordIndex(getsternum_Geo_8_1345_coordIndex())
                .setCoord(new Coordinate("sternum_Coord").setPoint(getsternum_Coord_9_1345_point()))))
            .addChild(new Shape("sympubis")
              .setAppearance(new Appearance()
                .setMaterial(new Material().setAmbientIntensity(0.965).setDiffuseColor(0.9843,0.949,0.7843).setShininess(0.05).setSpecularColor(0.9647,0.949,0.9098)))
              .setGeometry(new IndexedFaceSet("sympubis_Geo").setDEF("sympubis_Geo").setCreaseAngle(1.571).setCoordIndex(getsympubis_Geo_8_1350_coordIndex())
                .setCoord(new Coordinate("sympubis_Coord").setPoint(getsympubis_Coord_9_1350_point()))))
            .addChild(new Shape("t")
              .setAppearance(new Appearance()
                .setMaterial(new Material().setAmbientIntensity(0.098).setDiffuseColor(1.0,0.9765,0.8667).setShininess(0.05).setSpecularColor(0.349,0.349,0.349)))
              .setGeometry(new IndexedFaceSet("t_Geo").setDEF("t_Geo").setCreaseAngle(1.571).setCoordIndex(gett_Geo_8_1355_coordIndex())
                .setCoord(new Coordinate("t_Coord").setPoint(gett_Coord_9_1355_point()))))
            .addChild(new Shape("t10")
              .setAppearance(new Appearance()
                .setMaterial(new Material().setAmbientIntensity(0.098).setDiffuseColor(1.0,0.9765,0.8667).setShininess(0.05).setSpecularColor(0.349,0.349,0.349)))
              .setGeometry(new IndexedFaceSet("t10_Geo").setDEF("t10_Geo").setCreaseAngle(1.571).setCoordIndex(gett10_Geo_8_1360_coordIndex())
                .setCoord(new Coordinate("t10_Coord").setPoint(gett10_Coord_9_1360_point()))))
            .addChild(new Shape("t10disc")
              .setAppearance(new Appearance()
                .setMaterial(new Material().setAmbientIntensity(0.965).setDiffuseColor(0.9843,0.949,0.7843).setShininess(0.05).setSpecularColor(0.9647,0.949,0.9098)))
              .setGeometry(new IndexedFaceSet("t10disc_Geo").setDEF("t10disc_Geo").setCreaseAngle(1.571).setCoordIndex(gett10disc_Geo_8_1365_coordIndex())
                .setCoord(new Coordinate("t10disc_Coord").setPoint(gett10disc_Coord_9_1365_point()))))
            .addChild(new Shape("t11")
              .setAppearance(new Appearance()
                .setMaterial(new Material().setAmbientIntensity(0.098).setDiffuseColor(1.0,0.9765,0.8667).setShininess(0.05).setSpecularColor(0.349,0.349,0.349)))
              .setGeometry(new IndexedFaceSet("t11_Geo").setDEF("t11_Geo").setCreaseAngle(1.571).setCoordIndex(gett11_Geo_8_1370_coordIndex())
                .setCoord(new Coordinate("t11_Coord").setPoint(gett11_Coord_9_1370_point()))))
            .addChild(new Shape("t11disc")
              .setAppearance(new Appearance()
                .setMaterial(new Material().setAmbientIntensity(0.965).setDiffuseColor(0.9843,0.949,0.7843).setShininess(0.05).setSpecularColor(0.9647,0.949,0.9098)))
              .setGeometry(new IndexedFaceSet("t11disc_Geo").setDEF("t11disc_Geo").setCreaseAngle(1.571).setCoordIndex(gett11disc_Geo_8_1375_coordIndex())
                .setCoord(new Coordinate("t11disc_Coord").setPoint(gett11disc_Coord_9_1375_point()))))
            .addChild(new Shape("t12")
              .setAppearance(new Appearance()
                .setMaterial(new Material().setAmbientIntensity(0.098).setDiffuseColor(1.0,0.9765,0.8667).setShininess(0.05).setSpecularColor(0.349,0.349,0.349)))
              .setGeometry(new IndexedFaceSet("t12_Geo").setDEF("t12_Geo").setCreaseAngle(1.571).setCoordIndex(gett12_Geo_8_1380_coordIndex())
                .setCoord(new Coordinate("t12_Coord").setPoint(gett12_Coord_9_1380_point()))))
            .addChild(new Shape("t12disc")
              .setAppearance(new Appearance()
                .setMaterial(new Material().setAmbientIntensity(0.965).setDiffuseColor(0.9843,0.949,0.7843).setShininess(0.05).setSpecularColor(0.9647,0.949,0.9098)))
              .setGeometry(new IndexedFaceSet("t12disc_Geo").setDEF("t12disc_Geo").setCreaseAngle(1.571).setCoordIndex(gett12disc_Geo_8_1385_coordIndex())
                .setCoord(new Coordinate("t12disc_Coord").setPoint(gett12disc_Coord_9_1385_point()))))
            .addChild(new Shape("t1disc")
              .setAppearance(new Appearance()
                .setMaterial(new Material().setAmbientIntensity(0.965).setDiffuseColor(0.9843,0.949,0.7843).setShininess(0.05).setSpecularColor(0.9647,0.949,0.9098)))
              .setGeometry(new IndexedFaceSet("t1disc_Geo").setDEF("t1disc_Geo").setCreaseAngle(1.571).setCoordIndex(gett1disc_Geo_8_1390_coordIndex())
                .setCoord(new Coordinate("t1disc_Coord").setPoint(gett1disc_Coord_9_1390_point()))))
            .addChild(new Shape("t2")
              .setAppearance(new Appearance()
                .setMaterial(new Material().setAmbientIntensity(0.098).setDiffuseColor(1.0,0.9765,0.8667).setShininess(0.05).setSpecularColor(0.349,0.349,0.349)))
              .setGeometry(new IndexedFaceSet("t2_Geo").setDEF("t2_Geo").setCreaseAngle(1.571).setCoordIndex(gett2_Geo_8_1395_coordIndex())
                .setCoord(new Coordinate("t2_Coord").setPoint(gett2_Coord_9_1395_point()))))
            .addChild(new Shape("t2disc")
              .setAppearance(new Appearance()
                .setMaterial(new Material().setAmbientIntensity(0.965).setDiffuseColor(0.9843,0.949,0.7843).setShininess(0.05).setSpecularColor(0.9647,0.949,0.9098)))
              .setGeometry(new IndexedFaceSet("t2disc_Geo").setDEF("t2disc_Geo").setCreaseAngle(1.571).setCoordIndex(gett2disc_Geo_8_1400_coordIndex())
                .setCoord(new Coordinate("t2disc_Coord").setPoint(gett2disc_Coord_9_1400_point()))))
            .addChild(new Shape("t3")
              .setAppearance(new Appearance()
                .setMaterial(new Material().setAmbientIntensity(0.098).setDiffuseColor(1.0,0.9765,0.8667).setShininess(0.05).setSpecularColor(0.349,0.349,0.349)))
              .setGeometry(new IndexedFaceSet("t3_Geo").setDEF("t3_Geo").setCreaseAngle(1.571).setCoordIndex(gett3_Geo_8_1405_coordIndex())
                .setCoord(new Coordinate("t3_Coord").setPoint(gett3_Coord_9_1405_point()))))
            .addChild(new Shape("t3disc")
              .setAppearance(new Appearance()
                .setMaterial(new Material().setAmbientIntensity(0.965).setDiffuseColor(0.9843,0.949,0.7843).setShininess(0.05).setSpecularColor(0.9647,0.949,0.9098)))
              .setGeometry(new IndexedFaceSet("t3disc_Geo").setDEF("t3disc_Geo").setCreaseAngle(1.571).setCoordIndex(gett3disc_Geo_8_1410_coordIndex())
                .setCoord(new Coordinate("t3disc_Coord").setPoint(gett3disc_Coord_9_1410_point()))))
            .addChild(new Shape("t4")
              .setAppearance(new Appearance()
                .setMaterial(new Material().setAmbientIntensity(0.098).setDiffuseColor(1.0,0.9765,0.8667).setShininess(0.05).setSpecularColor(0.349,0.349,0.349)))
              .setGeometry(new IndexedFaceSet("t4_Geo").setDEF("t4_Geo").setCreaseAngle(1.571).setCoordIndex(gett4_Geo_8_1415_coordIndex())
                .setCoord(new Coordinate("t4_Coord").setPoint(gett4_Coord_9_1415_point()))))
            .addChild(new Shape("t4disc")
              .setAppearance(new Appearance()
                .setMaterial(new Material().setAmbientIntensity(0.965).setDiffuseColor(0.9843,0.949,0.7843).setShininess(0.05).setSpecularColor(0.9647,0.949,0.9098)))
              .setGeometry(new IndexedFaceSet("t4disc_Geo").setDEF("t4disc_Geo").setCreaseAngle(1.571).setCoordIndex(gett4disc_Geo_8_1420_coordIndex())
                .setCoord(new Coordinate("t4disc_Coord").setPoint(gett4disc_Coord_9_1420_point()))))
            .addChild(new Shape("t5")
              .setAppearance(new Appearance()
                .setMaterial(new Material().setAmbientIntensity(0.098).setDiffuseColor(1.0,0.9765,0.8667).setShininess(0.05).setSpecularColor(0.349,0.349,0.349)))
              .setGeometry(new IndexedFaceSet("t5_Geo").setDEF("t5_Geo").setCreaseAngle(1.571).setCoordIndex(gett5_Geo_8_1425_coordIndex())
                .setCoord(new Coordinate("t5_Coord").setPoint(gett5_Coord_9_1425_point()))))
            .addChild(new Shape("t5disc")
              .setAppearance(new Appearance()
                .setMaterial(new Material().setAmbientIntensity(0.965).setDiffuseColor(0.9843,0.949,0.7843).setShininess(0.05).setSpecularColor(0.9647,0.949,0.9098)))
              .setGeometry(new IndexedFaceSet("t5disc_Geo").setDEF("t5disc_Geo").setCreaseAngle(1.571).setCoordIndex(gett5disc_Geo_8_1430_coordIndex())
                .setCoord(new Coordinate("t5disc_Coord").setPoint(gett5disc_Coord_9_1430_point()))))
            .addChild(new Shape("t6")
              .setAppearance(new Appearance()
                .setMaterial(new Material().setAmbientIntensity(0.098).setDiffuseColor(1.0,0.9765,0.8667).setShininess(0.05).setSpecularColor(0.349,0.349,0.349)))
              .setGeometry(new IndexedFaceSet("t6_Geo").setDEF("t6_Geo").setCreaseAngle(1.571).setCoordIndex(gett6_Geo_8_1435_coordIndex())
                .setCoord(new Coordinate("t6_Coord").setPoint(gett6_Coord_9_1435_point()))))
            .addChild(new Shape("t6disc")
              .setAppearance(new Appearance()
                .setMaterial(new Material().setAmbientIntensity(0.965).setDiffuseColor(0.9843,0.949,0.7843).setShininess(0.05).setSpecularColor(0.9647,0.949,0.9098)))
              .setGeometry(new IndexedFaceSet("t6disc_Geo").setDEF("t6disc_Geo").setCreaseAngle(1.571).setCoordIndex(gett6disc_Geo_8_1440_coordIndex())
                .setCoord(new Coordinate("t6disc_Coord").setPoint(gett6disc_Coord_9_1440_point()))))
            .addChild(new Shape("t7")
              .setAppearance(new Appearance()
                .setMaterial(new Material().setAmbientIntensity(0.965).setDiffuseColor(1.0,0.9765,0.8667).setShininess(0.05).setSpecularColor(0.349,0.349,0.349)))
              .setGeometry(new IndexedFaceSet("t7_Geo").setDEF("t7_Geo").setCreaseAngle(1.571).setCoordIndex(gett7_Geo_8_1445_coordIndex())
                .setCoord(new Coordinate("t7_Coord").setPoint(gett7_Coord_9_1445_point()))))
            .addChild(new Shape("t7disc")
              .setAppearance(new Appearance()
                .setMaterial(new Material().setAmbientIntensity(0.965).setDiffuseColor(0.9843,0.949,0.7843).setShininess(0.05).setSpecularColor(0.9647,0.949,0.9098)))
              .setGeometry(new IndexedFaceSet("t7disc_Geo").setDEF("t7disc_Geo").setCreaseAngle(1.571).setCoordIndex(gett7disc_Geo_8_1450_coordIndex())
                .setCoord(new Coordinate("t7disc_Coord").setPoint(gett7disc_Coord_9_1450_point()))))
            .addChild(new Shape("t8")
              .setAppearance(new Appearance()
                .setMaterial(new Material().setAmbientIntensity(0.098).setDiffuseColor(1.0,0.9765,0.8667).setShininess(0.05).setSpecularColor(0.349,0.349,0.349)))
              .setGeometry(new IndexedFaceSet("t8_Geo").setDEF("t8_Geo").setCreaseAngle(1.571).setCoordIndex(gett8_Geo_8_1455_coordIndex())
                .setCoord(new Coordinate("t8_Coord").setPoint(gett8_Coord_9_1455_point()))))
            .addChild(new Shape("t8disc")
              .setAppearance(new Appearance()
                .setMaterial(new Material().setAmbientIntensity(0.965).setDiffuseColor(0.9843,0.949,0.7843).setShininess(0.05).setSpecularColor(0.9647,0.949,0.9098)))
              .setGeometry(new IndexedFaceSet("t8disc_Geo").setDEF("t8disc_Geo").setCreaseAngle(1.571).setCoordIndex(gett8disc_Geo_8_1460_coordIndex())
                .setCoord(new Coordinate("t8disc_Coord").setPoint(gett8disc_Coord_9_1460_point()))))
            .addChild(new Shape("t9")
              .setAppearance(new Appearance()
                .setMaterial(new Material().setAmbientIntensity(0.098).setDiffuseColor(1.0,0.9765,0.8667).setShininess(0.05).setSpecularColor(0.349,0.349,0.349)))
              .setGeometry(new IndexedFaceSet("t9_Geo").setDEF("t9_Geo").setCreaseAngle(1.571).setCoordIndex(gett9_Geo_8_1465_coordIndex())
                .setCoord(new Coordinate("t9_Coord").setPoint(gett9_Coord_9_1465_point()))))
            .addChild(new Shape("t9disc")
              .setAppearance(new Appearance()
                .setMaterial(new Material().setAmbientIntensity(0.965).setDiffuseColor(0.9843,0.949,0.7843).setShininess(0.05).setSpecularColor(0.9647,0.949,0.9098)))
              .setGeometry(new IndexedFaceSet("t9disc_Geo").setDEF("t9disc_Geo").setCreaseAngle(1.571).setCoordIndex(gett9disc_Geo_8_1470_coordIndex())
                .setCoord(new Coordinate("t9disc_Coord").setPoint(gett9disc_Coord_9_1470_point()))))
            .addChild(new Shape("templ")
              .setAppearance(new Appearance()
                .setMaterial(new Material().setAmbientIntensity(0.098).setDiffuseColor(1.0,0.9765,0.8667).setShininess(0.05).setSpecularColor(0.349,0.349,0.349)))
              .setGeometry(new IndexedFaceSet("templ_Geo").setDEF("templ_Geo").setCreaseAngle(1.571).setCoordIndex(gettempl_Geo_8_1475_coordIndex())
                .setCoord(new Coordinate("templ_Coord").setPoint(gettempl_Coord_9_1475_point()))))
            .addChild(new Shape("tempr")
              .setAppearance(new Appearance()
                .setMaterial(new Material().setAmbientIntensity(0.098).setDiffuseColor(1.0,0.9765,0.8667).setShininess(0.05).setSpecularColor(0.349,0.349,0.349)))
              .setGeometry(new IndexedFaceSet("tempr_Geo").setDEF("tempr_Geo").setCreaseAngle(1.571).setCoordIndex(gettempr_Geo_8_1480_coordIndex())
                .setCoord(new Coordinate("tempr_Coord").setPoint(gettempr_Coord_9_1480_point()))))
            .addChild(new Shape("vom")
              .setAppearance(new Appearance()
                .setMaterial(new Material().setAmbientIntensity(0.098).setDiffuseColor(1.0,0.9765,0.8667).setShininess(0.05).setSpecularColor(0.349,0.349,0.349)))
              .setGeometry(new IndexedFaceSet("vom_Geo").setDEF("vom_Geo").setCreaseAngle(1.571).setCoordIndex(getvom_Geo_8_1485_coordIndex())
                .setCoord(new Coordinate("vom_Coord").setPoint(getvom_Coord_9_1485_point()))))
            .addChild(new Shape("zygol")
              .setAppearance(new Appearance()
                .setMaterial(new Material().setAmbientIntensity(0.098).setDiffuseColor(1.0,0.9765,0.8667).setShininess(0.05).setSpecularColor(0.349,0.349,0.349)))
              .setGeometry(new IndexedFaceSet("zygol_Geo").setDEF("zygol_Geo").setCreaseAngle(1.571).setCoordIndex(getzygol_Geo_8_1490_coordIndex())
                .setCoord(new Coordinate("zygol_Coord").setPoint(getzygol_Coord_9_1490_point()))))
            .addChild(new Shape("zygor")
              .setAppearance(new Appearance()
                .setMaterial(new Material().setAmbientIntensity(0.098).setDiffuseColor(1.0,0.9765,0.8667).setShininess(0.05).setSpecularColor(0.349,0.349,0.349)))
              .setGeometry(new IndexedFaceSet("zygor_Geo").setDEF("zygor_Geo").setCreaseAngle(1.571).setCoordIndex(getzygor_Geo_8_1495_coordIndex())
                .setCoord(new Coordinate("zygor_Coord").setPoint(getzygor_Coord_9_1495_point())))))))));
            }
            catch (Exception ex)
            {       
                System.err.println ("*** Further hints on X3DJSAIL errors and exceptions at");
                System.err.println ("*** https://www.web3d.org/specifications/java/X3DJSAIL.html");
                throw (ex);
            }
	}
	// end of initialize() method


		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=1 */
		private int[] getatlas_Geo_8_25_coordIndex_1()
		{
			int[] value = {0,1,2,-1,3,4,5,-1,6,3,7,-1,8,9,10,-1,11,12,13,-1,14,6,15,-1,16,17,18,-1,19,20,21,-1,22,23,24,-1,22,25,26,-1,27,28,29,-1,30,31,32,-1,33,34,32,-1,35,36,37,-1,38,39,40,-1,41,42,43,-1,44,45,46,-1,47,48,49,-1,50,51,52,-1,52,51,53,-1,48,54,55,-1,36,52,54,-1,56,57,58,-1,59,60,61,-1,62,63,64,-1,65,66,67,-1,68,69,70,-1,71,72,58,-1,40,39,73,-1,74,75,76,-1,77,78,79,-1,80,81,79,-1,39,82,73,-1,43,42,83,-1,84,85,77,-1,86,87,88,-1,72,89,90,-1,91,59,92,-1,11,65,93,-1,94,95,96,-1,97,98,96,-1,99,100,101,-1,102,103,100,-1,103,104,105,-1,72,71,106,-1,107,108,109,-1,30,110,111,-1,112,113,114,-1,115,116,117,-1,117,118,119,-1,120,121,122,-1,123,124,125,-1,126,127,128,-1,129,130,131,-1,132,133,134,-1,89,135,136,-1,137,138,139,-1,140,141,142,-1,143,144,145,-1,146,147,148,-1,149,150,151,-1,152,153,154,-1,155,156,157,-1,158,159,160,-1,149,9,161,-1,162,163,164,-1,165,166,167,-1,168,169,170,-1,171,172,173,-1,174,175,176,-1,170,177,178,-1,173,168,179,-1,180,181,182,-1,172,183,184,-1,184,185,186,-1,187,188,189,-1,190,191,192,-1,193,194,156,-1,195,196,197,-1,198,181,180,-1,199,200,201,-1,202,203,204,-1,205,206,207,-1,208,200,209,-1,116,210,211,-1,212,109,213,-1,214,215,213,-1,216,217,218,-1,219,64,59,-1,220,221,222,-1,223,224,225,-1,226,224,189,-1,227,131,130,-1,228,229,230,-1,229,219,231,-1,232,233,234,-1,235,236,237,-1,238,239,240,-1,17,240,18,-1,241,242,148,-1,243,17,244,-1,245,246,27,-1,247,248,249,-1,145,250,251,-1,252,253,254,-1,255,256,257,-1,203,258,235,-1,259,21,260,-1,261,234,262,-1,263,5,262,-1,264,265,266,-1,267,268,269,-1,270,271,272,-1,273,274,252,-1,275,143,141,-1,276,246,277,-1,278,279,247,-1,280,147,146,-1,76,281,282,-1,283,284,285,-1,286,287,288,-1,289,187,290,-1,83,291,292,-1,293,294,295,-1,296,88,268,-1,297,254,132,-1,298,86,88,-1,299,300,301,-1,154,302,303,-1,128,189,224,-1,304,305,306,-1,307,164,308,-1,0,10,220,-1,309,301,310,-1,134,311,301,-1,164,166,0,-1,135,312,313,-1,314,312,106,-1,159,196,195,-1,226,225,224,-1,157,152,190,-1,179,315,171,-1,66,65,316,-1,94,317,165,-1,318,319,320,-1,321,322,323,-1,324,325,326,-1,327,328,329,-1,330,327,331,-1,332,333,334,-1,335,336,337,-1,338,331,339,-1,340,341,342,-1,343,344,345,-1,346,347,348,-1,346,349,338,-1,350,348,347,-1,351,352,353,-1,354,355,356,-1,354,357,358,-1,359,360,361,-1,362,363,364,-1,365,366,367,-1,368,369,370,-1,357,371,358,-1,359,372,373,-1,374,372,375,-1,376,374,371,-1,371,375,377,-1,378,379,380,-1,381,382,383,-1,382,384,385,-1,383,386,387,-1,388,389,364,-1,390,391,392,-1,393,394,395,-1,396,393,397,-1,398,367,366,-1,397,399,400,-1,401,402,403,-1,404,405,386,-1,406,407,408,-1,409,410,337,-1,411,412,413,-1,414,415,416,-1,417,418,419,-1,420,421,422,-1,416,415,422,-1,405,423,387,-1,424,425,108,-1,426,427,356,-1,428,429,430,-1,431,432,433,-1,434,435,436,-1,436,437,438,-1,439,440,441,-1,442,443,444,-1,445,446,447,-1,448,449,450,-1,451,452,405,-1,453,454,455,-1,456,455,457,-1,458,459,460,-1,461,462,463,-1,464,465,466,-1,467,468,469,-1,470,471,472,-1,473,474,475,-1,476,477,466,-1,478,479,480,-1,481,482,483,-1,484,485,486,-1,487,488,489,-1,490,491,492,-1,493,494,484,-1,495,493,496,-1,497,498,487,-1,499,500,485,-1,500,497,485,-1,500,498,497,-1,501,502,503,-1,504,505,506,-1,507,508,509,-1,510,505,504,-1,511,512,513,-1,495,514,510,-1,515,516,517,-1,518,519,520,-1,521,522,523,-1,524,525,520,-1,431,526,527,-1,528,425,424,-1,528,529,530,-1,531,532,533,-1,534,535,492,-1,502,536,537,-1,538,445,539,-1,359,377,375,-1,528,424,540,-1,541,349,542,-1,543,544,545,-1,546,547,548,-1,549,550,551,-1,550,461,552,-1,553,439,554,-1,555,556,557,-1,558,559,560,-1,561,562,563,-1,564,458,565,-1,546,566,567,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=2 */
		private int[] getatlas_Geo_8_25_coordIndex_2()
		{
			int[] value = {543,568,519,-1,517,345,569,-1,340,570,571,-1,329,572,340,-1,573,574,575,-1,576,577,578,-1,579,580,581,-1,582,583,584,-1,457,460,585,-1,586,558,587,-1,563,437,588,-1,463,462,589,-1,590,591,592,-1,593,594,595,-1,596,394,597,-1,598,503,599,-1,600,601,398,-1,602,603,604,-1,605,449,448,-1,606,607,608,-1,609,502,610,-1,501,611,612,-1,480,613,324,-1,608,607,614,-1,324,481,478,-1,423,452,615,-1,616,387,423,-1,513,474,477,-1,484,617,618,-1,619,469,470,-1,489,620,621,-1,622,621,620,-1,483,623,412,-1,624,625,626,-1,627,628,629,-1,627,624,628,-1,630,413,625,-1,631,632,381,-1,633,335,337,-1,469,475,506,-1,634,488,498,-1,485,484,618,-1,450,607,635,-1,636,635,615,-1,490,492,637,-1,638,639,478,-1,332,334,325,-1,637,479,640,-1,641,450,449,-1,604,449,602,-1,642,611,643,-1,609,610,644,-1,645,611,642,-1,646,448,647,-1,648,649,402,-1,603,650,651,-1,601,600,403,-1,652,403,653,-1,595,654,655,-1,656,592,391,-1,657,597,658,-1,659,395,660,-1,391,395,656,-1,388,363,591,-1,562,561,589,-1,661,662,559,-1,663,577,664,-1,665,666,343,-1,667,572,326,-1,668,329,669,-1,670,426,671,-1,672,673,674,-1,675,676,677,-1,678,651,679,-1,664,662,661,-1,460,581,680,-1,681,380,379,-1,366,365,682,-1,551,550,341,-1,550,683,341,-1,461,550,549,-1,684,463,561,-1,566,342,341,-1,685,670,518,-1,543,355,544,-1,686,343,346,-1,687,532,531,-1,540,531,529,-1,573,350,347,-1,688,689,690,-1,691,332,613,-1,536,692,617,-1,503,537,490,-1,482,330,623,-1,693,567,554,-1,690,694,695,-1,355,696,544,-1,696,530,544,-1,432,672,697,-1,698,516,699,-1,513,691,535,-1,700,701,702,-1,485,497,487,-1,703,622,704,-1,704,620,489,-1,493,484,486,-1,486,485,487,-1,705,617,484,-1,482,481,324,-1,353,526,431,-1,587,353,438,-1,559,706,560,-1,636,647,448,-1,707,445,447,-1,399,539,445,-1,503,598,611,-1,464,444,465,-1,642,589,462,-1,708,642,462,-1,709,706,454,-1,588,437,436,-1,434,677,710,-1,353,711,526,-1,712,430,713,-1,543,519,518,-1,429,427,430,-1,419,714,715,-1,716,411,417,-1,715,717,718,-1,411,719,412,-1,694,409,336,-1,615,720,721,-1,398,601,722,-1,402,723,722,-1,400,679,651,-1,539,724,538,-1,654,658,396,-1,725,364,600,-1,394,393,396,-1,726,727,728,-1,595,594,657,-1,729,590,656,-1,381,632,384,-1,730,731,732,-1,385,733,379,-1,734,681,735,-1,362,725,366,-1,736,370,357,-1,555,362,682,-1,354,737,696,-1,427,736,356,-1,711,353,352,-1,362,555,557,-1,738,739,350,-1,338,349,541,-1,350,568,545,-1,338,541,740,-1,738,741,739,-1,336,741,695,-1,629,742,335,-1,623,330,331,-1,482,743,328,-1,743,326,572,-1,321,744,322,-1,318,317,319,-1,70,66,745,-1,746,747,748,-1,158,153,152,-1,311,134,133,-1,749,133,313,-1,222,221,176,-1,164,750,167,-1,751,8,10,-1,752,134,309,-1,753,297,752,-1,754,74,755,-1,756,305,757,-1,758,759,223,-1,132,254,253,-1,760,87,761,-1,296,267,295,-1,762,253,763,-1,764,298,765,-1,764,766,298,-1,283,764,767,-1,768,287,286,-1,769,81,80,-1,767,768,770,-1,284,771,285,-1,76,282,772,-1,275,280,248,-1,247,773,278,-1,142,774,251,-1,775,776,777,-1,250,145,778,-1,30,779,31,-1,2,780,263,-1,780,781,5,-1,259,262,5,-1,779,111,204,-1,782,783,784,-1,785,786,777,-1,787,144,143,-1,788,41,43,-1,238,241,148,-1,249,146,773,-1,17,256,244,-1,202,204,789,-1,790,31,235,-1,22,19,25,-1,791,792,218,-1,215,792,791,-1,793,794,795,-1,266,796,24,-1,220,797,221,-1,220,10,797,-1,798,225,226,-1,176,188,187,-1,317,7,799,-1,800,255,801,-1,64,802,62,-1,228,803,219,-1,804,805,806,-1,790,214,31,-1,807,210,116,-1,205,808,206,-1,809,221,797,-1,158,810,159,-1,702,701,811,-1,811,812,702,-1,172,813,169,-1,704,315,703,-1,704,814,171,-1,182,168,170,-1,173,172,169,-1,170,798,177,-1,799,1,0,-1,120,211,28,-1,121,28,276,-1,140,280,275,-1,245,815,816,-1,90,817,42,-1,132,762,313,-1,129,818,819,-1,818,131,227,-1,305,290,187,-1,150,126,151,-1,754,138,137,-1,137,816,754,-1,118,117,278,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=3 */
		private int[] getatlas_Geo_8_25_coordIndex_3()
		{
			int[] value = {783,782,115,-1,820,821,113,-1,204,235,779,-1,822,71,823,-1,824,101,100,-1,825,102,99,-1,96,826,827,-1,748,323,828,-1,95,829,826,-1,830,831,832,-1,833,93,62,-1,834,822,835,-1,834,836,312,-1,83,42,291,-1,291,761,87,-1,294,84,296,-1,837,78,227,-1,768,767,764,-1,82,285,73,-1,38,83,292,-1,768,765,79,-1,770,284,283,-1,772,282,771,-1,66,70,69,-1,93,838,839,-1,58,57,840,-1,839,51,63,-1,841,842,50,-1,843,844,46,-1,43,38,845,-1,846,47,33,-1,847,845,848,-1,849,33,32,-1,850,29,28,-1,851,848,845,-1,852,853,23,-1,852,854,237,-1,855,856,26,-1,237,266,853,-1,15,855,26,-1,13,12,854,-1,746,13,857,-1,317,318,6,-1,781,2,1,-1,781,780,2,-1,781,1,799,-1,6,7,317,-1,746,857,747,-1,854,852,13,-1,858,4,14,-1,237,236,266,-1,19,858,25,-1,237,853,852,-1,852,23,859,-1,845,40,851,-1,850,860,29,-1,32,31,849,-1,29,847,848,-1,846,861,47,-1,847,43,845,-1,841,50,35,-1,839,53,51,-1,58,840,862,-1,90,56,72,-1,93,839,62,-1,69,67,66,-1,771,288,772,-1,74,769,863,-1,79,287,768,-1,292,39,38,-1,765,768,764,-1,864,837,227,-1,294,865,84,-1,291,817,761,-1,42,817,291,-1,312,314,834,-1,833,62,802,-1,830,832,866,-1,748,828,867,-1,96,827,868,-1,825,97,102,-1,114,110,869,-1,204,203,235,-1,821,114,113,-1,211,850,28,-1,783,115,119,-1,117,122,278,-1,816,815,754,-1,757,304,870,-1,871,872,870,-1,302,151,758,-1,187,306,305,-1,818,227,85,-1,873,129,819,-1,129,131,818,-1,313,133,132,-1,90,136,817,-1,245,816,775,-1,141,140,275,-1,140,757,280,-1,121,120,28,-1,125,124,874,-1,799,0,166,-1,875,876,877,-1,173,169,168,-1,182,170,178,-1,704,171,315,-1,315,878,703,-1,186,185,192,-1,809,797,195,-1,807,879,210,-1,214,849,31,-1,804,806,230,-1,228,219,229,-1,803,802,219,-1,64,219,802,-1,165,317,799,-1,876,875,176,-1,187,876,176,-1,219,880,231,-1,24,853,266,-1,793,881,794,-1,880,91,882,-1,883,791,218,-1,215,791,213,-1,22,884,19,-1,202,789,885,-1,17,16,256,-1,148,872,238,-1,43,847,788,-1,886,787,143,-1,777,776,785,-1,760,887,268,-1,783,888,784,-1,111,789,204,-1,5,4,259,-1,2,263,18,-1,19,884,20,-1,785,269,889,-1,778,890,250,-1,137,251,816,-1,246,775,777,-1,137,142,251,-1,280,249,248,-1,281,40,891,-1,772,81,769,-1,863,769,80,-1,768,286,770,-1,769,76,772,-1,283,766,764,-1,766,86,298,-1,86,292,291,-1,294,296,295,-1,761,892,760,-1,762,132,253,-1,757,305,304,-1,759,224,223,-1,756,757,140,-1,753,752,293,-1,752,309,893,-1,875,163,222,-1,10,0,751,-1,164,167,166,-1,222,176,875,-1,312,749,313,-1,749,311,133,-1,894,170,169,-1,184,183,895,-1,896,158,152,-1,11,746,748,-1,747,323,748,-1,66,316,745,-1,317,94,319,-1,744,320,322,-1,743,572,328,-1,331,625,623,-1,629,542,742,-1,695,694,336,-1,741,742,739,-1,339,668,344,-1,350,573,568,-1,686,344,343,-1,350,545,738,-1,362,557,363,-1,352,897,711,-1,427,898,736,-1,696,355,354,-1,555,682,352,-1,736,357,354,-1,362,366,682,-1,385,379,378,-1,386,380,404,-1,730,732,409,-1,384,382,381,-1,656,596,729,-1,660,391,390,-1,728,899,726,-1,394,396,658,-1,600,398,725,-1,389,593,900,-1,396,655,654,-1,539,901,724,-1,902,400,651,-1,402,722,601,-1,722,367,398,-1,615,721,616,-1,903,904,721,-1,694,730,409,-1,715,718,633,-1,905,716,417,-1,714,717,715,-1,383,387,904,-1,671,543,518,-1,712,713,906,-1,434,433,677,-1,588,436,435,-1,709,454,453,-1,709,907,706,-1,708,645,642,-1,708,908,612,-1,644,464,909,-1,611,501,503,-1,399,445,707,-1,707,447,910,-1,910,911,707,-1,448,912,636,-1,706,907,560,-1,589,642,913,-1,353,431,438,-1,553,440,439,-1,324,743,482,-1,914,915,640,-1,486,487,916,-1,493,486,496,-1,489,814,704,-1,622,620,704,-1,917,918,500,-1,702,919,700,-1,474,504,475,-1,691,492,535,-1,522,548,523,-1,516,515,699,-1,432,527,672,-1,482,623,483,-1,490,640,915,-1,490,915,503,-1,613,492,691,-1,347,574,573,-1,920,408,689,-1,531,540,687,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=4 */
		private int[] getatlas_Geo_8_25_coordIndex_4()
		{
			int[] value = {528,540,529,-1,343,666,346,-1,685,518,520,-1,341,921,566,-1,549,908,461,-1,365,922,682,-1,681,923,380,-1,460,459,581,-1,661,924,664,-1,678,604,651,-1,578,925,648,-1,676,710,677,-1,674,697,672,-1,518,670,671,-1,669,569,668,-1,329,328,572,-1,667,340,572,-1,355,671,356,-1,706,564,454,-1,661,559,558,-1,588,684,563,-1,562,589,585,-1,656,590,592,-1,593,729,594,-1,657,658,654,-1,395,391,660,-1,597,394,658,-1,655,653,595,-1,652,653,655,-1,396,652,655,-1,926,646,647,-1,650,902,651,-1,649,723,402,-1,646,927,448,-1,928,609,644,-1,643,913,642,-1,899,390,709,-1,449,605,602,-1,641,614,450,-1,332,325,324,-1,478,481,638,-1,637,640,490,-1,636,912,635,-1,635,912,450,-1,469,468,475,-1,631,929,632,-1,413,623,625,-1,624,626,628,-1,629,718,627,-1,624,630,625,-1,623,413,412,-1,929,410,632,-1,489,621,916,-1,930,619,470,-1,609,692,536,-1,513,512,474,-1,423,615,616,-1,636,615,452,-1,324,478,480,-1,607,450,614,-1,931,608,614,-1,613,332,324,-1,932,478,933,-1,611,645,612,-1,502,442,610,-1,934,909,467,-1,608,935,606,-1,401,403,652,-1,448,927,605,-1,603,651,604,-1,403,600,653,-1,654,595,657,-1,936,910,447,-1,595,900,593,-1,937,503,915,-1,561,463,589,-1,680,938,562,-1,563,939,437,-1,586,661,558,-1,438,586,587,-1,582,940,583,-1,581,941,579,-1,576,578,650,-1,671,355,543,-1,574,942,575,-1,943,542,349,-1,340,669,329,-1,571,669,340,-1,569,944,517,-1,568,945,519,-1,564,946,458,-1,561,563,684,-1,351,558,560,-1,921,341,683,-1,552,683,550,-1,667,551,341,-1,551,947,549,-1,545,568,543,-1,570,948,949,-1,688,690,950,-1,951,950,952,-1,538,446,445,-1,502,609,536,-1,692,609,928,-1,637,492,613,-1,531,533,953,-1,540,424,687,-1,530,696,528,-1,431,527,432,-1,524,520,954,-1,515,517,944,-1,510,955,495,-1,513,535,511,-1,955,510,504,-1,956,507,509,-1,504,506,475,-1,471,509,957,-1,917,619,930,-1,502,537,503,-1,500,918,498,-1,498,488,487,-1,496,514,495,-1,494,705,484,-1,491,534,492,-1,489,916,487,-1,503,937,599,-1,483,638,481,-1,478,932,479,-1,476,333,477,-1,475,468,473,-1,471,957,472,-1,464,466,473,-1,463,552,461,-1,460,565,458,-1,456,457,913,-1,453,455,456,-1,404,451,405,-1,452,423,405,-1,450,912,448,-1,612,645,708,-1,610,442,444,-1,438,431,436,-1,436,433,434,-1,433,436,431,-1,428,430,712,-1,356,671,426,-1,424,108,107,-1,405,387,386,-1,422,958,416,-1,420,422,959,-1,421,420,715,-1,413,417,411,-1,960,961,962,-1,337,336,409,-1,406,92,407,-1,641,678,963,-1,402,601,403,-1,399,679,400,-1,594,597,657,-1,366,725,398,-1,393,395,659,-1,393,901,397,-1,391,592,392,-1,364,363,388,-1,383,378,386,-1,381,383,964,-1,384,632,410,-1,378,380,386,-1,371,374,375,-1,371,965,376,-1,374,966,372,-1,359,375,372,-1,357,965,371,-1,368,734,369,-1,367,404,365,-1,364,725,362,-1,361,377,359,-1,354,358,737,-1,356,736,354,-1,351,555,352,-1,338,686,346,-1,346,666,347,-1,345,665,343,-1,340,667,341,-1,338,740,331,-1,332,691,333,-1,329,668,327,-1,324,326,743,-1,747,321,323,-1,744,318,320,-1,95,94,165,-1,315,179,878,-1,171,173,179,-1,152,191,190,-1,894,798,170,-1,967,159,195,-1,106,71,314,-1,312,135,106,-1,0,162,164,-1,309,134,301,-1,0,220,162,-1,871,304,306,-1,759,128,224,-1,301,311,299,-1,132,752,297,-1,268,267,296,-1,295,753,293,-1,766,292,86,-1,770,283,767,-1,129,873,968,-1,285,82,283,-1,876,187,969,-1,280,146,249,-1,248,970,886,-1,278,122,279,-1,246,777,277,-1,276,277,121,-1,273,971,274,-1,272,787,270,-1,267,269,890,-1,235,31,779,-1,265,796,266,-1,856,857,859,-1,263,780,5,-1,234,263,262,-1,21,199,260,-1,258,236,235,-1,254,271,252,-1,774,145,251,-1,249,773,247,-1,245,775,246,-1,851,972,848,-1,800,125,874,-1,241,243,242,-1,240,241,238,-1,808,973,257,-1,237,790,235,-1,857,856,855,-1,791,212,213,-1,52,36,35,-1,227,130,864,-1,188,226,189,-1,221,809,174,-1,216,218,792,-1,883,212,791,-1,213,849,214,-1,116,211,120,-1,200,974,209,-1,260,199,201,-1,180,975,198,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=5 */
		private int[] getatlas_Geo_8_25_coordIndex_5()
		{
			int[] value = {197,809,195,-1,187,189,306,-1,813,184,186,-1,172,184,813,-1,182,178,180,-1,168,182,179,-1,177,976,178,-1,176,221,174,-1,171,183,172,-1,289,969,187,-1,165,799,166,-1,163,308,164,-1,149,967,9,-1,160,153,158,-1,155,193,156,-1,160,149,151,-1,148,242,146,-1,145,774,143,-1,140,142,139,-1,139,142,137,-1,89,136,90,-1,89,106,135,-1,132,134,752,-1,870,304,871,-1,126,128,759,-1,117,120,122,-1,119,115,117,-1,116,120,117,-1,114,869,112,-1,111,779,30,-1,107,109,212,-1,72,106,89,-1,105,977,103,-1,102,100,99,-1,105,104,978,-1,95,826,96,-1,979,980,981,-1,93,833,11,-1,92,406,91,-1,982,983,893,-1,86,291,87,-1,84,865,85,-1,770,286,284,-1,83,38,43,-1,39,292,82,-1,77,79,765,-1,81,287,79,-1,76,769,74,-1,40,73,891,-1,71,58,823,-1,862,67,69,-1,68,823,69,-1,62,839,63,-1,61,92,59,-1,58,72,56,-1,36,54,48,-1,48,55,49,-1,52,53,54,-1,50,52,35,-1,47,49,34,-1,44,46,984,-1,41,90,42,-1,40,845,38,-1,36,861,37,-1,33,47,34,-1,30,32,985,-1,29,848,27,-1,24,23,853,-1,26,856,22,-1,24,884,22,-1,21,858,19,-1,16,18,263,-1,14,15,26,-1,11,13,746,-1,11,833,12,-1,9,797,10,-1,3,5,781,-1,2,751,0,-1,855,747,857,-1,747,855,321,-1,854,803,986,-1,854,12,803,-1,858,259,4,-1,21,259,858,-1,859,22,856,-1,859,23,22,-1,972,815,245,-1,972,75,815,-1,987,850,112,-1,987,860,850,-1,849,846,33,-1,213,846,849,-1,788,29,860,-1,788,847,29,-1,44,988,985,-1,44,984,988,-1,843,57,844,-1,843,840,57,-1,60,51,50,-1,63,51,60,-1,840,67,862,-1,840,989,67,-1,771,73,285,-1,73,771,891,-1,74,990,755,-1,990,74,863,-1,77,227,78,-1,227,77,85,-1,314,822,834,-1,71,822,314,-1,991,992,993,-1,991,994,992,-1,311,995,299,-1,311,749,995,-1,996,997,998,-1,997,996,999,-1,978,1000,1001,-1,1000,978,827,-1,825,323,322,-1,323,825,828,-1,1002,1003,1004,-1,1002,1005,1003,-1,105,981,866,-1,105,978,981,-1,821,110,114,-1,821,111,110,-1,210,850,211,-1,210,1006,850,-1,247,970,248,-1,247,279,970,-1,758,126,759,-1,758,151,126,-1,968,1007,1008,-1,968,756,1007,-1,136,762,763,-1,136,313,762,-1,135,313,136,-1,1009,279,277,-1,970,279,1009,-1,1010,301,300,-1,1010,1011,301,-1,1012,894,169,-1,894,1012,1013,-1,190,812,811,-1,192,812,190,-1,508,1014,194,-1,508,507,1014,-1,507,878,1014,-1,507,703,878,-1,1015,1016,1017,-1,1015,1018,1016,-1,1016,794,1019,-1,209,794,1016,-1,1020,790,237,-1,1020,214,790,-1,805,216,806,-1,805,217,216,-1,1021,803,228,-1,986,803,1021,-1,782,116,115,-1,782,807,116,-1,201,206,1022,-1,206,201,1023,-1,793,265,264,-1,793,795,265,-1,861,1024,37,-1,846,1024,861,-1,228,806,1021,-1,230,806,228,-1,1025,883,218,-1,1026,883,1025,-1,1027,200,199,-1,1027,974,200,-1,773,874,124,-1,874,773,146,-1,41,56,90,-1,56,41,1028,-1,890,295,267,-1,890,778,295,-1,784,807,782,-1,784,1029,807,-1,1030,821,820,-1,821,1030,1031,-1,1031,111,821,-1,111,1031,789,-1,1027,796,265,-1,1027,20,796,-1,273,970,1009,-1,970,273,270,-1,785,971,786,-1,785,889,971,-1,145,1032,778,-1,145,144,1032,-1,141,774,142,-1,141,143,774,-1,983,819,818,-1,983,982,819,-1,864,1008,1033,-1,1008,864,130,-1,81,288,287,-1,772,288,81,-1,87,268,88,-1,87,760,268,-1,139,756,140,-1,1007,756,139,-1,1034,239,238,-1,1034,161,239,-1,184,1035,185,-1,184,895,1035,-1,191,154,303,-1,191,152,154,-1,70,1036,68,-1,70,745,1036,-1,1037,1005,1002,-1,1037,831,1005,-1,979,1038,991,-1,979,1001,1038,-1,629,541,542,-1,628,541,629,-1,542,739,742,-1,739,542,943,-1,519,954,520,-1,519,945,954,-1,592,363,557,-1,363,592,591,-1,898,429,1039,-1,429,898,427,-1,1040,425,1041,-1,425,1040,108,-1,1042,1043,1044,-1,1043,1042,1039,-1,1044,681,1042,-1,1044,923,681,-1,1045,1046,376,-1,1045,1047,1046,-1,1046,731,966,-1,731,1046,732,-1,92,1048,407,-1,92,61,1048,-1,410,732,384,-1,410,409,732,-1,596,594,729,-1,594,596,597,-1,364,900,600,-1,389,900,364,-1,539,397,901,-1,399,397,539,-1,904,616,721,-1,616,904,387,-1,1049,1050,1051,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=6 */
		private int[] getatlas_Geo_8_25_coordIndex_6()
		{
			int[] value = {1049,1052,1050,-1,1053,607,606,-1,1053,635,607,-1,1054,1055,1056,-1,1057,1055,1054,-1,1058,414,1059,-1,716,414,1058,-1,718,714,627,-1,717,714,718,-1,1060,1061,1062,-1,1060,1063,1061,-1,1064,421,715,-1,1064,1065,421,-1,427,713,430,-1,427,426,713,-1,711,527,526,-1,711,1066,527,-1,938,563,562,-1,938,939,563,-1,444,644,610,-1,444,464,644,-1,1067,936,1068,-1,1067,643,936,-1,647,451,926,-1,636,451,647,-1,451,636,452,-1,939,1069,586,-1,1069,939,938,-1,608,1070,935,-1,608,1071,1070,-1,494,535,534,-1,535,494,511,-1,1072,702,1073,-1,702,1072,919,-1,1074,444,443,-1,1074,465,444,-1,622,507,956,-1,622,703,507,-1,1075,673,1076,-1,1075,1077,673,-1,1078,1075,1079,-1,1075,1078,1080,-1,544,1081,545,-1,544,530,1081,-1,953,1082,1083,-1,953,533,1082,-1,690,407,1084,-1,689,407,690,-1,689,408,407,-1,1085,545,1081,-1,1085,738,545,-1,326,551,667,-1,326,325,551,-1,684,435,440,-1,588,435,684,-1,567,921,554,-1,921,567,566,-1,574,666,665,-1,666,574,347,-1,920,406,408,-1,920,1086,406,-1,531,1087,529,-1,1087,531,953,-1,1088,1089,942,-1,1089,1088,1090,-1,552,553,554,-1,552,463,553,-1,927,941,605,-1,579,941,927,-1,603,576,650,-1,603,1091,576,-1,697,675,677,-1,697,674,675,-1,713,1092,906,-1,1093,1092,713,-1,426,1093,713,-1,670,1093,426,-1,574,1088,942,-1,574,665,1088,-1,938,584,1069,-1,580,584,938,-1,583,664,924,-1,583,663,664,-1,1094,458,1091,-1,1094,459,458,-1,565,457,455,-1,565,460,457,-1,911,678,707,-1,911,963,678,-1,1068,538,727,-1,446,538,1068,-1,596,395,394,-1,395,596,656,-1,578,402,401,-1,578,648,402,-1,649,926,723,-1,649,646,926,-1,1095,1051,1096,-1,1049,1051,1095,-1,644,934,928,-1,934,644,909,-1,709,726,899,-1,709,453,726,-1,641,604,678,-1,641,449,604,-1,1071,640,479,-1,1071,914,640,-1,411,1058,719,-1,411,716,1058,-1,700,1097,701,-1,700,472,1097,-1,410,633,337,-1,929,633,410,-1,1056,1098,1099,-1,1056,1055,1098,-1,1051,1100,1096,-1,961,1100,1051,-1,719,639,638,-1,719,1058,639,-1,639,1059,1101,-1,639,1058,1059,-1,1102,1096,1100,-1,1102,1063,1096,-1,1055,964,1098,-1,1055,1103,964,-1,500,619,917,-1,619,500,499,-1,691,477,333,-1,691,513,477,-1,608,914,1071,-1,608,931,914,-1,453,1067,726,-1,453,456,1067,-1,606,1049,1095,-1,935,1049,606,-1,577,925,578,-1,925,577,663,-1,447,1068,936,-1,447,446,1068,-1,963,937,915,-1,911,937,963,-1,680,585,460,-1,680,562,585,-1,586,437,939,-1,586,438,437,-1,663,940,925,-1,940,663,583,-1,941,459,1094,-1,941,581,459,-1,646,940,582,-1,646,649,940,-1,602,1091,603,-1,1094,1091,602,-1,1104,693,1105,-1,1104,547,693,-1,665,517,1088,-1,517,665,345,-1,906,1076,1106,-1,1092,1076,906,-1,342,570,340,-1,570,342,948,-1,605,1094,602,-1,605,941,1094,-1,555,560,556,-1,555,351,560,-1,1090,1078,1089,-1,1078,1090,1080,-1,1107,950,951,-1,1107,688,950,-1,1108,953,1083,-1,1108,1087,953,-1,360,1040,1041,-1,360,1109,1040,-1,617,491,536,-1,617,705,491,-1,1087,1085,1081,-1,1087,1108,1085,-1,1082,951,1083,-1,951,1082,1110,-1,1082,1111,1112,-1,1082,533,1111,-1,533,1025,1111,-1,532,1025,533,-1,525,685,520,-1,1113,685,525,-1,521,699,522,-1,521,1114,699,-1,674,1077,1115,-1,674,673,1077,-1,670,1113,1093,-1,670,685,1113,-1,547,523,548,-1,1104,523,547,-1,622,510,514,-1,622,956,510,-1,510,509,505,-1,510,956,509,-1,471,505,509,-1,505,471,506,-1,928,1116,692,-1,928,934,1116,-1,499,934,619,-1,499,1116,934,-1,1073,634,1072,-1,1073,1117,634,-1,705,534,491,-1,534,705,494,-1,935,1052,1049,-1,935,1070,1052,-1,639,933,478,-1,1101,933,639,-1,957,1097,472,-1,957,1118,1097,-1,467,473,468,-1,473,909,464,-1,473,467,909,-1,439,693,554,-1,439,1105,693,-1,913,585,589,-1,585,913,457,-1,404,722,451,-1,367,722,404,-1,614,963,931,-1,614,641,963,-1,1068,726,1067,-1,727,726,1068,-1,708,461,908,-1,708,462,461,-1,440,434,441,-1,435,434,440,-1,929,715,633,-1,1064,715,929,-1,422,1119,958,-1,422,421,1119,-1,715,959,419,-1,715,420,959,-1,958,1120,416,-1,1121,1120,958,-1,1122,1120,1121,-1,714,624,627,-1,714,419,624,-1,1122,1100,1120,-1,1122,1102,1100,-1,631,1064,929,-1,1065,1064,631,-1,1053,615,635,-1,1053,720,615,-1,606,1060,1053,-1,1095,1060,606,-1,400,401,652,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=7 */
		private int[] getatlas_Geo_8_25_coordIndex_7()
		{
			int[] value = {400,902,401,-1,900,653,600,-1,900,595,653,-1,392,709,390,-1,392,907,709,-1,382,378,383,-1,382,385,378,-1,1123,407,1048,-1,407,1123,1084,-1,732,1047,384,-1,1047,732,1046,-1,61,373,1048,-1,842,373,61,-1,734,1045,369,-1,734,735,1045,-1,1047,735,733,-1,735,1047,1045,-1,358,377,361,-1,358,371,377,-1,359,1109,360,-1,1109,359,841,-1,368,1039,1042,-1,1039,368,898,-1,1041,528,1124,-1,528,1041,425,-1,557,392,592,-1,556,392,557,-1,339,686,338,-1,339,344,686,-1,571,949,1125,-1,571,570,949,-1,353,558,351,-1,587,558,353,-1,1001,750,1038,-1,1001,1000,750,-1,1126,831,830,-1,1126,1005,831,-1,68,996,1127,-1,68,1036,996,-1,181,179,182,-1,181,878,179,-1,157,811,155,-1,157,190,811,-1,812,185,1035,-1,192,185,812,-1,128,872,871,-1,128,127,872,-1,161,8,239,-1,161,9,8,-1,162,222,163,-1,220,222,162,-1,128,306,189,-1,128,871,306,-1,980,866,981,-1,830,866,980,-1,308,1011,1010,-1,163,1011,308,-1,990,864,1033,-1,990,837,864,-1,122,277,279,-1,122,121,277,-1,274,889,887,-1,971,889,274,-1,144,272,1032,-1,144,787,272,-1,786,273,1009,-1,786,971,273,-1,270,886,970,-1,886,270,787,-1,233,256,16,-1,233,257,256,-1,264,236,258,-1,266,236,264,-1,1029,879,807,-1,1029,1015,879,-1,234,16,263,-1,233,16,234,-1,1032,297,753,-1,1032,272,297,-1,777,1009,277,-1,777,786,1009,-1,57,1028,844,-1,57,56,1028,-1,17,241,240,-1,17,243,241,-1,794,974,795,-1,209,974,794,-1,229,1128,230,-1,229,231,1128,-1,216,1021,806,-1,216,1129,1021,-1,1040,37,1024,-1,1040,1109,37,-1,175,798,226,-1,175,177,798,-1,986,1129,1020,-1,986,1021,1129,-1,1086,804,882,-1,1086,1130,804,-1,214,1129,215,-1,1020,1129,214,-1,1026,212,883,-1,1026,107,212,-1,885,881,202,-1,881,885,1131,-1,1023,207,206,-1,1023,1132,207,-1,1019,1017,1016,-1,1017,1019,1030,-1,264,1133,793,-1,258,1133,264,-1,197,975,180,-1,196,975,197,-1,810,196,159,-1,810,975,196,-1,193,508,194,-1,193,1118,508,-1,303,1012,191,-1,303,1013,1012,-1,895,1073,1035,-1,895,1117,1073,-1,174,177,175,-1,976,177,174,-1,994,300,992,-1,994,1010,300,-1,307,750,164,-1,750,307,1038,-1,1097,193,155,-1,1097,1118,193,-1,160,154,153,-1,302,160,151,-1,302,154,160,-1,801,125,800,-1,801,1134,125,-1,785,251,250,-1,785,776,251,-1,982,309,310,-1,982,893,309,-1,1135,1008,1007,-1,1008,1135,1033,-1,148,870,872,-1,148,147,870,-1,870,280,757,-1,870,147,280,-1,879,1006,210,-1,879,1136,1006,-1,113,1136,820,-1,113,1006,1136,-1,868,103,102,-1,868,104,103,-1,867,825,99,-1,867,828,825,-1,866,977,105,-1,866,1137,977,-1,1137,866,832,-1,320,825,322,-1,320,97,825,-1,1036,999,996,-1,999,1036,824,-1,1127,835,822,-1,1127,1138,835,-1,1139,1005,1126,-1,1005,1139,1003,-1,837,79,78,-1,837,80,79,-1,754,75,74,-1,754,815,75,-1,58,69,823,-1,58,862,69,-1,59,63,60,-1,64,63,59,-1,989,838,67,-1,1140,838,989,-1,45,55,1141,-1,49,55,45,-1,55,53,1140,-1,54,53,55,-1,36,47,861,-1,36,48,47,-1,1109,35,37,-1,841,35,1109,-1,1142,984,1143,-1,988,984,1142,-1,213,1024,846,-1,109,1024,213,-1,112,1142,987,-1,869,1142,112,-1,25,14,26,-1,25,858,14,-1,232,261,1022,-1,232,234,261,-1,321,15,744,-1,321,855,15,-1,7,781,799,-1,7,3,781,-1,246,28,27,-1,28,246,276,-1,12,802,803,-1,802,12,833,-1,3,14,4,-1,3,6,14,-1,75,851,76,-1,851,75,972,-1,985,110,30,-1,985,988,110,-1,1144,860,987,-1,1144,788,860,-1,985,34,44,-1,32,34,985,-1,788,1028,41,-1,788,1144,1028,-1,44,49,45,-1,34,49,44,-1,843,989,840,-1,1141,989,843,-1,1141,46,45,-1,1141,843,46,-1,50,61,60,-1,61,50,842,-1,822,68,1127,-1,822,823,68,-1,282,891,771,-1,282,281,891,-1,755,1033,1135,-1,755,990,1033,-1,766,82,292,-1,766,283,82,-1,88,84,298,-1,88,296,84,-1,1003,299,995,-1,299,1003,1139,-1,312,995,749,-1,312,836,995,-1,1145,745,316,-1,745,1145,101,-1,981,1001,979,-1,1001,981,978,-1,94,98,319,-1,94,96,98,-1,832,1037,1137,-1,1037,832,831,-1,104,827,978,-1,827,104,868,-1,824,1146,999,-1,100,1146,824,-1,1146,103,977,-1,1146,100,103,-1,867,316,748,-1,316,867,1145,-1,119,124,123,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=8 */
		private int[] getatlas_Geo_8_25_coordIndex_8()
		{
			int[] value = {124,119,118,-1,310,876,982,-1,877,876,310,-1,136,761,817,-1,136,763,761,-1,150,161,1034,-1,150,149,161,-1,896,157,156,-1,157,896,152,-1,967,160,159,-1,160,967,149,-1,994,1038,307,-1,1038,994,991,-1,171,1147,183,-1,814,1147,171,-1,197,178,976,-1,180,178,197,-1,1013,798,894,-1,798,1013,225,-1,1147,895,183,-1,1147,1117,895,-1,1013,223,225,-1,1013,303,223,-1,1148,156,194,-1,896,156,1148,-1,194,198,1148,-1,194,1014,198,-1,198,878,181,-1,198,1014,878,-1,205,973,808,-1,973,205,1149,-1,1131,789,1031,-1,1131,885,789,-1,1018,1029,1150,-1,1018,1015,1029,-1,1023,200,208,-1,1023,201,200,-1,1018,209,1016,-1,1150,209,1018,-1,1150,208,209,-1,794,1131,1019,-1,794,881,1131,-1,1025,217,1111,-1,217,1025,218,-1,1111,805,1112,-1,1111,217,805,-1,1029,1132,1150,-1,1132,1029,784,-1,1022,260,201,-1,1022,261,260,-1,226,176,175,-1,176,226,188,-1,1128,880,882,-1,1128,231,880,-1,1143,46,844,-1,1143,984,46,-1,808,1022,206,-1,808,232,1022,-1,257,232,808,-1,257,233,232,-1,239,751,240,-1,239,8,751,-1,242,244,800,-1,242,243,244,-1,245,848,972,-1,245,27,848,-1,294,983,865,-1,294,293,983,-1,1134,1151,1152,-1,1134,1149,1151,-1,1017,820,1136,-1,820,1017,1030,-1,199,20,1027,-1,21,20,199,-1,801,1149,1134,-1,801,973,1149,-1,778,753,295,-1,753,778,1032,-1,274,253,252,-1,274,892,253,-1,273,271,270,-1,273,252,271,-1,275,886,143,-1,275,248,886,-1,969,982,876,-1,982,969,819,-1,1008,129,968,-1,1008,130,129,-1,887,269,268,-1,889,269,887,-1,992,299,1139,-1,299,992,300,-1,1007,138,1135,-1,1007,139,138,-1,877,301,1011,-1,877,310,301,-1,967,797,9,-1,967,195,797,-1,191,186,192,-1,1012,186,191,-1,1138,1037,1002,-1,1138,998,1037,-1,980,991,993,-1,991,980,979,-1,167,95,165,-1,829,95,167,-1,328,330,482,-1,328,327,330,-1,740,628,626,-1,740,541,628,-1,339,327,668,-1,339,331,327,-1,348,739,943,-1,348,350,739,-1,1039,428,1043,-1,428,1039,429,-1,897,1044,1043,-1,897,922,1044,-1,358,1124,737,-1,358,361,1124,-1,923,922,365,-1,923,1044,922,-1,965,370,369,-1,370,965,357,-1,841,373,842,-1,359,373,841,-1,966,376,1046,-1,376,966,374,-1,376,369,1045,-1,369,376,965,-1,1123,966,731,-1,1123,372,966,-1,964,904,1098,-1,964,383,904,-1,388,590,729,-1,388,591,590,-1,393,724,901,-1,393,659,724,-1,1063,1095,1096,-1,1060,1095,1063,-1,903,1098,904,-1,903,1099,1098,-1,1057,1103,1055,-1,1153,1103,1057,-1,1059,960,962,-1,414,960,1059,-1,418,413,630,-1,418,417,413,-1,1154,1122,1121,-1,1102,1122,1154,-1,716,415,414,-1,905,415,716,-1,1119,1153,1057,-1,1153,421,1065,-1,1153,1119,421,-1,422,905,959,-1,422,415,905,-1,1106,712,906,-1,1106,1066,712,-1,1066,672,527,-1,1066,1106,672,-1,915,931,963,-1,931,915,914,-1,723,451,722,-1,723,926,451,-1,564,664,946,-1,564,662,664,-1,476,465,1074,-1,476,466,465,-1,470,506,471,-1,469,506,470,-1,473,477,474,-1,466,477,473,-1,1101,1052,933,-1,1050,1052,1101,-1,1147,489,488,-1,489,1147,814,-1,493,511,494,-1,511,493,495,-1,617,1116,618,-1,692,1116,617,-1,634,1147,488,-1,634,1117,1147,-1,508,957,509,-1,508,1118,957,-1,512,504,474,-1,512,955,504,-1,955,511,495,-1,511,955,512,-1,954,575,524,-1,575,954,945,-1,1076,1079,1075,-1,1092,1079,1076,-1,1080,1077,1075,-1,1080,1115,1077,-1,1080,698,1115,-1,1113,1078,1079,-1,1113,525,1078,-1,424,1026,687,-1,424,107,1026,-1,1087,530,529,-1,530,1087,1081,-1,1110,1086,920,-1,1110,1130,1086,-1,695,950,690,-1,950,695,952,-1,694,1084,730,-1,694,690,1084,-1,1114,674,1115,-1,675,674,1114,-1,944,1125,515,-1,944,571,1125,-1,490,536,491,-1,537,536,490,-1,524,1078,525,-1,1089,1078,524,-1,689,1107,920,-1,689,688,1107,-1,734,1042,681,-1,734,368,1042,-1,1125,548,522,-1,1125,949,548,-1,949,546,548,-1,949,948,546,-1,325,947,551,-1,325,334,947,-1,921,552,554,-1,921,683,552,-1,1069,661,586,-1,1069,924,661,-1,1155,1105,1156,-1,1155,1104,1105,-1,568,575,945,-1,575,568,573,-1,566,948,342,-1,566,546,948,-1,680,580,938,-1,581,580,680,-1,584,924,1069,-1,584,583,924,-1,576,458,946,-1,576,1091,458,-1,579,584,580,-1,579,582,584,-1,455,564,565,-1,564,455,454,-1,538,728,727,-1,538,724,728,-1,1071,932,1070,-1,932,1071,479,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=9 */
		private int[] getatlas_Geo_8_25_coordIndex_9()
		{
			int[] value = {1120,961,960,-1,961,1120,1100,-1,501,442,502,-1,501,612,442,-1,637,480,479,-1,480,637,613,-1,334,476,947,-1,334,333,476,-1,908,442,612,-1,908,443,442,-1,918,919,1072,-1,919,918,917,-1,700,470,472,-1,700,930,470,-1,621,514,496,-1,621,622,514,-1,335,718,629,-1,633,718,335,-1,1154,1099,1061,-1,1154,1056,1099,-1,1050,961,1051,-1,962,961,1050,-1,412,638,483,-1,638,412,719,-1,1101,962,1050,-1,1101,1059,962,-1,1063,1154,1061,-1,1063,1102,1154,-1,1103,381,964,-1,1103,631,381,-1,467,619,934,-1,467,469,619,-1,1072,498,918,-1,1072,634,498,-1,947,1074,549,-1,947,476,1074,-1,643,456,913,-1,456,643,1067,-1,902,578,401,-1,650,578,902,-1,397,652,396,-1,400,652,397,-1,728,659,660,-1,724,659,728,-1,910,598,599,-1,936,598,910,-1,706,662,564,-1,706,559,662,-1,577,946,664,-1,577,576,946,-1,649,925,940,-1,649,648,925,-1,546,693,547,-1,546,567,693,-1,1106,673,672,-1,1076,673,1106,-1,676,1156,710,-1,676,1155,1156,-1,571,569,669,-1,944,569,571,-1,927,582,579,-1,582,927,646,-1,380,365,404,-1,923,365,380,-1,553,684,440,-1,463,684,553,-1,516,1088,517,-1,516,1090,1088,-1,687,1025,532,-1,1025,687,1026,-1,1083,952,1108,-1,952,1083,951,-1,1041,361,360,-1,361,1041,1124,-1,942,524,575,-1,942,1089,524,-1,522,515,1125,-1,699,515,522,-1,432,677,433,-1,432,697,677,-1,695,1108,952,-1,1108,695,1085,-1,1107,1110,920,-1,1107,951,1110,-1,1082,1130,1110,-1,1082,1112,1130,-1,1090,698,1080,-1,1090,516,698,-1,1115,699,1114,-1,1115,698,699,-1,521,675,1114,-1,676,675,521,-1,1079,1093,1113,-1,1093,1079,1092,-1,1104,521,523,-1,521,1155,676,-1,1155,521,1104,-1,919,930,700,-1,930,919,917,-1,618,499,485,-1,1116,499,618,-1,496,916,621,-1,496,486,916,-1,1070,933,1052,-1,1070,932,933,-1,1156,439,441,-1,439,1156,1105,-1,679,707,678,-1,399,707,679,-1,611,936,643,-1,936,611,598,-1,908,1074,443,-1,908,549,1074,-1,911,599,937,-1,911,910,599,-1,710,441,434,-1,441,710,1156,-1,428,1066,711,-1,428,712,1066,-1,1057,958,1119,-1,958,1054,1121,-1,958,1057,1054,-1,959,417,419,-1,959,905,417,-1,960,416,1120,-1,416,960,414,-1,1121,1056,1154,-1,1056,1121,1054,-1,630,419,418,-1,419,630,624,-1,1153,631,1103,-1,1153,1065,631,-1,1062,1099,903,-1,1062,1061,1099,-1,1062,1053,1060,-1,1062,720,1053,-1,903,720,1062,-1,903,721,720,-1,728,390,899,-1,660,390,728,-1,389,729,593,-1,388,729,389,-1,731,1084,1123,-1,1084,731,730,-1,384,733,385,-1,384,1047,733,-1,372,1048,373,-1,1048,372,1123,-1,379,735,681,-1,379,733,735,-1,898,370,736,-1,898,368,370,-1,352,922,897,-1,352,682,922,-1,1124,696,737,-1,696,1124,528,-1,711,1043,428,-1,711,897,1043,-1,907,556,560,-1,907,392,556,-1,346,943,349,-1,346,348,943,-1,569,344,668,-1,344,569,345,-1,695,738,1085,-1,695,741,738,-1,742,336,335,-1,742,741,336,-1,331,626,625,-1,331,740,626,-1,750,829,167,-1,750,1000,829,-1,830,993,1126,-1,993,830,980,-1,1127,998,1138,-1,1127,996,998,-1,748,65,11,-1,65,748,316,-1,1097,811,701,-1,1097,155,811,-1,1000,826,829,-1,1000,827,826,-1,875,1011,163,-1,875,877,1011,-1,293,893,983,-1,293,752,893,-1,1135,754,755,-1,1135,138,754,-1,303,758,223,-1,302,758,303,-1,993,1139,1126,-1,1139,993,992,-1,763,892,761,-1,763,253,892,-1,298,77,765,-1,77,298,84,-1,80,990,863,-1,990,80,837,-1,290,873,289,-1,873,290,968,-1,776,816,251,-1,776,775,816,-1,250,269,785,-1,250,890,269,-1,887,892,274,-1,887,760,892,-1,801,257,973,-1,801,255,257,-1,1015,1136,879,-1,1136,1015,1017,-1,1152,888,783,-1,1152,1151,888,-1,259,261,262,-1,261,259,260,-1,272,254,297,-1,254,272,271,-1,874,242,800,-1,874,146,242,-1,795,1027,265,-1,974,1027,795,-1,1129,792,215,-1,216,792,1129,-1,406,882,91,-1,406,1086,882,-1,884,796,20,-1,24,796,884,-1,244,255,800,-1,256,255,244,-1,118,773,124,-1,773,118,278,-1,240,2,18,-1,240,751,2,-1,237,986,1020,-1,237,854,986,-1,59,880,219,-1,59,91,880,-1,804,1128,882,-1,804,230,1128,-1,1130,805,804,-1,1130,1112,805,-1,793,202,881,-1,1133,202,793,-1,1023,1150,1132,-1,1023,208,1150,-1,784,207,1132,-1,207,784,888,-1,1031,1019,1131,-1,1030,1019,1031,-1,207,1149,205,-1,1151,207,888,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=10 */
		private int[] getatlas_Geo_8_25_coordIndex_10()
		{
			int[] value = {1149,207,1151,-1,975,1148,198,-1,810,1148,975,-1,810,896,1148,-1,158,896,810,-1,126,1034,127,-1,126,150,1034,-1,702,1035,1073,-1,812,1035,702,-1,813,1012,169,-1,813,186,1012,-1,809,976,174,-1,197,976,809,-1,307,1010,994,-1,307,308,1010,-1,125,1152,123,-1,1134,1152,125,-1,818,865,983,-1,865,818,85,-1,968,305,756,-1,290,305,968,-1,1034,872,127,-1,1034,238,872,-1,289,819,969,-1,289,873,819,-1,123,783,119,-1,1152,783,123,-1,1006,112,850,-1,1006,113,112,-1,99,1145,867,-1,1145,99,101,-1,977,999,1146,-1,997,977,1137,-1,997,999,977,-1,96,102,97,-1,96,868,102,-1,998,1137,1037,-1,997,1137,998,-1,97,319,98,-1,320,319,97,-1,745,824,1036,-1,745,101,824,-1,1138,1004,835,-1,1138,1002,1004,-1,995,1004,1003,-1,995,836,1004,-1,836,835,1004,-1,836,834,835,-1,284,288,771,-1,286,288,284,-1,838,65,67,-1,838,93,65,-1,839,1140,53,-1,838,1140,839,-1,1140,1141,55,-1,1140,989,1141,-1,844,1144,1143,-1,844,1028,1144,-1,987,1143,1144,-1,1142,1143,987,-1,109,1040,1024,-1,108,1040,109,-1,869,988,1142,-1,110,988,869,-1,40,76,851,-1,281,76,40,-1,1133,203,202,-1,1133,258,203,-1,852,857,13,-1,859,857,852,-1,744,6,318,-1,744,15,6,-1};
			return value;
		}

		/** Define subarray values using type double[] with $tupleSize=3 and $tupleSplitSize=1000 for subarray position()=1 */
		private double[] getatlas_Coord_9_25_point_1()
		{
			double[] value = {0.5642,55.725,-1.5377,0.5338,55.7724,-1.5003,0.5197,55.8457,-1.5641,0.4233,55.8298,-1.3664,0.473,55.9172,-1.3609,0.4819,55.9145,-1.4263,0.3868,55.8109,-1.2675,0.4254,55.7723,-1.3606,0.5206,55.794,-1.6296,0.4955,55.7662,-1.6731,0.5576,55.7189,-1.5709,0.4013,55.7978,-0.9373,0.345,55.8444,-0.909,0.3703,55.846,-0.9599,0.4317,55.8823,-1.2732,0.379,55.8281,-1.1917,0.5739,55.9868,-1.6327,0.5935,55.9084,-1.6389,0.5778,55.8923,-1.6074,0.5188,55.968,-1.2446,0.5518,56.0278,-1.2596,0.5479,55.9908,-1.2991,0.4117,55.9517,-1.1841,0.387,55.9729,-1.1127,0.4487,56.018,-1.1577,0.4733,55.9261,-1.2315,0.4211,55.875,-1.1958,1.0586,55.9803,-1.3029,0.9779,56.0607,-1.2647,1.0131,55.9955,-1.2037,0.4219,56.2644,-0.9443,0.343,56.2239,-0.9535,0.3716,56.1858,-0.8821,0.2807,56.1678,-0.859,0.4026,56.1578,-0.8594,0.0876,56.0402,-0.6076,0.2129,56.0427,-0.6909,0.0899,56.0844,-0.6737,1.1487,55.8215,-1.1285,1.2245,55.7661,-1.143,1.2395,55.8501,-1.1611,0.9836,55.8958,-1.0761,1.053,55.8016,-1.1232,1.0724,55.8569,-1.1099,0.5048,56.1653,-0.889,0.5295,56.0676,-0.8593,0.6491,56.0416,-0.91,0.2846,56.1238,-0.8057,0.3085,56.0656,-0.775,0.4273,56.0695,-0.8271,0.1008,55.9933,-0.5823,0.2351,55.9502,-0.6795,0.223,56.0035,-0.6929,0.3419,55.9186,-0.765,0.3293,55.9951,-0.7621,0.4478,55.9822,-0.8343,0.8967,55.8844,-1.0029,0.791,55.8864,-0.9601,0.7838,55.7958,-0.9549,0.1457,55.8045,-0.6506,0.1213,55.9063,-0.5891,0.0,55.8995,-0.563,0.342,55.7913,-0.7972,0.2367,55.8811,-0.6791,0.2539,55.8028,-0.737,0.5074,55.7507,-0.9,0.5154,55.7459,-0.8989,0.5453,55.7997,-0.8568,0.7534,55.6217,-0.9512,0.6668,55.7411,-0.8969,0.661,55.6811,-0.901,0.8483,55.6897,-1.0019,0.8741,55.7807,-1.0091,1.3292,55.7291,-1.1555,1.2897,55.9031,-1.4135,1.2346,55.9188,-1.3701,1.3256,55.8703,-1.2754,1.1797,55.7111,-1.3697,1.2053,55.7896,-1.403,1.2781,55.8031,-1.3476,1.314,55.8582,-1.4124,1.3781,55.8379,-1.3399,1.2953,55.6871,-1.1872,1.1267,55.7716,-1.16,1.1457,55.6968,-1.3525,1.1163,55.731,-1.439,1.1815,55.7056,-1.2584,1.0883,55.7548,-1.2307,1.1308,55.725,-1.289,0.9165,55.7456,-1.0935,0.9903,55.8198,-1.0811,0.1239,55.7536,-0.7784,0.0,55.8274,-0.6244,0.4221,55.7832,-0.8545,0.4393,55.7158,-1.3584,0.4958,55.6776,-1.4248,0.5187,55.6903,-1.3121,0.4652,55.7239,-1.1833,0.4885,55.7077,-1.2485,0.5903,55.6531,-1.0938,0.6609,55.6396,-1.0642,0.6453,55.6573,-0.948,0.5711,55.6572,-1.1827,0.6632,55.6227,-1.1738,0.6651,55.6042,-1.26,0.7202,55.588,-1.2348,0.906,55.7058,-1.1035,0.0,56.1437,-0.8981,0.0,56.1356,-0.8092,0.0891,56.1438,-0.8373,0.5887,56.2779,-0.9763,0.5408,56.3436,-1.0286,0.8189,56.2058,-1.1142,0.7669,56.2772,-1.1481,0.6864,56.2866,-1.0446,0.833,56.1246,-1.4952,0.8155,56.1442,-1.3881,0.8631,56.0652,-1.4953,0.8914,56.0524,-1.5919,0.8698,56.1333,-1.5965,0.8837,56.1042,-1.3872,0.9157,56.0212,-1.358,0.876,55.9858,-1.4639,0.8278,56.1474,-1.717,0.8576,56.0603,-1.7249,0.7655,56.1037,-1.7719,0.6025,55.6942,-1.8585,0.6952,55.724,-1.791,0.7664,55.7007,-1.8043,0.9787,55.7772,-1.5865,1.0712,55.8144,-1.5257,1.0653,55.7806,-1.5175,0.9457,55.7563,-1.2999,0.9395,55.7201,-1.2944,0.9008,55.7032,-1.4134,0.9487,55.7042,-1.1762,0.9844,55.7409,-1.1524,1.0683,55.892,-1.4507,1.1413,55.8902,-1.5025,1.034,55.8545,-1.5325,0.9413,55.8459,-1.5833,0.9311,55.8519,-1.5575,1.0125,55.8618,-1.5232,0.9273,55.8488,-1.5483,0.9351,55.8224,-1.5248,1.0098,55.8322,-1.4833,0.7835,55.9411,-1.716,0.7821,55.8788,-1.6779,0.7153,55.8734,-1.6911,0.4945,55.7337,-1.7853,0.5468,55.7177,-1.8353,0.4994,55.7031,-1.9237,0.3044,55.7247,-2.0885,0.3755,55.7099,-1.9827,0.4353,55.7056,-2.0319,0.0956,55.7623,-2.1207,0.1495,55.7694,-2.0442,0.1786,55.7609,-2.1124,0.331,55.712,-1.9389,0.3942,55.6894,-1.836,0.4384,55.7072,-1.8658,0.5295,55.7832,-1.7154,0.615,55.7055,-1.5504,0.7183,55.6866,-1.5444,0.5898,55.6552,-1.5125,0.4941,55.6834,-1.4302,0.5512,55.6876,-1.4781,0.5385,55.6453,-1.4567,0.2819,55.4362,-1.9538,0.318,55.493,-2.0517,0.4196,55.4449,-1.9174,0.1061,55.4545,-1.9783,0.1871,55.4715,-2.1121,0.1641,55.4533,-1.9755,0.5606,55.5812,-1.7361,0.6415,55.5565,-1.7919,0.7264,55.6362,-1.6847,0.5441,55.5133,-1.8503,0.3567,55.4725,-1.8726,0.1456,55.4582,-1.9162,0.3108,55.5238,-1.8432,0.2309,55.5232,-1.8738,0.2598,55.4571,-1.8858,0.1364,55.4598,-2.1398,0.1875,55.5132,-2.1902,0.1932,55.6061,-2.2048,0.2556,55.613,-2.1602,0.8509,55.7214,-1.6802,0.7694,55.6529,-1.7493,0.7707,55.6935,-1.8037,0.1793,55.754,-2.1239,0.3101,55.7158,-2.0962,0.1959,55.6742,-2.1659,0.0712,55.7533,-2.0452,0.1311,55.6695,-1.9706,0.4459,55.6865,-1.7133,0.3626,55.6373,-1.7898,0.4039,55.5721,-1.7705,0.2159,55.6208,-1.9046,0.551,55.9974,-1.3021,0.6046,56.0574,-1.3186,0.6161,56.039,-1.3949,0.486,56.202,-1.0556,0.3626,56.1662,-1.0121,0.4172,56.2886,-0.9845,0.7055,56.1094,-1.6141,0.6592,56.0735,-1.5194,0.733,56.1172,-1.5356,0.6594,56.0913,-1.3354,0.6377,56.1302,-1.2624,0.8466,56.204,-1.3285,0.9113,56.13,-1.3036,0.0816,56.1343,-0.9088,0.1714,56.1534,-0.8737,0.2697,56.1137,-0.9459,0.1905,56.1037,-0.9279,0.2084,56.0342,-0.9202,0.0989,56.0315,-0.9,0.0882,56.1191,-0.9388,0.2351,55.7874,-0.8047,0.6178,55.7088,-1.5651,0.6256,55.6647,-1.6507,0.7128,55.6912,-1.5552,0.5502,55.6841,-1.9836,0.6845,55.6683,-1.8924,0.5813,55.6144,-1.973,0.692,55.5916,-1.8478,1.1412,55.7972,-1.4633,0.2119,55.8628,-0.8605,0.2095,55.8588,-0.8572,0.2036,55.863,-0.8639,0.1856,55.7976,-0.8214,0.5934,56.0171,-1.5983,0.5752,55.993,-1.6307,0.5524,55.9823,-1.5632,0.3579,56.1634,-1.0067,0.392,56.1001,-1.0505,0.3678,56.0055,-0.9768,0.6165,55.8105,-1.713,0.5614,55.8168,-1.6817,0.5762,55.8447,-1.654,0.6456,55.862,-1.6818,0.7252,55.9336,-1.7052,0.6593,55.9199,-1.6763,0.6334,55.9514,-1.6902,1.1157,55.9598,-1.3549,1.015,55.974,-1.337,0.8754,55.9554,-1.5573,0.8806,55.8877,-1.5426,0.8528,55.9197,-1.6365,1.0611,55.8663,-1.4357,1.0633,55.8871,-1.445,0.9692,55.8109,-1.2422,0.9792,55.7742,-1.2146,0.9468,55.7704,-1.3022,0.6087,56.0169,-1.6943,0.6066,56.0135,-1.691,0.6066,56.019,-1.6882,0.3928,56.1067,-1.0564,0.5494,55.9819,-1.3725,0.5537,55.988,-1.3743,0.5454,55.9901,-1.4514,0.541,55.9838,-1.4511,0.5492,55.975,-1.5604,0.435,56.0642,-1.1123,0.4937,56.0506,-1.1868,0.4335,56.0569,-1.1076,1.1044,55.7274,-1.3409,1.1214,55.7356,-1.2924,1.0905,55.8134,-1.3323,0.893,55.8522,-1.3785,0.9248,55.8081,-1.3418,0.9126,55.7831,-1.4616,0.9388,55.8568,-1.2614,1.0329,55.8146,-1.2435,0.9245,55.8546,-1.557,0.9208,56.0185,-1.3515,0.9181,56.0112,-1.3536,0.8769,55.9645,-1.5619,0.8769,55.9751,-1.4603,0.8639,55.8725,-1.6193,1.3373,55.8326,-1.1764,1.3768,55.8392,-1.2419,1.3028,55.6628,-1.2539,1.3783,55.7118,-1.2354,1.3667,55.7123,-1.1987,1.3782,55.7391,-1.3103,1.374,55.7468,-1.3176,1.3798,55.7492,-1.3112,0.8983,55.7566,-1.6425,0.8999,55.7661,-1.6452,1.1126,55.7542,-1.2033,1.182,55.7387,-1.1858,0.9857,55.7122,-1.4338,1.0642,55.7186,-1.389,1.0624,55.7305,-1.3869,1.1094,55.7154,-1.3434,0.9341,55.7414,-1.4219,1.1969,55.687,-1.2898,0.9147,55.5801,-1.3886,0.874,55.5852,-1.4496,0.8765,55.6722,-1.4738,0.4438,55.7051,-2.0275,0.4407,55.6996,-2.0362,0.8732,55.8198,-1.6503,0.8832,55.8149,-1.6457,0.8261,55.7617,-1.7314,0.7021,55.5902,-1.5032,0.7089,55.6283,-1.521,0.8843,55.6824,-1.4758,0.8802,55.6816,-1.4821,0.8963,55.6901,-1.4114,0.9428,55.6919,-1.1791,0.9476,55.7062,-1.1825,0.9044,55.6913,-1.1042,0.1146,55.4632,-1.9197,0.5136,55.7419,-0.907,0.4337,55.7224,-1.3611,0.3879,55.7441,-1.2736,0.3997,55.7357,-1.273,0.3845,55.7612,-1.1817,0.3786,55.799,-1.09,0.3848,55.7927,-1.0898,0.3903,55.792,-1.007,-0.5642,55.725,-1.5377,-0.5296,55.8084,-1.6048,-0.5197,55.8457,-1.5641,-0.4233,55.8298,-1.3664,-0.4818,55.8302,-1.4398,-0.4819,55.9145,-1.4263,-0.4254,55.7723,-1.3606,-0.3868,55.8109,-1.2675,-0.5576,55.7189,-1.5709,-0.4955,55.7662,-1.6731,-0.5206,55.794,-1.6296,-0.3991,55.7968,-0.9481,-0.3684,55.7929,-0.8855,-0.4013,55.7978,-0.9373,-0.4211,55.875,-1.1958,-0.4317,55.8823,-1.2732,-0.5492,55.975,-1.5604,-0.5935,55.9084,-1.6389,-0.5739,55.9868,-1.6327,-0.5188,55.968,-1.2446,-0.4861,55.9306,-1.2803,-0.5479,55.9908,-1.2991,-0.4117,55.9517,-1.1841,-0.4487,56.018,-1.1577,-0.387,55.9729,-1.1127,-0.3844,55.8837,-1.1516,-0.3854,55.9943,-1.0526,-1.0586,55.9803,-1.3029,-1.0131,55.9955,-1.2037,-0.9779,56.0607,-1.2647,-0.3716,56.1858,-0.8821,-0.343,56.2239,-0.9535,-0.4219,56.2644,-0.9443,-0.4026,56.1578,-0.8594,-0.2846,56.1238,-0.8057,-0.0876,56.0402,-0.6076,-0.0899,56.0844,-0.6737,-0.1869,56.106,-0.7395,-1.1521,55.8717,-1.1518,-1.2395,55.8501,-1.1611,-1.2245,55.7661,-1.143,-0.9836,55.8958,-1.0761,-1.0724,55.8569,-1.1099,-1.053,55.8016,-1.1232,-0.6417,56.1313,-0.9226,-0.5295,56.0676,-0.8593,-0.5048,56.1653,-0.889,-0.3085,56.0656,-0.775,-0.2351,55.9502,-0.6795,-0.1008,55.9933,-0.5823,-0.3293,55.9951,-0.7621,-0.223,56.0035,-0.6929,-0.4478,55.9822,-0.8343,-0.2129,56.0427,-0.6909,-0.7838,55.7958,-0.9549,-0.791,55.8864,-0.9601,-0.8967,55.8844,-1.0029,-0.661,55.6811,-0.901,-0.6668,55.7411,-0.8969,-0.779,55.682,-0.9365,-0.5453,55.7997,-0.8568,-0.6651,55.7921,-0.9024,-0.8741,55.7807,-1.0091,-0.8483,55.6897,-1.0019,-1.3424,55.795,-1.1596,-1.3292,55.7291,-1.1555,-1.2897,55.9031,-1.4135,-1.3755,55.8451,-1.3436,-1.2346,55.9188,-1.3701,-1.2781,55.8031,-1.3476,-1.374,55.7468,-1.3176,-1.3781,55.8379,-1.3399,-1.2401,55.7095,-1.3317,-1.1797,55.7111,-1.3697,-1.1267,55.7716,-1.16,-1.1163,55.731,-1.439,-1.1457,55.6968,-1.3525,-1.1308,55.725,-1.289,-1.0883,55.7548,-1.2307,-1.1815,55.7056,-1.2584,-0.9903,55.8198,-1.0811,-0.9165,55.7456,-1.0935,0.0,55.7566,-0.7487,-0.1457,55.8045,-0.6506,-0.1239,55.7536,-0.7784,-0.4221,55.7832,-0.8545,-0.5074,55.7507,-0.9,-0.5519,55.6469,-1.3621,-0.4958,55.6776,-1.4248,-0.4393,55.7158,-1.3584,-0.6726,55.5768,-1.3653,-0.6651,55.6042,-1.26,-0.7202,55.588,-1.2348,-0.5187,55.6903,-1.3121,-0.4885,55.7077,-1.2485,-0.4652,55.7239,-1.1833,-0.5903,55.6531,-1.0938,-0.6609,55.6396,-1.0642,-0.6632,55.6227,-1.1738,-0.906,55.7058,-1.1035,-0.0816,56.1343,-0.9088,-0.0891,56.1438,-0.8373,-0.5408,56.3436,-1.0286,-0.5887,56.2779,-0.9763,-0.8189,56.2058,-1.1142,-0.7071,56.2451,-1.039,-0.6864,56.2866,-1.0446,-0.8837,56.1042,-1.3872,-0.8155,56.1442,-1.3881,-0.833,56.1246,-1.4952,-0.8698,56.1333,-1.5965,-0.8914,56.0524,-1.5919,-0.8631,56.0652,-1.4953,-0.876,55.9858,-1.4639,-0.9157,56.0212,-1.358,-0.7655,56.1037,-1.7719,-0.8576,56.0603,-1.7249,-0.8278,56.1474,-1.717,-0.7664,55.7007,-1.8043,-0.6952,55.724,-1.791,-0.6025,55.6942,-1.8585,-1.0653,55.7806,-1.5175,-1.0712,55.8144,-1.5257,-0.9787,55.7772,-1.5865,-0.9457,55.7563,-1.2999,-0.9315,55.7307,-1.4166,-0.9008,55.7032,-1.4134,-0.9844,55.7409,-1.1524,-0.9487,55.7042,-1.1762,-1.1413,55.8902,-1.5025,-1.0683,55.892,-1.4507,-1.0125,55.8618,-1.5232,-1.034,55.8545,-1.5325,-0.9311,55.8519,-1.5575,-1.0098,55.8322,-1.4833,-0.9351,55.8224,-1.5248,-0.9273,55.8488,-1.5483,-0.7153,55.8734,-1.6911,-0.7821,55.8788,-1.6779,-0.7835,55.9411,-1.716,-0.4994,55.7031,-1.9237,-0.5468,55.7177,-1.8353,-0.4945,55.7337,-1.7853,-0.4353,55.7056,-2.0319,-0.3755,55.7099,-1.9827,-0.3044,55.7247,-2.0885,-0.1786,55.7609,-2.1124,-0.1495,55.7694,-2.0442,-0.0956,55.7623,-2.1207,-0.4384,55.7072,-1.8658,-0.3942,55.6894,-1.836,-0.331,55.712,-1.9389,-0.5295,55.7832,-1.7154,-0.4463,55.7236,-1.7314,-0.5898,55.6552,-1.5125,-0.7183,55.6866,-1.5444,-0.615,55.7055,-1.5504,-0.5512,55.6876,-1.4781,-0.5125,55.7264,-1.444,-0.4941,55.6834,-1.4302,-0.4196,55.4449,-1.9174,-0.318,55.493,-2.0517,-0.2819,55.4362,-1.9538,-0.1871,55.4715,-2.1121,-0.1364,55.4598,-2.1398,-0.1061,55.4545,-1.9783,-0.7264,55.6362,-1.6847,-0.6415,55.5565,-1.7919,-0.6256,55.6647,-1.6507,-0.3567,55.4725,-1.8726,-0.4699,55.5277,-1.7905,-0.3108,55.5238,-1.8432,-0.2598,55.4571,-1.8858,-0.2403,55.538,-2.1395,-0.1875,55.5132,-2.1902,-0.3377,55.6177,-2.1083,-0.2556,55.613,-2.1602,-0.8261,55.7617,-1.7314,-0.7707,55.6935,-1.8037,-0.8509,55.7214,-1.6802,-0.3003,55.6805,-1.9073,-0.229,55.6824,-1.9484,-0.2597,55.747,-2.0035,0.0,55.602,-1.9384,0.0,55.663,-1.9791,-0.1311,55.6695,-1.9706,-0.2159,55.6208,-1.9046,-0.4039,55.5721,-1.7705,-0.3626,55.6373,-1.7898,-0.4459,55.6865,-1.7133,-0.2309,55.5232,-1.8738,-0.6161,56.039,-1.3949,-0.6046,56.0574,-1.3186,-0.551,55.9974,-1.3021,-0.4172,56.2886,-0.9845,-0.3626,56.1662,-1.0121,-0.486,56.202,-1.0556,-0.733,56.1172,-1.5356,-0.6592,56.0735,-1.5194,-0.7055,56.1094,-1.6141,-0.5094,56.1121,-1.1231,-0.547,56.1982,-1.1134,-0.9113,56.13,-1.3036,-0.8466,56.204,-1.3285,-0.1714,56.1534,-0.8737,-0.1905,56.1037,-0.9279,-0.2697,56.1137,-0.9459,-0.1835,56.0986,-0.9302,-0.0882,56.1191,-0.9388,-0.0989,56.0315,-0.9,-0.5606,55.5812,-1.7361,-0.4748,55.6092,-1.7282,-0.692,55.5916,-1.8478,-0.7694,55.6529,-1.7493,-1.1733,55.8524,-1.4963,-1.1412,55.7972,-1.4633,-0.1758,56.1065,-0.9252,-0.3706,55.8491,-1.1293,-0.3641,55.8579,-1.0305,-0.3579,56.1634,-1.0067,-0.3441,56.1568,-0.9938,-0.3678,56.0055,-0.9768,-0.6066,56.019,-1.6882,-0.6567,56.0767,-1.7095,-0.6356,56.0562,-1.633,-0.6165,55.8105,-1.713,-0.6456,55.862,-1.6818,-0.5762,55.8447,-1.654,-0.7252,55.9336,-1.7052,-0.7867,56.0141,-1.7697,-0.6822,56.0143,-1.7601,-1.1152,55.9399,-1.231,-1.1828,55.9287,-1.3043,-1.2085,55.9078,-1.2605,-1.015,55.974,-1.337,-1.0728,55.916,-1.3739,-1.1157,55.9598,-1.3549,-0.8528,55.9197,-1.6365,-0.8806,55.8877,-1.5426,-0.8754,55.9554,-1.5573,-1.0633,55.8871,-1.445,-1.0077,55.8585,-1.5157,-0.6066,56.0135,-1.691,-0.6087,56.0169,-1.6943,-0.392,56.1001,-1.0505,-0.5494,55.9819,-1.3725,-0.5524,55.9823,-1.5632,-0.5454,55.9901,-1.4514,-0.5033,55.9079,-1.4885,-0.4335,56.0569,-1.1076,-0.4931,56.0421,-1.1858,-0.435,56.0642,-1.1123,-1.0897,55.7939,-1.3911,-1.0905,55.8134,-1.3323,-1.1214,55.7356,-1.2924,-0.9248,55.8081,-1.3418,-0.893,55.8522,-1.3785,-0.8909,55.8311,-1.5029,-0.9692,55.8109,-1.2422,-1.0225,55.8505,-1.2689,-0.9388,55.8568,-1.2614,-0.9245,55.8546,-1.557,-0.9181,56.0112,-1.3536,-0.9208,56.0185,-1.3515,-0.8769,55.9645,-1.5619,-0.8639,55.8725,-1.6193,-1.3768,55.8392,-1.2419,-1.3373,55.8326,-1.1764,-1.3256,55.8703,-1.2754,-1.3667,55.7123,-1.1987,-1.3783,55.7118,-1.2354,-1.3028,55.6628,-1.2539,-1.3798,55.7492,-1.3112,-1.3782,55.7391,-1.3103,-0.8999,55.7661,-1.6452,-0.8983,55.7566,-1.6425,-1.182,55.7387,-1.1858,-1.1126,55.7542,-1.2033,-0.9871,55.7225,-1.4322,-1.0624,55.7305,-1.3869,-0.9857,55.7122,-1.4338,-0.9341,55.7414,-1.4219,-0.9147,55.5801,-1.3886,-0.8963,55.6901,-1.4114,-0.8765,55.6722,-1.4738,-0.6845,55.6683,-1.8924,-0.6817,55.6756,-1.8895,-0.8832,55.8149,-1.6457,-0.8203,55.769,-1.733,-0.6178,55.7088,-1.5651,-0.8843,55.6824,-1.4758,-0.9428,55.6919,-1.1791,-0.9044,55.6913,-1.1042,-0.5831,55.5425,-1.9233,-0.4475,55.5172,-1.9998,-0.3101,55.7158,-2.0962,-0.1146,55.4632,-1.9197,-0.1456,55.4582,-1.9162,-0.1216,55.5243,-1.9107,-0.4337,55.7224,-1.3611,-0.3845,55.7612,-1.1817,-0.3879,55.7441,-1.2736,-0.3788,55.771,-1.1818,-0.3848,55.7927,-1.0898,-0.3786,55.799,-1.09,-0.3757,55.8008,-1.0093,-0.3997,55.7357,-1.273,-0.6568,55.6741,-0.9071,-0.5154,55.7459,-0.8989,-0.4079,55.7903,-0.9444,-0.1137,55.5046,-2.2121,-0.9368,55.7057,-1.2927,-0.9476,55.7062,-1.1825,-0.7128,55.6912,-1.5552,-0.5385,55.6453,-1.4567,-0.5901,55.6104,-1.4768,-0.7296,55.6928,-1.5521,-0.9213,55.6969,-1.4756,-0.8797,55.8253,-1.6432,-0.9462,55.8377,-1.5879,-0.548,55.6906,-1.9782,-0.8732,55.8198,-1.6503,-0.9792,55.7742,-1.2146,-0.9774,55.7621,-1.2074,-1.0827,55.7615,-1.2424,-1.0415,55.7847,-1.2224,-1.1044,55.7274,-1.3409,-1.0642,55.7186,-1.389,-1.1969,55.687,-1.2898,-1.233,55.6918,-1.2428,-1.2998,55.6912,-1.2998,-1.2431,55.6876,-1.2908,-1.383,55.8398,-1.3337,-1.3099,55.6928,-1.2978,-1.2996,55.6931,-1.3055,-1.314,55.8582,-1.4124,-1.3158,55.8668,-1.4138,-1.0096,55.9667,-1.338,-1.0658,55.9085,-1.3718,-1.0705,55.8273,-1.3063,-1.0636,55.8936,-1.3718,-0.5518,56.0278,-1.2596,-0.4843,55.9959,-1.2026,-0.5778,55.8923,-1.6074,-0.473,55.9172,-1.3609,-0.541,55.9838,-1.4511,-0.5385,56.3427,-1.0322,-0.4157,56.2892,-0.9789,-0.7826,56.2407,-1.3456,-0.7766,56.2395,-1.3457,-0.7824,56.1869,-1.3997,-0.8003,56.1818,-1.4952,-0.8,56.1776,-1.5851,-0.8047,56.181,-1.495,-1.0088,55.6814,-1.4705,-1.093,55.6901,-1.3981,-0.8826,55.8833,-1.534,-0.7799,55.983,-0.9516,-1.0475,55.9177,-1.1499,-0.6593,55.9199,-1.6763,-0.8571,55.9638,-1.6626,-0.5267,56.2506,-1.0747,-0.4733,55.9261,-1.2315,-0.0871,56.1252,-0.9377,-0.1856,55.7976,-0.8214,-0.1291,55.7541,-0.783,-0.2351,55.7874,-0.8047,-0.4901,55.7067,-1.6528,-0.5813,55.6144,-1.973,-0.6581,56.0742,-1.7158,-0.2982,55.789,-0.8417,-0.2745,55.8642,-0.8672,-0.2635,56.175,-0.9182,-0.7881,56.1863,-1.3992,-0.6594,56.0913,-1.3354,-0.6605,56.0752,-1.4196,-0.0969,55.756,-2.1324,0.0,55.7295,-2.1286,0.0,55.6537,-2.1945,0.0,55.5273,-1.9188,0.0,55.4816,-1.9327,-0.5441,55.5133,-1.8503,-1.0693,55.8946,-1.4453,-1.0556,55.7363,-1.5058,-0.7897,55.8156,-1.6965,-1.2248,55.9178,-1.456,-0.8058,56.178,-1.586,-0.8944,56.1471,-1.1875,-0.7669,56.2772,-1.1481,-0.6342,56.3567,-1.0989,-0.4645,55.7505,-1.0996,-0.4959,55.7157,-0.9804,-0.599,55.6113,-1.3745,-0.472,55.739,-1.0273,-0.3903,55.792,-1.007,-0.5392,55.6398,-1.4491,-0.9406,55.5987,-1.173,-0.9157,55.6071,-1.0883,-1.0526,55.7572,-1.1741,-1.045,55.7766,-1.2107,-1.2512,55.8449,-1.4679,-1.1487,55.8215,-1.1285,-1.1457,55.8832,-1.5075,-1.1732,55.8624,-1.4999,-1.2525,55.8536,-1.4714,-1.3904,55.7832,-1.2297,-0.342,55.7913,-0.7972,-0.355,55.8384,-0.7591,-0.4529,55.8115,-0.8231,-0.6614,55.8757,-0.9185,-0.6491,56.0416,-0.91,-0.6499,55.963,-0.9149,-0.463,56.2205,-0.9083,-0.2807,56.1678,-0.859,-0.361,55.9159,-0.943,-0.3649,55.9208,-0.998,-0.379,55.8281,-1.1917,-0.345,55.8444,-0.909,-0.3703,55.846,-0.9599,-0.5338,55.7724,-1.5003,0.3788,55.771,-1.1818,0.6568,55.6741,-0.9071,0.3991,55.7968,-0.9481,0.3757,55.8008,-1.0093,0.4079,55.7903,-0.9444,0.9368,55.7057,-1.2927,0.5901,55.6104,-1.4768,0.5296,55.8084,-1.6048,0.9315,55.7307,-1.4166,0.9871,55.7225,-1.4322,1.2248,55.9178,-1.456,1.2307,55.911,-1.4607,0.9462,55.8377,-1.5879,0.8797,55.8253,-1.6432,0.548,55.6906,-1.9782,0.6817,55.6756,-1.8895,1.0827,55.7615,-1.2424,1.045,55.7766,-1.2107,0.9774,55.7621,-1.2074,0.9812,55.7651,-1.2034,1.2431,55.6876,-1.2908,1.2401,55.7095,-1.3317,1.233,55.6918,-1.2428,1.2998,55.6912,-1.2998,1.2996,55.6931,-1.3055,1.3755,55.8451,-1.3436,1.3099,55.6928,-1.2978,1.3904,55.7832,-1.2297,1.383,55.8398,-1.3337,0.8571,55.9638,-1.6626,1.0077,55.8585,-1.5157,1.0728,55.916,-1.3739,1.0658,55.9085,-1.3718,1.0096,55.9667,-1.338,1.0352,55.7779,-1.4339,0.4157,56.2892,-0.9789,0.5033,55.9079,-1.4885,0.4818,55.8302,-1.4398,0.8047,56.181,-1.495,0.8058,56.178,-1.586,0.8003,56.1818,-1.4952,1.0636,55.8936,-1.3718,1.0095,55.9241,-1.3167,0.8909,55.8311,-1.5029,0.9671,55.9698,-1.0861,0.5385,56.3427,-1.0322,0.3441,56.1568,-0.9938,0.1758,56.1065,-0.9252,0.1835,56.0986,-0.9302,0.5094,56.1121,-1.1231,0.5888,56.1663,-1.1769,0.5503,56.0964,-1.1919,0.4931,56.0421,-1.1858,0.4901,55.7067,-1.6528,0.5831,55.5425,-1.9233,0.5125,55.7264,-1.444,0.6822,56.0143,-1.7601,0.6581,56.0742,-1.7158,0.2982,55.789,-0.8417,0.2745,55.8642,-0.8672,0.1082,55.8584,-0.8227,0.1008,55.9476,-0.8595,0.2172,55.9439,-0.89,0.7881,56.1863,-1.3992,0.6356,56.0562,-1.633,0.4748,55.6092,-1.7282,0.3003,55.6805,-1.9073,0.0969,55.756,-2.1324,0.1126,55.6678,-2.1901,0.2403,55.538,-2.1395,0.0,55.4372,-1.9857,1.1728,55.9393,-1.407,1.0693,55.8946,-1.4453,1.0526,55.7572,-1.1741,1.0556,55.7363,-1.5058,0.9344,55.7395,-1.5702,0.6972,56.3144,-1.19,0.6342,56.3567,-1.0989,0.851,55.6181,-0.9925,0.779,55.682,-0.9365,0.7269,55.6084,-0.9908,0.4645,55.7505,-1.0996,0.5519,55.6469,-1.3621,0.599,55.6113,-1.3745,0.472,55.739,-1.0273,0.5392,55.6398,-1.4491,0.8725,55.4503,-1.3398,0.9047,55.4468,-1.2643,0.8277,55.4884,-1.2351,0.3684,55.7929,-0.8855,0.9157,55.6071,-1.0883,0.9114,55.5537,-1.0798,0.9406,55.5987,-1.173,1.2512,55.8449,-1.4679,0.4529,55.8115,-0.8231,0.355,55.8384,-0.7591,0.6614,55.8757,-0.9185,0.0,56.0408,-0.5874,0.0,55.968,-0.5609,0.6499,55.963,-0.9149,0.7799,55.983,-0.9516,1.1521,55.8717,-1.1518,0.1798,56.1424,-0.7983,1.0475,55.9177,-1.1499,1.1152,55.9399,-1.231,0.2635,56.175,-0.9182,0.8944,56.1471,-1.1875,1.2085,55.9078,-1.2605,0.3649,55.9208,-0.998,0.3854,55.9943,-1.0526,0.361,55.9159,-0.943,0.3706,55.8491,-1.1293,0.3844,55.8837,-1.1516,0.3641,55.8579,-1.0305,0.4861,55.9306,-1.2803,0.3604,55.9098,-1.0772,0.931,56.0539,-1.1379,0.1869,56.106,-0.7395,0.6651,55.7921,-0.9024,1.3158,55.8668,-1.4138,1.1733,55.8524,-1.4963,1.093,55.6901,-1.3981,0.7932,55.5122,-1.2844,0.4959,55.7157,-0.9804,0.5977,55.6362,-1.2422,0.7071,56.2451,-1.039,0.7897,55.8156,-1.6965,0.8203,55.769,-1.733,0.7025,55.7977,-1.7159,0.961,55.7727,-1.5951,0.7867,56.0141,-1.7697,0.7296,55.6928,-1.5521,0.8416,55.6889,-1.5985,0.8257,55.6757,-1.5177,0.1216,55.5243,-1.9107,0.7826,56.2407,-1.3456,0.1291,55.7541,-0.783,0.547,56.1982,-1.1134,0.1211,55.7547,-0.7852,0.0871,56.1252,-0.9377,0.4843,55.9959,-1.2026,0.5267,56.2506,-1.0747,0.8826,55.8833,-1.534,1.0773,55.7807,-1.2628,0.8,56.1776,-1.5851,1.0705,55.8273,-1.3063,1.0897,55.7939,-1.3911,1.3424,55.795,-1.1596,1.0415,55.7847,-1.2224,0.9213,55.6969,-1.4756,0.4475,55.5172,-1.9998,0.1137,55.5046,-2.2121,0.2597,55.747,-2.0035,-0.931,56.0539,-1.1379,-0.6261,56.1976,-0.9453,-1.2307,55.911,-1.4607,-1.2953,55.6871,-1.1872,-1.2053,55.7896,-1.403,-1.1094,55.7154,-1.3434,-0.9114,55.5537,-1.0798,-0.851,55.6181,-0.9925,-0.5977,55.6362,-1.2422,-0.6972,56.3144,-1.19,-1.1728,55.9393,-1.407,-0.7025,55.7977,-1.7159,-0.4438,55.7051,-2.0275,-0.961,55.7727,-1.5951,-0.9344,55.7395,-1.5702,-0.9395,55.7201,-1.2944,-0.9413,55.8459,-1.5833,-0.8257,55.6757,-1.5177,-0.8416,55.6889,-1.5985,-0.1641,55.4533,-1.9755,-0.1959,55.6742,-2.1659,-0.1932,55.6061,-2.2048,-0.1126,55.6678,-2.1901,-0.1211,55.7547,-0.7852,-0.6334,55.9514,-1.6902,-0.9671,55.9698,-1.0861,-0.8993,55.9492,-1.0099,-1.0095,55.9241,-1.3167,-1.0773,55.7807,-1.2628,-0.9812,55.7651,-1.2034,-0.9468,55.7704,-1.3022,-0.5502,55.6841,-1.9836,-0.5136,55.7419,-0.907,-0.1793,55.754,-2.1239,-0.8802,55.6816,-1.4821,-0.7089,55.6283,-1.521,-0.7021,55.5902,-1.5032,-0.4407,55.6996,-2.0362,-0.874,55.5852,-1.4496,-0.9626,55.782,-1.5972,-0.8717,55.7248,-1.6218,-0.8789,55.905,-1.4118,-0.8769,55.9751,-1.4603,-1.0329,55.8146,-1.2435,-0.9126,55.7831,-1.4616,-0.4937,56.0506,-1.1868,-0.3604,55.9098,-1.0772,-0.5537,55.988,-1.3743,-0.3928,56.1067,-1.0564,-1.0611,55.8663,-1.4357,-0.5614,55.8168,-1.6817,-0.5752,55.993,-1.6307,-0.5934,56.0171,-1.5983,-0.2095,55.8588,-0.8572,-0.2036,55.863,-0.8639,-0.2119,55.8628,-0.8605,-0.2084,56.0342,-0.9202,-0.4655,56.1402,-1.0804,-0.2887,55.6253,-1.8517,-0.1273,55.6175,-1.9252,-0.0712,55.7533,-2.0452,-0.7369,55.5793,-1.1694,-0.5711,55.6572,-1.1827,-0.75,55.5331,-1.3234,-0.8359,55.4676,-1.3864,-0.7857,55.4952,-1.4232,-0.911,55.7011,-1.5381,-0.7534,55.6217,-0.9512,-0.4273,56.0695,-0.8271,-0.3419,55.9186,-0.765,0.4463,55.7236,-1.7314,0.9626,55.782,-1.5972,0.8717,55.7248,-1.6218,0.8789,55.905,-1.4118,1.0225,55.8505,-1.2689,1.1828,55.9287,-1.3043,0.6567,56.0767,-1.7095,0.5911,56.0807,-1.2608,0.2887,55.6253,-1.8517,0.4699,55.5277,-1.7905,0.7369,55.5793,-1.1694,0.6726,55.5768,-1.3653,0.7857,55.4952,-1.4232,0.8359,55.4676,-1.3864,0.75,55.5331,-1.3234,0.911,55.7011,-1.5381,1.0088,55.6814,-1.4705,0.6417,56.1313,-0.9226,0.463,56.2205,-0.9083,0.2791,55.9505,-0.8933,0.8596,56.1059,-1.0756,0.6261,56.1976,-0.9453,0.5479,55.8801,-0.8748,1.2525,55.8536,-1.4714,0.791,55.4971,-1.4304,0.864,55.5136,-1.4239,0.8426,55.469,-1.3923,0.8123,55.5407,-1.4577,0.9451,55.5983,-1.2776,0.8372,55.5536,-1.0136,0.8124,55.5304,-1.1024,0.8959,55.4982,-1.0945,0.7896,55.5628,-1.041};
			return value;
		}

		/** Define subarray values using type double[] with $tupleSize=3 and $tupleSplitSize=1000 for subarray position()=2 */
		private double[] getatlas_Coord_9_25_point_2()
		{
			double[] value = {0.589,55.6064,-1.4676,0.6944,55.5473,-1.4674,0.9236,55.4656,-1.1756,0.9299,55.4865,-1.2673,0.9342,55.4994,-1.1735,0.9125,55.4489,-1.2665,0.8197,56.2509,-1.2391,1.0378,55.8473,-1.5377,1.0687,55.8245,-1.5287,0.9245,55.9315,-1.312,0.8161,55.6004,-1.4895,0.8217,55.6671,-1.509,0.3377,55.6177,-2.1083,0.4599,55.6182,-2.0426,0.1273,55.6175,-1.9252,0.7766,56.2395,-1.3457,0.6834,56.1916,-1.27,0.7554,56.2872,-1.2707,0.7,56.1691,-1.316,0.6439,56.246,-1.1808,0.2799,56.0398,-0.9294,0.2254,55.9455,-0.8876,0.6029,56.0311,-1.4901,0.6605,56.0752,-1.4196,0.0923,56.1163,-0.7346,0.0,56.1245,-0.9402,0.0,56.1302,-0.9392,0.5547,56.0355,-1.262,0.8993,55.9492,-1.0099,0.7824,56.1869,-1.3997,0.6927,56.313,-1.1922,0.6305,56.3555,-1.102,0.9602,55.7694,-1.4758,1.1732,55.8624,-1.4999,0.5833,55.7738,-1.7544,0.1166,55.5913,-2.2218,0.7473,55.616,-0.9562,0.916,55.4626,-1.1748,0.6984,55.5496,-1.4758,-0.7412,56.1571,-1.0077,0.0,56.1118,-0.7164,-0.0923,56.1163,-0.7346,-0.7692,56.0761,-0.9717,-0.8596,56.1059,-1.0756,-0.896,56.0128,-1.0263,-0.5485,55.9738,-0.878,-0.4548,55.8893,-0.8354,-0.5479,55.8801,-0.8748,-0.1213,55.9063,-0.5891,-0.864,55.5136,-1.4239,-0.791,55.4971,-1.4304,-0.8426,55.469,-1.3923,-0.8123,55.5407,-1.4577,-0.9451,55.5983,-1.2776,-0.8124,55.5304,-1.1024,-0.8372,55.5536,-1.0136,-0.8959,55.4982,-1.0945,-0.7896,55.5628,-1.041,-0.589,55.6064,-1.4676,-0.6944,55.5473,-1.4674,-0.9299,55.4865,-1.2673,-0.9236,55.4656,-1.1756,-0.9342,55.4994,-1.1735,-0.9125,55.4489,-1.2665,-0.5584,55.6946,-0.944,-0.6453,55.6573,-0.948,-0.8197,56.2509,-1.2391,-1.0378,55.8473,-1.5377,-1.0687,55.8245,-1.5287,-0.9245,55.9315,-1.312,-0.8161,55.6004,-1.4895,-0.8217,55.6671,-1.509,-0.1166,55.5913,-2.2218,0.0,55.5786,-2.2347,-0.5833,55.7738,-1.7544,-0.6834,56.1916,-1.27,-0.7554,56.2872,-1.2707,-0.7,56.1691,-1.316,-0.5888,56.1663,-1.1769,-0.6439,56.246,-1.1808,-0.6377,56.1302,-1.2624,-0.2799,56.0398,-0.9294,-0.1008,55.9476,-0.8595,-0.2172,55.9439,-0.89,-0.2539,55.8028,-0.737,-0.2791,55.9505,-0.8933,0.0,55.757,-0.7561,-0.2163,56.0358,-0.918,-0.5547,56.0355,-1.262,-0.5503,56.0964,-1.1919,-0.5911,56.0807,-1.2608,-1.0352,55.7779,-1.4339,-0.6927,56.313,-1.1922,-0.6305,56.3555,-1.102,-0.9602,55.7694,-1.4758,-0.8993,55.4959,-1.3709,-0.8798,55.4517,-1.3437,0.0,55.7348,-2.1162,-0.8445,55.5582,-1.0099,-0.9034,55.502,-1.0932,-0.8725,55.4503,-1.3398,-0.6984,55.5496,-1.4758,-0.9047,55.4468,-1.2643,-0.7473,55.616,-0.9562,-0.7273,56.1465,-1.7117,-0.7306,56.1461,-1.7177,-0.7604,56.2888,-1.2685,-0.1787,55.8,-0.8259,-0.2254,55.9455,-0.8876,0.0,56.0774,-0.6464,-0.1082,55.8584,-0.8227,0.0,56.0253,-0.885,0.0,55.941,-0.8416,-0.565,56.2561,-1.109,-0.7322,56.1146,-1.4567,-0.7038,56.1185,-1.3626,-0.4599,55.6182,-2.0426,0.0,55.4981,-2.23,0.0,55.7302,-2.044,-0.7058,55.609,-1.098,-0.7932,55.5122,-1.2844,-0.8259,55.5068,-1.1604,-0.8277,55.4884,-1.2351,-0.2367,55.8811,-0.6791,-0.1798,56.1424,-0.7983,-0.6029,56.0311,-1.4901,0.8798,55.4517,-1.3437,0.8445,55.5582,-1.0099,0.1787,55.8,-0.8259,0.2163,56.0358,-0.918,0.0,55.8676,-0.8067,0.565,56.2561,-1.109,0.7322,56.1146,-1.4567,0.4655,56.1402,-1.0804,0.7306,56.1461,-1.7177,1.1457,55.8832,-1.5075,0.7604,56.2888,-1.2685,0.8259,55.5068,-1.1604,0.9034,55.502,-1.0932,0.8993,55.4959,-1.3709,0.4548,55.8893,-0.8354,0.5485,55.9738,-0.878,0.7412,56.1571,-1.0077,0.7692,56.0761,-0.9717,0.896,56.0128,-1.0263,0.5584,55.6946,-0.944,0.7058,55.609,-1.098,0.0,55.4447,-2.1547,0.229,55.6824,-1.9484,0.7273,56.1465,-1.7117,0.7038,56.1185,-1.3626,0.7824,56.1797,-1.6608,0.7883,56.1803,-1.6643,-0.7269,55.6084,-0.9908,-0.916,55.4626,-1.1748,-0.7824,56.1797,-1.6608,-0.7883,56.1803,-1.6643};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=1 */
		private int[] getaxis_Geo_8_30_coordIndex_1()
		{
			int[] value = {0,1,2,-1,3,4,5,-1,6,7,8,-1,9,0,10,-1,11,12,13,-1,14,15,16,-1,17,18,13,-1,19,20,21,-1,22,7,23,-1,24,25,26,-1,27,28,29,-1,30,31,32,-1,33,34,35,-1,22,36,37,-1,38,13,18,-1,39,40,41,-1,42,43,15,-1,44,45,46,-1,39,47,48,-1,49,50,51,-1,52,53,54,-1,55,56,52,-1,57,58,59,-1,60,61,62,-1,63,64,65,-1,66,67,68,-1,69,70,71,-1,72,73,74,-1,75,76,73,-1,77,73,76,-1,78,79,80,-1,81,79,68,-1,82,83,84,-1,85,86,87,-1,88,89,90,-1,91,92,93,-1,94,58,57,-1,95,96,97,-1,98,99,100,-1,96,101,102,-1,103,104,105,-1,106,105,107,-1,108,109,110,-1,111,112,113,-1,114,115,116,-1,117,97,102,-1,118,119,120,-1,117,121,122,-1,123,124,125,-1,126,127,128,-1,129,130,131,-1,132,133,134,-1,135,136,137,-1,138,139,140,-1,141,142,143,-1,127,144,145,-1,121,146,147,-1,148,149,150,-1,151,152,153,-1,154,155,156,-1,157,158,159,-1,160,161,162,-1,160,163,164,-1,161,165,166,-1,167,168,169,-1,59,169,168,-1,170,57,171,-1,172,173,111,-1,174,175,176,-1,177,178,179,-1,180,181,182,-1,183,184,185,-1,186,187,188,-1,189,190,191,-1,192,193,194,-1,195,189,192,-1,196,194,197,-1,119,118,198,-1,199,200,201,-1,202,203,204,-1,205,206,204,-1,207,34,33,-1,208,209,41,-1,210,46,211,-1,212,213,214,-1,215,216,217,-1,218,219,220,-1,221,213,222,-1,223,224,225,-1,224,226,65,-1,227,210,225,-1,228,229,65,-1,230,231,232,-1,231,61,60,-1,233,234,106,-1,234,233,110,-1,235,236,237,-1,238,239,240,-1,241,80,242,-1,243,244,245,-1,246,247,248,-1,249,250,251,-1,252,253,237,-1,126,128,254,-1,255,256,257,-1,258,256,195,-1,258,259,260,-1,261,262,263,-1,217,264,63,-1,265,266,267,-1,268,267,269,-1,270,271,272,-1,270,273,274,-1,158,275,276,-1,277,278,279,-1,279,280,277,-1,281,123,282,-1,283,284,285,-1,286,287,285,-1,288,289,290,-1,291,292,293,-1,294,295,296,-1,297,155,298,-1,299,300,164,-1,301,302,303,-1,299,304,300,-1,305,306,307,-1,308,307,309,-1,310,311,312,-1,313,314,315,-1,316,317,318,-1,319,320,321,-1,319,322,320,-1,323,309,324,-1,325,326,69,-1,84,327,328,-1,329,330,331,-1,0,332,333,-1,38,334,335,-1,334,11,335,-1,334,336,337,-1,338,339,340,-1,341,342,343,-1,344,345,346,-1,347,348,349,-1,350,351,352,-1,353,354,355,-1,356,357,358,-1,37,359,360,-1,361,334,38,-1,362,344,347,-1,363,334,337,-1,364,365,366,-1,367,368,369,-1,370,371,42,-1,372,373,374,-1,375,376,377,-1,378,379,380,-1,381,382,383,-1,384,385,386,-1,387,388,389,-1,390,391,392,-1,393,394,395,-1,396,397,398,-1,399,400,401,-1,402,403,404,-1,405,406,407,-1,406,405,367,-1,398,408,409,-1,410,411,412,-1,413,414,415,-1,416,417,418,-1,419,420,421,-1,422,423,382,-1,391,424,425,-1,389,388,426,-1,427,428,429,-1,430,431,432,-1,433,434,435,-1,436,437,434,-1,438,439,440,-1,441,442,443,-1,444,445,446,-1,447,448,449,-1,450,451,452,-1,453,454,455,-1,456,457,458,-1,459,460,461,-1,462,463,464,-1,465,466,467,-1,468,469,470,-1,471,472,473,-1,474,475,476,-1,475,477,460,-1,478,479,454,-1,480,481,482,-1,483,484,485,-1,486,487,488,-1,489,490,491,-1,492,493,494,-1,495,496,492,-1,497,498,494,-1,499,500,501,-1,502,391,503,-1,504,505,506,-1,507,449,392,-1,445,409,446,-1,508,509,510,-1,511,512,513,-1,514,515,516,-1,182,517,180,-1,518,519,520,-1,521,522,523,-1,524,525,526,-1,527,528,529,-1,530,531,452,-1,532,533,534,-1,535,536,537,-1,532,536,533,-1,538,539,540,-1,358,357,541,-1,542,363,543,-1,356,544,545,-1,546,547,548,-1,549,550,551,-1,552,553,554,-1,555,556,557,-1,557,558,559,-1,558,560,393,-1,560,548,547,-1,367,560,368,-1,561,562,563,-1,564,565,566,-1,567,568,566,-1,442,441,569,-1,570,443,571,-1,439,570,572,-1,573,574,575,-1,419,411,410,-1,420,415,414,-1,245,576,243,-1,577,578,574,-1,579,580,581,-1,574,582,583,-1,461,584,585,-1,443,586,587,-1,458,587,586,-1,588,589,552,-1,590,591,592,-1,593,590,594,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=2 */
		private int[] getaxis_Geo_8_30_coordIndex_2()
		{
			int[] value = {595,596,597,-1,598,599,597,-1,600,601,490,-1,540,602,538,-1,529,603,604,-1,528,605,606,-1,607,606,608,-1,609,610,611,-1,486,612,613,-1,614,615,616,-1,617,618,619,-1,620,621,622,-1,623,495,624,-1,620,625,626,-1,627,628,629,-1,630,627,631,-1,632,633,634,-1,635,636,633,-1,637,638,639,-1,638,640,639,-1,315,314,641,-1,318,317,642,-1,637,322,643,-1,644,636,635,-1,401,400,504,-1,645,646,416,-1,394,393,645,-1,647,648,649,-1,650,651,652,-1,504,390,408,-1,653,654,635,-1,322,318,655,-1,642,628,655,-1,643,638,637,-1,634,636,640,-1,656,630,624,-1,657,629,658,-1,657,626,631,-1,631,626,659,-1,624,495,497,-1,660,488,621,-1,615,602,661,-1,662,614,641,-1,613,663,664,-1,665,666,607,-1,609,667,668,-1,669,670,671,-1,667,606,607,-1,529,528,606,-1,538,602,615,-1,598,672,599,-1,598,673,600,-1,594,674,675,-1,593,676,677,-1,677,678,679,-1,589,680,553,-1,681,584,461,-1,682,586,442,-1,443,442,586,-1,573,632,574,-1,683,623,659,-1,421,580,579,-1,579,581,683,-1,684,577,583,-1,421,625,622,-1,685,580,686,-1,578,575,574,-1,439,687,441,-1,688,569,441,-1,689,568,690,-1,564,566,568,-1,563,562,559,-1,368,560,547,-1,691,560,558,-1,554,395,552,-1,546,692,693,-1,694,695,696,-1,697,362,544,-1,698,536,539,-1,540,699,531,-1,700,536,532,-1,532,701,700,-1,451,702,703,-1,703,702,704,-1,704,527,703,-1,705,526,528,-1,527,706,528,-1,434,437,524,-1,707,452,531,-1,708,709,519,-1,508,710,484,-1,711,712,713,-1,714,715,534,-1,485,716,483,-1,483,513,512,-1,717,718,719,-1,717,511,513,-1,408,392,449,-1,717,720,398,-1,649,500,425,-1,501,721,722,-1,723,724,499,-1,687,438,688,-1,624,497,656,-1,493,725,494,-1,726,578,727,-1,412,592,418,-1,728,666,665,-1,508,709,708,-1,729,730,714,-1,731,485,484,-1,476,460,732,-1,474,733,734,-1,470,469,735,-1,472,736,450,-1,737,472,738,-1,466,465,479,-1,473,450,739,-1,740,741,444,-1,742,608,482,-1,681,477,464,-1,460,459,743,-1,467,744,745,-1,707,450,452,-1,523,739,450,-1,746,702,451,-1,704,747,454,-1,388,748,749,-1,688,750,749,-1,524,432,435,-1,751,433,752,-1,753,754,755,-1,425,500,503,-1,756,576,686,-1,417,757,410,-1,402,399,645,-1,402,645,367,-1,758,367,369,-1,403,383,759,-1,413,396,398,-1,413,720,760,-1,394,588,395,-1,761,690,553,-1,565,762,561,-1,392,391,502,-1,384,763,689,-1,764,378,765,-1,766,547,767,-1,768,374,769,-1,696,765,378,-1,542,366,365,-1,345,355,354,-1,360,359,343,-1,697,358,770,-1,771,772,773,-1,347,344,774,-1,772,774,346,-1,775,776,777,-1,343,342,778,-1,353,779,780,-1,781,343,778,-1,782,87,783,-1,308,323,654,-1,784,318,322,-1,784,785,786,-1,321,312,787,-1,300,312,166,-1,788,786,301,-1,299,789,302,-1,155,303,298,-1,155,154,303,-1,293,292,296,-1,314,313,291,-1,790,290,289,-1,791,792,793,-1,794,795,285,-1,796,797,286,-1,791,283,795,-1,283,282,192,-1,798,293,277,-1,273,799,274,-1,268,800,801,-1,800,802,801,-1,802,803,804,-1,216,263,217,-1,54,805,62,-1,806,256,258,-1,252,237,236,-1,807,248,808,-1,809,789,810,-1,251,250,811,-1,810,249,251,-1,157,239,812,-1,811,159,297,-1,245,244,685,-1,811,240,239,-1,813,814,815,-1,61,816,54,-1,817,816,61,-1,818,819,817,-1,223,232,231,-1,820,227,229,-1,224,229,225,-1,217,65,226,-1,821,822,823,-1,824,825,826,-1,280,206,798,-1,280,204,206,-1,204,827,828,-1,829,203,202,-1,830,831,829,-1,199,828,832,-1,119,833,194,-1,197,194,833,-1,193,834,194,-1,192,189,835,-1,192,836,193,-1,191,837,107,-1,187,838,198,-1,185,184,839,-1,152,840,841,-1,713,842,174,-1,201,150,149,-1,153,843,151,-1,844,845,153,-1,846,847,173,-1,171,848,114,-1,172,66,173,-1,167,92,849,-1,91,850,92,-1,167,851,93,-1,814,852,108,-1,305,236,853,-1,854,807,163,-1,162,855,856,-1,727,246,726,-1,82,857,858,-1,792,859,804,-1,860,839,841,-1,149,148,729,-1,152,151,731,-1,861,127,862,-1,863,138,140,-1,142,864,865,-1,863,865,864,-1,147,866,867,-1,120,868,869,-1,147,134,133,-1,870,120,139,-1,864,113,112,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=3 */
		private int[] getaxis_Geo_8_30_coordIndex_3()
		{
			int[] value = {281,871,872,-1,128,127,861,-1,806,125,132,-1,118,120,187,-1,188,187,120,-1,122,121,873,-1,874,108,852,-1,58,875,876,-1,104,100,191,-1,56,93,851,-1,79,81,877,-1,877,83,82,-1,328,70,74,-1,77,74,73,-1,878,77,879,-1,880,75,881,-1,79,882,846,-1,846,66,79,-1,264,84,64,-1,261,216,62,-1,883,884,818,-1,88,885,57,-1,816,52,54,-1,886,39,887,-1,888,46,227,-1,889,890,891,-1,886,821,40,-1,41,40,892,-1,893,30,894,-1,8,7,22,-1,33,35,895,-1,12,209,13,-1,8,896,6,-1,897,7,6,-1,31,5,32,-1,897,898,7,-1,899,900,901,-1,25,24,902,-1,902,903,25,-1,904,905,906,-1,895,907,33,-1,8,22,360,-1,30,208,894,-1,40,39,886,-1,890,374,891,-1,227,820,888,-1,39,48,887,-1,885,908,848,-1,816,55,52,-1,57,59,88,-1,909,331,86,-1,261,62,805,-1,215,60,216,-1,64,63,264,-1,66,68,79,-1,908,910,325,-1,880,51,75,-1,77,76,879,-1,77,328,74,-1,845,846,882,-1,80,79,877,-1,244,911,912,-1,168,913,89,-1,56,914,93,-1,103,105,915,-1,191,107,104,-1,875,852,814,-1,58,94,875,-1,873,916,122,-1,188,120,870,-1,170,101,96,-1,806,258,125,-1,917,128,861,-1,918,281,872,-1,112,863,864,-1,870,139,138,-1,147,146,134,-1,136,139,869,-1,120,869,139,-1,867,873,147,-1,865,143,142,-1,863,140,865,-1,871,793,919,-1,127,141,862,-1,731,920,152,-1,921,149,729,-1,922,923,924,-1,804,793,792,-1,797,925,290,-1,727,247,246,-1,855,926,856,-1,163,927,854,-1,166,165,300,-1,814,108,815,-1,167,169,851,-1,849,913,167,-1,89,913,329,-1,66,846,173,-1,171,885,848,-1,846,845,847,-1,845,843,153,-1,843,928,151,-1,929,201,149,-1,923,839,930,-1,174,176,711,-1,174,711,713,-1,841,931,152,-1,185,839,860,-1,187,198,118,-1,187,186,838,-1,191,190,837,-1,192,835,836,-1,193,916,834,-1,194,834,119,-1,832,200,199,-1,199,204,828,-1,198,838,279,-1,280,827,204,-1,932,933,895,-1,822,212,823,-1,783,818,884,-1,217,63,65,-1,820,229,228,-1,917,254,128,-1,883,818,230,-1,818,934,819,-1,61,230,817,-1,54,62,61,-1,813,935,814,-1,813,815,110,-1,236,235,246,-1,244,250,685,-1,297,936,811,-1,810,937,249,-1,251,809,810,-1,807,808,163,-1,236,305,252,-1,256,938,257,-1,806,938,256,-1,126,939,940,-1,216,261,263,-1,804,941,802,-1,800,269,802,-1,799,158,274,-1,798,277,280,-1,196,283,192,-1,791,282,283,-1,796,286,942,-1,285,287,794,-1,790,943,290,-1,662,314,291,-1,293,296,277,-1,944,945,925,-1,165,164,300,-1,789,809,302,-1,785,787,304,-1,300,787,312,-1,321,787,319,-1,784,786,316,-1,784,322,319,-1,654,946,308,-1,848,908,325,-1,783,947,782,-1,781,896,8,-1,334,363,948,-1,772,771,774,-1,774,348,347,-1,771,773,352,-1,372,949,950,-1,697,356,358,-1,360,343,8,-1,345,543,355,-1,11,951,952,-1,11,948,951,-1,378,366,696,-1,374,890,769,-1,377,766,767,-1,764,379,378,-1,408,390,392,-1,689,953,384,-1,502,389,392,-1,422,647,423,-1,761,553,680,-1,553,567,954,-1,394,416,588,-1,413,398,720,-1,504,955,390,-1,403,407,383,-1,758,406,367,-1,367,405,402,-1,760,720,513,-1,755,956,753,-1,434,524,435,-1,749,426,388,-1,750,438,431,-1,454,453,704,-1,736,746,451,-1,450,707,523,-1,428,755,507,-1,744,682,745,-1,732,460,743,-1,464,957,681,-1,742,958,608,-1,444,959,740,-1,473,472,450,-1,466,479,478,-1,472,737,736,-1,470,735,742,-1,959,734,740,-1,734,959,474,-1,960,665,958,-1,476,475,460,-1,484,920,731,-1,729,714,921,-1,961,962,510,-1,665,679,728,-1,612,963,669,-1,578,577,727,-1,493,964,725,-1,965,574,966,-1,438,750,688,-1,723,499,501,-1,722,967,968,-1,501,500,721,-1,717,398,409,-1,969,408,449,-1,717,513,720,-1,717,445,718,-1,483,716,513,-1,485,970,716,-1,714,534,971,-1,972,709,962,-1,711,176,973,-1,711,973,712,-1,484,509,508,-1,708,519,518,-1,531,699,707,-1,699,521,707,-1,437,525,524,-1,706,705,528,-1,530,703,974,-1,703,530,451,-1,532,975,701,-1,976,831,830,-1,533,535,976,-1,700,539,536,-1,698,539,538,-1,977,698,538,-1,978,979,980,-1,549,694,696,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=4 */
		private int[] getaxis_Geo_8_30_coordIndex_4()
		{
			int[] value = {546,548,692,-1,762,565,652,-1,554,393,395,-1,368,547,766,-1,459,585,743,-1,566,565,561,-1,568,689,564,-1,953,689,690,-1,687,688,441,-1,981,419,421,-1,685,686,245,-1,622,489,421,-1,411,981,491,-1,684,982,577,-1,581,983,683,-1,683,659,579,-1,632,966,574,-1,682,442,745,-1,690,761,953,-1,552,589,553,-1,679,984,677,-1,677,985,593,-1,598,596,673,-1,598,490,672,-1,538,615,977,-1,606,603,529,-1,667,603,606,-1,671,611,669,-1,668,610,609,-1,613,612,663,-1,641,314,662,-1,661,616,615,-1,963,986,618,-1,621,620,660,-1,659,623,631,-1,657,631,627,-1,627,630,628,-1,656,638,630,-1,634,633,636,-1,643,630,638,-1,642,629,628,-1,655,643,322,-1,653,946,654,-1,652,987,650,-1,647,649,988,-1,393,367,645,-1,416,394,645,-1,504,408,401,-1,637,320,322,-1,642,655,318,-1,641,989,315,-1,635,633,653,-1,632,634,966,-1,631,624,630,-1,629,657,627,-1,625,659,626,-1,624,631,623,-1,620,622,625,-1,661,617,619,-1,616,641,614,-1,613,990,486,-1,991,992,678,-1,993,994,675,-1,611,671,609,-1,606,457,608,-1,529,604,974,-1,540,995,602,-1,600,490,598,-1,598,597,596,-1,595,673,596,-1,593,985,590,-1,590,592,996,-1,395,588,552,-1,589,957,680,-1,458,586,682,-1,458,605,587,-1,443,587,571,-1,585,459,461,-1,573,997,632,-1,574,965,582,-1,574,583,577,-1,245,686,576,-1,420,419,415,-1,419,981,411,-1,572,751,439,-1,567,566,563,-1,561,563,566,-1,367,393,560,-1,560,691,548,-1,393,554,558,-1,557,691,558,-1,556,692,557,-1,553,954,554,-1,551,694,549,-1,546,767,547,-1,356,697,544,-1,542,365,363,-1,541,998,358,-1,536,698,537,-1,536,535,533,-1,534,975,532,-1,452,451,530,-1,974,703,529,-1,703,527,529,-1,705,524,526,-1,521,523,707,-1,519,999,520,-1,514,1000,515,-1,511,961,512,-1,1001,708,518,-1,445,717,409,-1,392,389,507,-1,955,504,506,-1,503,499,502,-1,499,503,500,-1,722,723,501,-1,684,496,495,-1,494,656,497,-1,496,1002,492,-1,492,494,498,-1,986,486,488,-1,584,589,1003,-1,487,621,488,-1,1004,1005,1000,-1,480,482,456,-1,478,454,747,-1,475,1006,477,-1,476,733,474,-1,470,738,468,-1,466,744,467,-1,464,1007,462,-1,465,753,479,-1,959,1008,474,-1,682,744,458,-1,744,456,458,-1,445,741,718,-1,450,736,451,-1,448,969,449,-1,444,741,445,-1,438,687,439,-1,434,433,436,-1,433,435,752,-1,432,1009,430,-1,429,430,427,-1,426,507,389,-1,425,503,391,-1,987,422,382,-1,416,418,588,-1,396,413,1010,-1,413,1011,414,-1,398,401,408,-1,407,403,405,-1,402,405,403,-1,401,1012,399,-1,987,1013,422,-1,502,387,389,-1,384,386,763,-1,953,1014,384,-1,383,1015,381,-1,380,364,378,-1,377,767,375,-1,371,43,42,-1,366,378,364,-1,347,544,362,-1,37,1016,359,-1,356,1017,357,-1,353,780,354,-1,779,350,352,-1,1018,347,349,-1,344,346,774,-1,341,343,359,-1,340,1019,338,-1,334,361,336,-1,1020,371,380,-1,334,948,11,-1,338,0,333,-1,8,343,781,-1,779,1021,350,-1,2,332,0,-1,331,1022,329,-1,328,64,84,-1,69,848,325,-1,316,318,784,-1,313,315,1023,-1,310,312,321,-1,308,309,323,-1,305,307,252,-1,304,787,300,-1,302,298,303,-1,164,789,299,-1,298,936,297,-1,294,944,295,-1,291,313,292,-1,290,156,288,-1,941,1024,1025,-1,285,942,286,-1,795,283,285,-1,281,282,791,-1,282,259,192,-1,276,274,158,-1,270,1026,273,-1,1026,270,272,-1,268,269,800,-1,265,857,266,-1,217,263,264,-1,258,195,259,-1,255,195,256,-1,254,939,126,-1,248,236,246,-1,243,911,244,-1,80,240,242,-1,238,812,239,-1,110,915,234,-1,106,837,233,-1,255,257,233,-1,935,813,938,-1,231,230,61,-1,230,818,817,-1,232,883,230,-1,228,65,77,-1,227,225,229,-1,65,229,224,-1,223,225,1027,-1,213,212,222,-1,220,1027,218,-1,217,226,215,-1,823,212,214,-1,210,227,46,-1,208,41,892,-1,207,33,1028,-1,279,827,280,-1,202,204,199,-1,205,204,203,-1,201,202,199,-1,198,833,119,-1,259,195,192,-1,196,192,194,-1,189,191,835,-1,188,1029,186,-1,183,1030,184,-1,178,1031,179,-1,922,931,841,-1,1032,172,111,-1,57,885,171,-1,59,168,88,-1,167,913,168,-1,167,93,92,-1,164,163,808,-1,166,162,161,-1,160,927,163,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=5 */
		private int[] getaxis_Geo_8_30_coordIndex_5()
		{
			int[] value = {162,856,160,-1,154,156,945,-1,1033,263,939,-1,155,1034,156,-1,1031,1035,1036,-1,150,1037,148,-1,873,121,147,-1,145,141,127,-1,143,862,141,-1,135,137,1038,-1,132,125,133,-1,131,1039,129,-1,146,1040,134,-1,142,1041,864,-1,260,125,258,-1,260,123,125,-1,1042,112,111,-1,119,868,120,-1,121,117,102,-1,171,114,116,-1,1032,111,113,-1,257,938,813,-1,110,815,108,-1,107,837,106,-1,104,107,105,-1,96,102,97,-1,98,100,874,-1,97,98,95,-1,57,170,94,-1,914,91,93,-1,88,168,89,-1,85,909,86,-1,811,242,240,-1,84,264,82,-1,80,241,78,-1,858,812,238,-1,73,881,75,-1,72,881,73,-1,69,326,70,-1,86,1043,87,-1,216,60,62,-1,885,88,908,-1,58,1044,59,-1,56,1045,52,-1,51,85,49,-1,47,14,48,-1,888,44,46,-1,374,373,906,-1,42,15,1046,-1,878,228,77,-1,41,47,39,-1,1047,13,209,-1,37,360,22,-1,34,1048,35,-1,30,893,31,-1,27,1049,28,-1,25,894,26,-1,7,898,23,-1,21,10,19,-1,1047,17,13,-1,335,11,13,-1,335,13,38,-1,9,1,0,-1,1050,1051,1052,-1,1053,1051,1050,-1,36,900,899,-1,36,1054,900,-1,893,1055,31,-1,903,1055,893,-1,1056,28,932,-1,1056,29,28,-1,895,826,907,-1,826,895,933,-1,1050,1057,1058,-1,1050,1052,1057,-1,19,0,1059,-1,0,19,10,-1,1060,4,1061,-1,1060,1058,4,-1,1047,208,30,-1,1047,209,208,-1,900,1062,901,-1,900,1063,1062,-1,933,892,826,-1,933,208,892,-1,888,1064,1065,-1,888,820,1064,-1,16,43,1066,-1,15,43,16,-1,1067,1053,9,-1,1067,1051,1053,-1,1067,1068,1051,-1,1069,1070,1071,-1,1069,1072,1070,-1,1073,1074,1070,-1,1073,1065,1074,-1,49,87,782,-1,49,85,87,-1,1022,909,1075,-1,1022,331,909,-1,934,914,819,-1,934,91,914,-1,876,52,1045,-1,876,53,52,-1,881,1076,880,-1,1076,881,72,-1,1077,1078,1079,-1,1078,1077,1080,-1,328,71,70,-1,328,327,71,-1,882,843,845,-1,843,882,1081,-1,81,83,877,-1,1082,83,81,-1,244,1083,250,-1,244,912,1083,-1,1040,131,134,-1,1084,131,1040,-1,95,875,94,-1,95,852,875,-1,834,873,867,-1,834,916,873,-1,132,1085,806,-1,1085,132,130,-1,917,1086,919,-1,917,861,1086,-1,863,870,138,-1,112,870,863,-1,864,115,113,-1,115,864,1041,-1,145,1087,1041,-1,1087,145,1039,-1,869,137,136,-1,1088,137,869,-1,254,919,793,-1,254,917,919,-1,1088,872,137,-1,1088,918,872,-1,1089,918,1088,-1,124,918,1089,-1,930,924,923,-1,178,924,930,-1,842,182,183,-1,713,182,842,-1,794,859,792,-1,1090,859,794,-1,263,266,264,-1,1033,266,263,-1,158,297,159,-1,158,799,297,-1,1091,856,926,-1,1091,854,856,-1,807,1091,853,-1,854,1091,807,-1,103,110,109,-1,915,110,103,-1,1044,56,851,-1,1044,1045,56,-1,850,849,92,-1,850,1092,849,-1,1076,910,1075,-1,1076,325,910,-1,177,173,847,-1,173,177,1093,-1,920,840,152,-1,840,920,1094,-1,181,148,1037,-1,1095,148,181,-1,839,922,841,-1,923,922,839,-1,174,183,185,-1,174,842,183,-1,924,845,844,-1,845,924,847,-1,201,1096,150,-1,201,200,1096,-1,835,100,99,-1,191,100,835,-1,831,203,829,-1,203,831,1097,-1,827,838,828,-1,827,279,838,-1,40,826,892,-1,824,826,40,-1,1062,895,35,-1,1062,932,895,-1,1098,214,1099,-1,1098,825,214,-1,218,1099,219,-1,1099,218,1100,-1,222,783,884,-1,947,783,222,-1,231,215,223,-1,60,215,231,-1,55,817,819,-1,55,816,817,-1,938,54,935,-1,938,805,54,-1,937,1101,1102,-1,937,1103,1101,-1,239,159,811,-1,157,159,239,-1,789,808,810,-1,789,164,808,-1,802,1104,801,-1,802,941,1104,-1,265,271,276,-1,265,272,271,-1,284,196,197,-1,284,283,196,-1,1105,942,1106,-1,942,1105,796,-1,1107,1108,1104,-1,1109,1108,1107,-1,1109,1110,1108,-1,289,1111,1112,-1,288,1111,289,-1,1025,1104,941,-1,1025,1107,1104,-1,1090,1024,859,-1,1024,1090,1025,-1,273,1034,799,-1,273,1113,1034,-1,303,944,294,-1,154,944,303,-1,154,945,944,-1,809,298,302,-1,809,936,298,-1,786,304,301,-1,786,785,304,-1,785,319,787,-1,319,785,784,-1,911,1081,78,-1,911,1114,1081,-1,1115,782,1116,-1,782,1115,49,-1,778,332,781,-1,1117,332,778,-1,1118,332,1117,-1,1118,333,332,-1,778,1119,1117,-1,342,1119,778,-1,339,1120,1121,-1,339,1122,1120,-1,364,951,365,-1,370,951,364,-1,349,774,771,-1,349,348,774,-1,347,1123,544,-1,347,1018,1123,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=6 */
		private int[] getaxis_Geo_8_30_coordIndex_6()
		{
			int[] value = {978,697,770,-1,362,697,978,-1,1124,1125,1126,-1,1124,1127,1125,-1,0,1019,1059,-1,338,1019,0,-1,1021,1128,1129,-1,1021,1126,1128,-1,543,337,355,-1,543,363,337,-1,1130,768,769,-1,1130,376,768,-1,380,1131,1020,-1,1131,380,379,-1,1132,1131,1133,-1,1131,1132,1134,-1,1135,1133,764,-1,1135,1136,1133,-1,695,650,1137,-1,651,650,695,-1,390,424,391,-1,424,390,955,-1,1138,1139,1013,-1,1138,967,1139,-1,762,1140,561,-1,762,1141,1140,-1,505,403,759,-1,404,403,505,-1,1136,1132,1133,-1,1142,1132,1136,-1,1012,645,399,-1,1012,646,645,-1,716,760,513,-1,1143,760,716,-1,759,506,505,-1,423,506,759,-1,428,956,755,-1,427,956,428,-1,440,435,432,-1,435,440,752,-1,747,702,746,-1,747,704,702,-1,1144,467,745,-1,463,467,1144,-1,735,743,960,-1,735,732,743,-1,739,740,473,-1,740,739,741,-1,448,959,444,-1,1008,959,448,-1,1145,1006,1008,-1,1007,1006,1145,-1,470,737,738,-1,737,470,481,-1,960,585,665,-1,960,743,585,-1,742,481,470,-1,742,482,481,-1,509,483,512,-1,483,509,484,-1,1005,1146,1147,-1,1005,1004,1146,-1,182,712,520,-1,712,182,713,-1,728,668,666,-1,668,728,1148,-1,591,589,588,-1,589,591,1003,-1,622,490,489,-1,622,672,490,-1,493,1149,964,-1,493,1150,1149,-1,1149,582,965,-1,582,1149,1150,-1,439,752,440,-1,752,439,751,-1,386,387,724,-1,386,385,387,-1,721,967,722,-1,721,1139,967,-1,408,446,409,-1,446,408,969,-1,522,718,523,-1,719,718,522,-1,731,970,485,-1,731,1151,970,-1,1152,714,971,-1,1152,921,714,-1,708,710,508,-1,708,1001,710,-1,973,1001,518,-1,973,176,1001,-1,1146,534,715,-1,1146,975,534,-1,432,705,1009,-1,705,432,524,-1,587,528,526,-1,528,587,605,-1,976,1152,971,-1,976,830,1152,-1,698,1153,537,-1,1153,698,977,-1,770,979,978,-1,770,1154,979,-1,550,1154,1155,-1,550,979,1154,-1,1155,692,556,-1,693,692,1155,-1,565,1138,652,-1,565,1156,1138,-1,559,555,557,-1,559,562,555,-1,1101,983,1102,-1,1101,982,983,-1,489,981,421,-1,981,489,491,-1,684,623,683,-1,684,495,623,-1,761,745,442,-1,745,761,1144,-1,680,1144,761,-1,957,1144,680,-1,1003,677,984,-1,677,1003,985,-1,674,595,597,-1,674,594,595,-1,1153,615,614,-1,977,615,1153,-1,671,1157,1158,-1,670,1157,671,-1,674,993,675,-1,674,1159,993,-1,599,1160,597,-1,1161,1160,599,-1,993,664,1162,-1,993,1159,664,-1,675,991,678,-1,991,675,994,-1,1162,663,1163,-1,664,663,1162,-1,617,963,618,-1,670,963,617,-1,670,669,963,-1,1002,493,492,-1,493,1002,1150,-1,619,657,658,-1,657,619,660,-1,629,989,658,-1,989,629,642,-1,1143,576,1011,-1,1143,1164,576,-1,1165,1166,1167,-1,1165,1168,1166,-1,760,1011,413,-1,760,1143,1011,-1,639,320,637,-1,639,1169,320,-1,658,641,616,-1,641,658,989,-1,997,633,632,-1,653,633,997,-1,995,670,617,-1,995,1157,670,-1,1161,486,990,-1,486,1161,487,-1,678,728,679,-1,992,728,678,-1,664,1170,613,-1,664,1159,1170,-1,1159,597,1160,-1,1159,674,597,-1,1158,609,671,-1,1158,604,609,-1,530,604,1158,-1,974,604,530,-1,614,1171,1153,-1,614,662,1171,-1,590,1003,591,-1,985,1003,590,-1,1172,997,573,-1,1172,1173,997,-1,727,982,1101,-1,727,577,982,-1,414,1174,420,-1,1174,414,756,-1,525,570,571,-1,525,437,570,-1,565,1175,1156,-1,564,1175,565,-1,555,561,1140,-1,555,562,561,-1,651,694,1141,-1,651,695,694,-1,692,691,557,-1,692,548,691,-1,549,979,550,-1,549,980,979,-1,541,767,546,-1,541,375,767,-1,998,770,358,-1,1154,770,998,-1,1176,1153,1171,-1,1176,537,1153,-1,537,1097,535,-1,537,1176,1097,-1,534,976,971,-1,976,534,533,-1,701,522,521,-1,701,514,522,-1,520,517,182,-1,520,999,517,-1,999,1177,517,-1,1177,999,1147,-1,1001,1094,710,-1,176,1094,1001,-1,1005,709,972,-1,519,709,1005,-1,729,1178,730,-1,729,1179,1178,-1,649,424,988,-1,649,425,424,-1,749,1014,688,-1,749,748,1014,-1,582,1002,496,-1,582,1150,1002,-1,656,725,634,-1,656,494,725,-1,672,621,487,-1,672,622,621,-1,591,418,592,-1,588,418,591,-1,1148,610,668,-1,610,1148,1163,-1,715,1147,1146,-1,1177,1147,715,-1,510,512,961,-1,510,509,512,-1,753,454,479,-1,753,956,454,-1,469,732,735,-1,469,476,732,-1,734,473,740,-1,734,471,473,-1,1180,747,746,-1,1180,478,747,-1,1006,464,477,-1,1006,1007,464,-1,1006,474,1008,-1,474,1006,475,-1,464,1144,957,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=7 */
		private int[] getaxis_Geo_8_30_coordIndex_7()
		{
			int[] value = {464,463,1144,-1,447,507,755,-1,447,449,507,-1,741,523,718,-1,741,739,523,-1,750,430,429,-1,750,431,430,-1,724,502,499,-1,724,387,502,-1,410,415,419,-1,410,757,415,-1,756,1011,576,-1,1011,756,414,-1,396,1181,397,-1,396,1010,1181,-1,970,1143,716,-1,1164,1143,970,-1,1015,1142,1136,-1,1182,1142,1015,-1,758,407,406,-1,758,1182,407,-1,400,402,404,-1,399,402,400,-1,386,1175,763,-1,386,1183,1175,-1,647,1013,1139,-1,422,1013,647,-1,388,385,748,-1,388,387,385,-1,696,1137,765,-1,1137,696,695,-1,381,1136,1135,-1,381,1015,1136,-1,764,1131,379,-1,1133,1131,764,-1,1134,1020,1131,-1,1020,1134,1167,-1,376,949,768,-1,375,949,376,-1,1167,1066,1020,-1,1066,1167,1166,-1,766,369,368,-1,1184,369,766,-1,544,1185,545,-1,544,1123,1185,-1,355,336,353,-1,355,337,336,-1,1129,1123,1021,-1,1185,1123,1129,-1,1186,336,340,-1,353,336,1186,-1,1126,1119,1128,-1,1126,1125,1119,-1,950,357,1017,-1,950,949,357,-1,543,344,362,-1,543,345,344,-1,349,350,1018,-1,350,349,351,-1,771,351,349,-1,771,352,351,-1,951,363,365,-1,951,948,363,-1,952,370,42,-1,952,951,370,-1,1125,1117,1119,-1,1125,1118,1117,-1,338,1122,339,-1,338,333,1122,-1,243,1114,911,-1,243,1187,1114,-1,72,325,1076,-1,72,326,325,-1,323,1188,654,-1,1188,323,324,-1,315,316,1023,-1,315,317,316,-1,309,310,324,-1,311,310,309,-1,306,309,307,-1,311,309,306,-1,299,301,304,-1,299,302,301,-1,796,278,295,-1,796,1105,278,-1,156,1113,288,-1,1034,1113,156,-1,859,941,804,-1,941,859,1024,-1,1112,790,289,-1,1112,1110,790,-1,1026,1110,1189,-1,1026,1108,1110,-1,285,1106,942,-1,285,284,1106,-1,284,833,1106,-1,833,284,197,-1,1171,291,1190,-1,1171,662,291,-1,267,272,265,-1,267,268,272,-1,857,276,275,-1,276,857,265,-1,189,255,190,-1,189,195,255,-1,1102,249,937,-1,1191,249,1102,-1,1192,237,1172,-1,235,237,1192,-1,233,813,110,-1,233,257,813,-1,935,53,814,-1,54,53,935,-1,883,220,221,-1,883,232,220,-1,212,947,222,-1,212,822,947,-1,225,218,1027,-1,225,210,218,-1,213,1099,214,-1,213,219,1099,-1,1100,1098,1099,-1,1100,1028,1098,-1,35,901,1062,-1,901,35,1048,-1,34,45,905,-1,207,45,34,-1,1029,832,186,-1,1029,179,832,-1,181,183,182,-1,181,1030,183,-1,1037,1030,181,-1,1193,1030,1037,-1,1094,175,840,-1,175,1094,176,-1,839,1035,930,-1,1035,839,184,-1,1095,729,148,-1,1095,1179,729,-1,1093,179,1029,-1,177,179,1093,-1,330,1092,331,-1,849,1092,330,-1,165,160,164,-1,161,160,165,-1,855,166,306,-1,855,162,166,-1,155,799,1034,-1,155,297,799,-1,82,266,857,-1,266,82,264,-1,287,1090,794,-1,1194,1090,287,-1,1193,150,1096,-1,150,1193,1037,-1,844,922,924,-1,844,931,922,-1,121,1040,146,-1,121,102,1040,-1,861,1038,1086,-1,861,862,1038,-1,866,1088,869,-1,1089,1088,866,-1,130,134,131,-1,130,132,134,-1,1039,1084,1087,-1,1084,1039,131,-1,144,262,129,-1,262,144,940,-1,1085,129,262,-1,1085,130,129,-1,119,867,868,-1,119,834,867,-1,113,114,1032,-1,114,113,115,-1,106,915,105,-1,234,915,106,-1,1084,102,101,-1,1084,1040,102,-1,98,852,95,-1,98,874,852,-1,59,851,169,-1,59,1044,851,-1,783,1043,1195,-1,783,87,1043,-1,250,242,811,-1,250,1083,242,-1,1082,84,83,-1,1082,327,84,-1,1082,68,67,-1,1082,81,68,-1,1081,928,843,-1,928,1081,1114,-1,1080,50,1078,-1,50,1080,1196,-1,75,879,76,-1,75,1196,879,-1,74,326,72,-1,326,74,70,-1,819,56,55,-1,819,914,56,-1,1043,331,1092,-1,331,1043,86,-1,1045,58,876,-1,1045,1044,58,-1,1116,821,886,-1,822,821,1116,-1,1078,49,1115,-1,1078,50,49,-1,1197,887,48,-1,887,1197,1079,-1,16,1071,1197,-1,1069,1071,16,-1,905,44,891,-1,44,905,45,-1,1066,1069,16,-1,1166,1069,1066,-1,878,820,228,-1,820,878,1064,-1,1063,932,1062,-1,1063,1056,932,-1,17,30,32,-1,17,1047,30,-1,1056,1061,4,-1,1061,1056,1063,-1,17,1198,20,-1,1198,17,32,-1,1199,1058,1060,-1,1199,1050,1058,-1,34,904,1048,-1,34,905,904,-1,1200,903,902,-1,1200,1055,903,-1,1055,5,31,-1,1055,1200,5,-1,1049,26,28,-1,1049,24,26,-1,1201,902,27,-1,1201,1200,902,-1,22,1054,36,-1,22,23,1054,-1,17,19,18,-1,17,20,19,-1,1046,14,47,-1,14,1046,15,-1,1052,1068,1202,-1,1051,1068,1052,-1,6,2,1,-1,6,896,2,-1,1058,5,4,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=8 */
		private int[] getaxis_Geo_8_30_coordIndex_8()
		{
			int[] value = {1058,1057,5,-1,1067,10,21,-1,1067,9,10,-1,1203,1050,1199,-1,1203,1053,1050,-1,1046,952,42,-1,1046,1204,952,-1,209,1204,41,-1,209,12,1204,-1,894,903,893,-1,25,903,894,-1,3,27,29,-1,1201,27,3,-1,26,208,933,-1,26,894,208,-1,1057,1202,1198,-1,1052,1202,1057,-1,20,1202,21,-1,1202,20,1198,-1,23,1061,1054,-1,1060,1061,23,-1,899,37,36,-1,37,899,1205,-1,4,29,1056,-1,4,3,29,-1,901,1205,899,-1,1205,901,1206,-1,12,952,1204,-1,952,12,11,-1,44,1065,1073,-1,44,888,1065,-1,1168,889,1072,-1,890,889,1168,-1,1206,1048,904,-1,901,1048,1206,-1,1072,1073,1070,-1,889,1073,1072,-1,1071,1074,1077,-1,1071,1070,1074,-1,909,51,880,-1,51,909,85,-1,90,1075,910,-1,1075,90,1022,-1,850,934,1195,-1,934,850,91,-1,66,71,67,-1,66,69,71,-1,1074,1080,1077,-1,1080,1074,1207,-1,1207,1065,1064,-1,1065,1207,1074,-1,67,327,1082,-1,327,67,71,-1,858,877,82,-1,858,238,877,-1,78,912,911,-1,241,912,78,-1,80,238,240,-1,80,877,238,-1,96,94,170,-1,96,95,94,-1,108,100,109,-1,108,874,100,-1,188,112,1042,-1,188,870,112,-1,170,116,101,-1,170,171,116,-1,918,123,281,-1,123,918,124,-1,871,1086,872,-1,871,919,1086,-1,142,145,1041,-1,141,145,142,-1,129,145,144,-1,129,1039,145,-1,137,1086,1038,-1,872,1086,137,-1,1041,116,115,-1,116,1041,1087,-1,125,1089,133,-1,125,124,1089,-1,930,1031,178,-1,1031,930,1035,-1,797,943,286,-1,290,943,797,-1,939,803,1033,-1,803,939,254,-1,157,275,158,-1,275,157,812,-1,925,156,290,-1,925,945,156,-1,853,926,305,-1,1091,926,853,-1,53,875,814,-1,53,876,875,-1,90,329,1022,-1,90,89,329,-1,1093,111,173,-1,1093,1042,111,-1,178,847,924,-1,847,178,177,-1,180,1095,181,-1,1179,1095,180,-1,1036,200,832,-1,1096,200,1036,-1,99,836,835,-1,117,836,99,-1,117,122,836,-1,829,201,929,-1,202,201,829,-1,1097,205,203,-1,1097,1176,205,-1,1190,1176,1171,-1,1190,205,1176,-1,907,1028,33,-1,1028,907,1098,-1,46,207,211,-1,46,45,207,-1,825,823,214,-1,825,824,823,-1,210,1100,218,-1,1100,210,211,-1,219,221,220,-1,219,213,221,-1,226,223,215,-1,226,224,223,-1,233,190,255,-1,233,837,190,-1,1083,241,242,-1,912,241,1083,-1,1103,727,1101,-1,1103,247,727,-1,247,808,248,-1,247,1103,808,-1,253,1172,237,-1,253,1173,1172,-1,1033,267,266,-1,267,1033,269,-1,268,1104,1108,-1,801,1104,268,-1,276,270,274,-1,276,271,270,-1,279,1105,198,-1,279,278,1105,-1,282,260,259,-1,260,282,123,-1,871,791,793,-1,281,791,871,-1,1112,1189,1110,-1,1112,1111,1189,-1,1189,288,1113,-1,1189,1111,288,-1,1208,1107,1025,-1,1208,1109,1107,-1,1194,1025,1090,-1,1025,1194,1208,-1,295,277,296,-1,278,277,295,-1,294,292,788,-1,292,294,296,-1,307,253,252,-1,253,307,308,-1,313,788,292,-1,1023,788,313,-1,320,310,321,-1,320,1169,310,-1,78,882,79,-1,78,1081,882,-1,1166,1072,1069,-1,1166,1168,1072,-1,779,1126,1021,-1,779,1124,1126,-1,2,781,332,-1,2,896,781,-1,1120,1127,1121,-1,1127,1120,1209,-1,380,370,364,-1,371,370,380,-1,1019,336,361,-1,1019,340,336,-1,1210,359,1016,-1,1210,341,359,-1,772,345,354,-1,345,772,346,-1,779,773,780,-1,779,352,773,-1,1121,1124,1186,-1,1124,1121,1127,-1,1121,340,339,-1,1186,340,1121,-1,1129,341,1210,-1,341,1129,1128,-1,777,37,1205,-1,777,1016,37,-1,1018,1021,1123,-1,1018,350,1021,-1,1205,775,777,-1,1206,775,1205,-1,1211,376,1130,-1,1211,377,376,-1,769,1168,1165,-1,1168,769,890,-1,1017,1206,950,-1,1206,1017,775,-1,1130,1165,1212,-1,1165,1130,769,-1,1213,1134,1132,-1,1213,1212,1134,-1,383,423,759,-1,382,423,383,-1,506,424,955,-1,988,424,506,-1,1156,967,1138,-1,968,967,1156,-1,1012,398,397,-1,1012,401,398,-1,1142,1213,1132,-1,1214,1213,1142,-1,1211,1214,1184,-1,1213,1214,1211,-1,646,397,1181,-1,1012,397,646,-1,412,417,410,-1,412,418,417,-1,757,413,415,-1,757,1010,413,-1,416,1181,417,-1,416,646,1181,-1,420,580,421,-1,420,1174,580,-1,1013,652,1138,-1,1013,987,652,-1,724,1183,386,-1,724,723,1183,-1,426,428,507,-1,426,429,428,-1,432,438,440,-1,432,431,438,-1,751,436,433,-1,436,751,572,-1,969,444,446,-1,448,444,969,-1,457,482,608,-1,456,482,457,-1,735,958,742,-1,735,960,958,-1,754,1007,1145,-1,462,1007,754,-1,465,463,462,-1,465,467,463,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=9 */
		private int[] getaxis_Geo_8_30_coordIndex_9()
		{
			int[] value = {481,1180,737,-1,1180,481,480,-1,447,1008,448,-1,1145,1008,447,-1,480,744,466,-1,480,456,744,-1,1000,972,515,-1,1005,972,1000,-1,663,669,611,-1,669,663,612,-1,984,584,1003,-1,585,584,984,-1,601,491,490,-1,411,491,601,-1,486,963,612,-1,486,986,963,-1,964,965,966,-1,965,964,1149,-1,492,497,495,-1,497,492,498,-1,1139,648,647,-1,648,1139,721,-1,514,719,522,-1,719,514,516,-1,511,515,961,-1,516,515,511,-1,1178,180,517,-1,180,1178,1179,-1,975,1004,701,-1,1004,975,1146,-1,706,1009,705,-1,706,455,1009,-1,706,453,455,-1,375,357,949,-1,357,375,541,-1,775,356,545,-1,1017,356,775,-1,1154,693,1155,-1,1154,998,693,-1,1155,551,550,-1,1155,556,551,-1,1140,556,555,-1,1140,551,556,-1,559,554,954,-1,559,558,554,-1,1014,569,688,-1,569,1014,953,-1,441,570,439,-1,441,443,570,-1,573,1192,1172,-1,1192,573,575,-1,581,1102,983,-1,1102,581,1191,-1,583,496,684,-1,496,583,582,-1,571,526,525,-1,571,587,526,-1,600,592,601,-1,996,592,600,-1,675,593,594,-1,675,676,593,-1,595,590,996,-1,595,594,590,-1,1157,540,531,-1,1157,995,540,-1,458,606,605,-1,457,606,458,-1,607,958,665,-1,958,607,608,-1,1160,1170,1159,-1,1160,1215,1170,-1,990,1160,1161,-1,990,1215,1160,-1,994,1162,991,-1,994,993,1162,-1,991,1163,1148,-1,1162,1163,991,-1,602,617,661,-1,617,602,995,-1,616,619,658,-1,661,619,616,-1,639,636,644,-1,636,639,640,-1,642,315,989,-1,642,317,315,-1,1188,635,654,-1,644,635,1188,-1,504,404,505,-1,504,400,404,-1,1164,243,576,-1,1164,1187,243,-1,650,1135,1137,-1,381,1135,650,-1,1173,653,997,-1,1173,946,653,-1,644,1169,639,-1,644,1188,1169,-1,643,628,630,-1,655,628,643,-1,634,638,656,-1,640,638,634,-1,626,660,620,-1,660,626,657,-1,618,660,619,-1,618,488,660,-1,618,986,488,-1,487,599,672,-1,487,1161,599,-1,992,1148,728,-1,991,1148,992,-1,1215,613,1170,-1,613,1215,990,-1,666,667,607,-1,666,668,667,-1,604,667,609,-1,604,603,667,-1,531,1158,1157,-1,530,1158,531,-1,673,996,600,-1,673,595,996,-1,675,677,676,-1,675,678,677,-1,659,421,579,-1,659,625,421,-1,683,982,684,-1,683,983,982,-1,578,1192,575,-1,1192,578,726,-1,1191,580,685,-1,1191,581,580,-1,437,572,570,-1,437,436,572,-1,953,442,569,-1,953,761,442,-1,564,763,1175,-1,564,689,763,-1,954,563,559,-1,563,954,567,-1,652,1141,762,-1,1141,652,651,-1,1141,551,1140,-1,1141,694,551,-1,980,696,366,-1,549,696,980,-1,546,998,541,-1,693,998,546,-1,978,366,542,-1,366,978,980,-1,699,539,700,-1,699,540,539,-1,535,831,976,-1,1097,831,535,-1,527,453,706,-1,527,704,453,-1,1000,701,1004,-1,1000,514,701,-1,521,700,701,-1,521,699,700,-1,1147,519,1005,-1,519,1147,999,-1,520,973,518,-1,520,712,973,-1,510,709,508,-1,709,510,962,-1,730,517,1177,-1,517,730,1178,-1,710,920,484,-1,1094,920,710,-1,717,516,511,-1,719,516,717,-1,648,500,649,-1,648,721,500,-1,455,430,1009,-1,455,427,430,-1,634,964,966,-1,634,725,964,-1,412,601,592,-1,412,411,601,-1,984,665,585,-1,665,984,679,-1,1163,611,610,-1,611,1163,663,-1,714,1177,715,-1,730,1177,714,-1,961,972,962,-1,972,961,515,-1,755,1145,447,-1,754,1145,755,-1,471,738,472,-1,471,468,738,-1,471,733,468,-1,733,471,734,-1,737,746,736,-1,737,1180,746,-1,1180,466,478,-1,1180,480,466,-1,468,476,469,-1,468,733,476,-1,681,460,477,-1,460,681,461,-1,589,681,957,-1,589,584,681,-1,427,454,956,-1,427,455,454,-1,749,429,426,-1,749,750,429,-1,462,753,465,-1,753,462,754,-1,723,968,1183,-1,723,722,968,-1,1174,686,580,-1,1174,756,686,-1,417,1010,757,-1,1010,417,1181,-1,970,1187,1164,-1,1187,970,1151,-1,764,1137,1135,-1,764,765,1137,-1,758,1184,1214,-1,758,369,1184,-1,383,1182,1015,-1,407,1182,383,-1,1182,1214,1142,-1,758,1214,1182,-1,690,567,553,-1,690,568,567,-1,384,748,385,-1,384,1014,748,-1,1183,1156,1175,-1,1183,968,1156,-1,423,988,506,-1,423,647,988,-1,987,381,650,-1,987,382,381,-1,1213,1130,1212,-1,1213,1211,1130,-1,1212,1167,1134,-1,1212,1165,1167,-1,1118,1122,333,-1,1209,1122,1118,-1,1209,1120,1122,-1,43,1020,1066,-1,1020,43,371,-1,1184,377,1211,-1,1184,766,377,-1,542,362,978,-1,542,543,362,-1,545,776,775,-1,545,1185,776,-1,353,1124,779,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=10 */
		private int[] getaxis_Geo_8_30_coordIndex_10()
		{
			int[] value = {353,1186,1124,-1,1185,1210,776,-1,1210,1185,1129,-1,1059,361,38,-1,1019,361,1059,-1,1128,342,341,-1,342,1128,1119,-1,372,768,949,-1,372,374,768,-1,373,950,1206,-1,373,372,950,-1,773,354,780,-1,354,773,772,-1,776,1016,777,-1,776,1210,1016,-1,1209,1125,1127,-1,1125,1209,1118,-1,328,65,64,-1,328,77,65,-1,308,1173,253,-1,308,946,1173,-1,1169,324,310,-1,1169,1188,324,-1,1023,786,788,-1,316,786,1023,-1,312,306,166,-1,306,312,311,-1,301,294,788,-1,303,294,301,-1,856,927,160,-1,854,927,856,-1,925,295,944,-1,925,796,295,-1,925,797,796,-1,943,1208,1194,-1,1208,943,790,-1,790,1109,1208,-1,790,1110,1109,-1,1189,273,1026,-1,273,1189,1113,-1,795,792,791,-1,795,794,792,-1,1106,198,1105,-1,198,1106,833,-1,293,1190,291,-1,1190,293,798,-1,272,1108,1026,-1,272,268,1108,-1,802,1033,803,-1,269,1033,802,-1,1085,261,805,-1,261,1085,262,-1,806,805,938,-1,1085,805,806,-1,248,853,236,-1,248,807,853,-1,811,809,251,-1,811,936,809,-1,1103,810,808,-1,1103,937,810,-1,1192,246,235,-1,726,246,1192,-1,250,1191,685,-1,250,249,1191,-1,220,223,1027,-1,220,232,223,-1,1195,818,783,-1,1195,934,818,-1,821,824,40,-1,824,821,823,-1,1028,211,207,-1,211,1028,1100,-1,825,907,826,-1,825,1098,907,-1,1190,206,205,-1,798,206,1190,-1,1152,829,929,-1,1152,830,829,-1,122,193,836,-1,122,916,193,-1,832,1031,1036,-1,832,179,1031,-1,828,186,832,-1,828,838,186,-1,184,1193,1035,-1,1030,1193,184,-1,185,175,174,-1,185,860,175,-1,840,860,841,-1,840,175,860,-1,149,1152,929,-1,149,921,1152,-1,928,731,151,-1,928,1151,731,-1,1042,1029,188,-1,1029,1042,1093,-1,1032,848,172,-1,114,848,1032,-1,913,330,329,-1,913,849,330,-1,98,117,99,-1,98,97,117,-1,926,306,305,-1,926,855,306,-1,275,858,857,-1,275,812,858,-1,793,803,254,-1,804,803,793,-1,286,1194,287,-1,943,1194,286,-1,1096,1035,1193,-1,1096,1036,1035,-1,153,931,844,-1,152,931,153,-1,1087,101,116,-1,101,1087,1084,-1,136,140,139,-1,136,135,140,-1,143,140,135,-1,865,140,143,-1,867,869,868,-1,867,866,869,-1,133,866,147,-1,133,1089,866,-1,862,135,1038,-1,862,143,135,-1,127,940,144,-1,126,940,127,-1,940,263,262,-1,940,939,263,-1,104,109,100,-1,103,109,104,-1,1075,880,1076,-1,880,1075,909,-1,172,69,66,-1,172,848,69,-1,1187,928,1114,-1,1151,928,1187,-1,1116,887,1115,-1,1116,886,887,-1,1064,879,1207,-1,1064,878,879,-1,1196,51,50,-1,51,1196,75,-1,1207,1196,1080,-1,1196,1207,879,-1,221,884,883,-1,221,222,884,-1,1092,1195,1043,-1,1092,850,1195,-1,90,908,88,-1,910,908,90,-1,782,822,1116,-1,822,782,947,-1,1079,1115,887,-1,1079,1078,1115,-1,1197,1077,1079,-1,1071,1077,1197,-1,1197,14,16,-1,48,14,1197,-1,891,1073,889,-1,891,44,1073,-1,933,28,26,-1,28,933,932,-1,1057,32,5,-1,1057,1198,32,-1,1054,1063,900,-1,1061,1063,1054,-1,18,1059,38,-1,1059,18,19,-1,898,1060,23,-1,1199,1060,898,-1,891,906,905,-1,891,374,906,-1,904,373,1206,-1,904,906,373,-1,1200,3,5,-1,1200,1201,3,-1,24,27,902,-1,24,1049,27,-1,1204,47,41,-1,47,1204,1046,-1,1068,21,1202,-1,1068,1067,21,-1,1199,897,1203,-1,897,1199,898,-1,1,897,6,-1,1,1203,897,-1,1,1053,1203,-1,1,9,1053,-1};
			return value;
		}

		/** Define subarray values using type double[] with $tupleSize=3 and $tupleSplitSize=1000 for subarray position()=1 */
		private double[] getaxis_Coord_9_30_point_1()
		{
			double[] value = {0.0,54.7492,-2.3577,-0.0233,54.748,-2.3996,0.0,54.7822,-2.3867,-0.1253,54.789,-2.1793,-0.1002,54.8132,-2.2244,-0.1438,54.732,-2.183,-0.0233,54.7987,-2.4216,-0.0442,54.8366,-2.42,0.0,54.8643,-2.4075,-0.0341,54.716,-2.3857,-0.0204,54.6997,-2.3608,0.0,54.7888,-2.0265,-0.0402,54.7747,-2.0135,-0.0391,54.7744,-2.1038,-0.0922,54.8304,-1.8833,-0.0672,54.8337,-1.889,-0.078,54.9104,-1.8984,-0.073,54.6847,-2.1688,-0.0365,54.7424,-2.1938,-0.0311,54.7101,-2.2811,-0.0621,54.6526,-2.2563,-0.0409,54.6739,-2.3497,-0.0307,54.9344,-2.3782,-0.0402,54.9014,-2.3625,-0.1595,54.8065,-2.0729,-0.1558,54.7801,-2.0728,-0.145,54.8077,-2.0517,-0.1438,54.8247,-2.1258,-0.1286,54.843,-2.0845,-0.1232,54.8307,-2.1279,-0.1236,54.7324,-2.0857,-0.1364,54.7153,-2.1513,-0.1236,54.6719,-2.1633,-0.1155,55.0735,-2.0087,-0.0692,55.1662,-1.9995,-0.086,55.0563,-2.06,-0.0253,55.0147,-2.3116,0.0,55.0514,-2.3275,0.0,54.8001,-2.2187,-0.2157,54.7802,-1.8264,-0.2333,54.7831,-1.8477,-0.1357,54.7693,-1.9193,0.0,54.7987,-1.9185,0.0,54.8426,-1.904,-0.1509,55.1964,-1.9272,-0.1575,55.1898,-1.9356,-0.2304,55.2028,-1.8688,-0.103,54.7813,-1.8801,-0.2101,54.8207,-1.8355,-0.4195,54.9078,-1.5619,-0.3975,54.9691,-1.5802,-0.3939,54.9747,-1.4899,-0.815,55.0876,-1.3217,-0.8176,55.0902,-1.3089,-0.8169,55.1565,-1.3093,-0.806,55.0476,-1.3666,-0.7981,55.0444,-1.3595,-0.5828,55.1069,-1.2034,-0.6979,55.0967,-1.2562,-0.578,55.1005,-1.2144,-0.727,55.1865,-1.4897,-0.7654,55.1471,-1.4226,-0.7915,55.1842,-1.336,-0.4842,55.3491,-1.5245,-0.4502,55.352,-1.5211,-0.41,55.2921,-1.6126,-0.3202,55.288,-1.2321,-0.3401,55.3485,-1.2922,-0.3047,55.3804,-1.2862,-0.3959,55.2585,-1.279,-0.3637,55.2754,-1.4394,-0.41,55.3089,-1.3394,-0.3333,55.1573,-1.4234,-0.3462,55.197,-1.5465,-0.3489,55.2524,-1.4707,-0.3697,55.0786,-1.5301,-0.3458,55.1824,-1.5708,-0.3614,55.2814,-1.6032,-0.1483,55.3941,-1.2741,-0.2314,55.4046,-1.2649,-0.2351,55.5068,-1.3009,-0.2998,55.4093,-1.3031,-0.3962,55.5045,-1.4323,-0.3778,55.4599,-1.3992,-0.4611,55.4102,-1.4664,-0.4018,54.9103,-1.4675,-0.3597,54.8905,-1.3837,-0.4183,54.8825,-1.4542,-0.4907,55.0981,-1.2069,-0.4049,55.0112,-1.2596,-0.3771,55.0389,-1.2618,-0.6129,54.9349,-1.4353,-0.552,54.9435,-1.3557,-0.6481,54.9921,-1.3479,-0.6928,55.092,-1.2053,-0.7056,55.0855,-1.1844,-0.6188,55.1104,-1.1526,-0.6825,55.1025,-1.1158,-0.7227,55.0563,-1.136,-0.7484,55.041,-1.1012,-0.813,54.9957,-1.1381,-0.6093,55.1279,-1.1644,-0.6797,55.1172,-1.1161,-0.8998,54.9651,-1.1701,-0.8662,54.9664,-1.1434,-0.9168,54.964,-1.1569,-0.9586,54.9877,-1.123,-0.8813,54.975,-1.1275,-0.83,55.0315,-1.2041,-0.8676,55.0024,-1.1919,-0.9317,55.0309,-1.2289,-0.3837,55.2347,-1.0471,-0.3966,55.2542,-1.0386,-0.4194,55.2315,-1.1074,-0.4635,55.1802,-1.1519,-0.474,55.1951,-1.1468,-0.532,55.1667,-1.1655,-0.6998,55.0941,-1.0442,-0.4472,55.2596,-0.8767,-0.5523,55.2712,-0.8771,-0.4503,55.2579,-0.8931,-0.7006,55.1074,-1.0435,-0.7019,55.1067,-1.0271,-0.7985,55.3226,-1.0596,-0.7922,55.3209,-1.063,-0.8128,55.2764,-1.0673,-0.7605,55.3529,-1.2823,-0.7561,55.3577,-1.2647,-0.7754,55.3616,-1.2726,-0.7202,55.2889,-1.2516,-0.7396,55.2331,-1.2142,-0.7023,55.1923,-1.2069,-0.791,55.2222,-1.1607,-0.7779,55.235,-1.0356,-0.7745,55.175,-1.1286,-0.5988,55.4055,-1.0923,-0.6126,55.3426,-0.9991,-0.6984,55.3663,-1.0515,-0.45,55.3493,-1.019,-0.5308,55.3132,-0.9526,-0.5306,55.4112,-1.0823,-0.647,55.3443,-1.2263,-0.5778,55.3247,-1.1971,-0.5834,55.3908,-1.172,-0.7295,55.3349,-1.269,-0.6176,55.2579,-1.2303,-0.735,55.1389,-1.0858,-0.7251,55.1938,-1.0001,-0.0921,54.9726,-0.651,-0.0966,54.9797,-0.6381,-0.1528,55.0184,-0.6773,-0.0933,55.0526,-1.1931,-0.1105,55.0356,-1.178,-0.1202,55.0509,-1.1898,-0.3795,55.7319,-0.9345,-0.3527,55.7437,-1.0534,-0.3885,55.7296,-0.9387,-0.3363,55.6968,-1.2526,-0.347,55.6989,-1.2491,-0.3366,55.6995,-1.249,-0.2047,55.9338,-1.1981,-0.1953,55.9609,-1.1461,-0.2068,56.0333,-1.1482,-0.1767,55.9363,-1.2551,-0.1757,55.8903,-1.1921,-0.1683,55.9345,-1.1195,-0.1916,56.0403,-1.1153,-0.5584,54.9826,-1.307,-0.4784,55.0506,-1.2375,-0.5546,55.0517,-1.2637,-0.5976,55.1174,-1.1677,-0.5236,55.15,-1.1677,-0.376,55.2284,-1.1597,-0.3224,55.2076,-1.1049,-0.0408,55.0851,-0.9467,-0.0423,55.0546,-1.0541,0.0,55.0577,-1.0503,-0.2782,55.1374,-0.9961,-0.2361,55.0773,-1.0028,-0.2865,55.1297,-0.9295,0.0,55.0206,-0.7121,-0.0992,55.0071,-0.7257,0.0,55.1099,-0.7986,-0.0764,55.0858,-0.8464,-0.1692,55.057,-0.9197,-0.1104,55.0711,-0.9308,-0.3578,55.2121,-0.8657,-0.4302,55.2501,-0.8831,-0.3973,55.2389,-0.9585,-0.8562,55.1494,-1.0152,-0.9016,55.0817,-1.0471,-0.8448,55.0035,-1.1052,-0.7842,55.2276,-0.9561,-0.7071,55.179,-0.9351,-0.6567,55.2581,-0.8704,-0.8711,55.1882,-1.065,-0.709,55.3021,-0.8651,-0.6448,55.32,-0.8282,-0.4666,55.3647,-0.8129,-0.2062,55.2176,-0.717,-0.2187,55.1106,-0.7364,-0.2062,55.0752,-0.6515,-0.1676,55.1795,-0.6299,-0.111,55.2796,-0.623,-0.142,55.2777,-0.6969,-0.0882,55.3671,-0.6602,-0.1773,55.395,-0.7123,-0.1699,55.1612,-1.9362,-0.1236,54.7703,-1.9983,-0.0807,54.7811,-2.0029,-0.3352,55.2022,-1.7862,-0.2487,55.1724,-1.8688,-0.4228,54.8806,-1.6879,-0.4365,54.9514,-1.7282,-0.3414,54.9154,-1.7989,-0.657,55.2143,-1.5299,-0.7299,55.2512,-1.4008,-0.5926,55.3115,-1.5052,-0.3846,55.1325,-1.7834,-0.4335,55.0288,-1.7599,-0.522,55.0541,-1.7045,-0.5182,54.9799,-1.675,-0.4915,54.9073,-1.6207,-0.5729,55.1712,-1.6358,-0.4442,55.2384,-1.6696,-0.413,55.2238,-1.7055,-0.5035,55.2861,-1.5922,-0.3076,55.2341,-1.7824,-0.3396,55.2571,-1.6973,-0.3706,55.2598,-1.6987,-0.7356,55.0675,-1.5292,-0.6902,55.1006,-1.5707,-0.6245,55.0846,-1.6312,-0.9649,55.0547,-1.1513,-0.9671,54.9925,-1.1536,-0.0764,56.1525,-1.3602,-0.1003,56.0966,-1.3441,-0.073,56.1944,-1.3356,-0.3241,55.562,-1.3603,-0.2704,55.6488,-1.2822,-0.2563,55.6044,-1.312,-0.1586,55.5184,-1.3026,-0.1852,55.5921,-1.2635,0.0,55.3854,-1.269,-0.0548,55.5107,-1.3189,0.0,55.4885,-1.3158,-0.0758,56.0637,-1.3775,-0.0706,55.9916,-1.3553,-0.1363,56.0163,-1.3234,-0.0804,55.6987,-1.2638,-0.0689,55.6219,-1.2848,-0.1503,55.7192,-1.2101,-0.1285,56.2012,-1.2578,-0.0591,56.2594,-1.2528,-0.8094,55.4068,-1.2914,-0.931,55.1341,-1.1095,-0.8743,55.2188,-1.1296,-0.9301,55.1429,-1.1872,-0.8261,55.2661,-1.0854,-0.8296,55.2547,-1.0271,-0.8226,55.2756,-1.0658,-0.7551,55.2804,-1.3325,-0.736,55.2946,-1.2641,-0.6765,55.3879,-1.4118,-0.5305,55.4301,-1.4686,-0.4808,55.5417,-1.3752,-0.5341,55.4379,-1.4614,-0.5743,55.479,-1.3934,-0.5979,55.5483,-1.297,-0.686,55.4721,-1.3332,-0.5087,55.6478,-1.1854,-0.5227,55.6168,-1.2455,-0.5556,55.5797,-1.2793,-0.4095,55.7098,-1.1434,-0.4296,55.6831,-1.2031,-0.3421,55.6265,-1.3296,-0.4472,55.6173,-1.2986,-0.2459,55.5305,-0.7874,-0.3347,55.4955,-0.8018,-0.3407,55.3958,-0.8025,-0.2514,55.4132,-0.7744,-0.7934,55.3682,-1.0859,-0.7855,55.3262,-0.9808,-0.7323,55.3611,-0.8805,-0.6699,55.3889,-0.8322,-0.6877,55.4804,-0.8448,-0.5906,55.5893,-0.8262,-0.6992,55.5402,-0.8674,-0.4358,55.6942,-0.9853,-0.4955,55.657,-0.9097,-0.4816,55.6367,-0.8451,-0.064,55.5501,-0.7409,-0.1592,55.6412,-0.7833,-0.1525,55.5406,-0.7742,-0.2423,55.6862,-0.8577,-0.3474,55.5954,-0.8158,-0.2467,55.6226,-0.8092,-0.3469,55.7486,-1.1389,-0.2755,55.7241,-1.0276,-0.1668,55.8502,-1.0679,-0.151,55.9035,-1.0805,-0.1919,55.7931,-0.946,-0.2221,55.7841,-1.0492,-0.2734,55.7257,-0.9191,-0.1458,55.8658,-0.9625,-0.1421,56.1377,-1.237,-0.1629,56.12,-1.1615,-0.1035,56.1947,-1.181,-0.0433,56.2424,-1.1727,-0.0961,56.1574,-1.0859,-0.0831,56.1126,-1.0115,-0.1162,56.1023,-1.057,-0.1334,56.0279,-1.0075,-0.0648,55.6567,-0.7702,0.0,55.661,-0.7634,0.0,55.7647,-0.7972,-0.0598,55.8021,-0.8675,0.0,55.8091,-0.8329,0.0,55.8527,-0.8583,-0.0636,55.9388,-0.9203,0.0,56.0352,-0.9443,-0.093,56.0324,-0.9712,0.0,55.9326,-0.885,-0.0457,56.218,-1.0896,-0.0475,56.1665,-1.0343,-0.3624,55.1441,-1.2962,-0.363,55.2033,-1.3607,-0.4241,55.3592,-1.3998,-0.3806,55.3287,-1.4974,-0.3647,54.9626,-1.3084,-0.4014,54.9179,-1.3438,-0.358,54.8969,-1.3649,0.0233,54.748,-2.3996,0.0341,54.716,-2.3857,0.0391,54.7744,-2.1038,0.0,54.8049,-2.117,0.073,54.6847,-2.1688,0.0781,54.7439,-2.0906,0.0204,54.6997,-2.3608,0.0409,54.6739,-2.3497,0.0621,54.6526,-2.2563,0.0402,54.9014,-2.3625,0.0533,54.8177,-2.4126,0.0442,54.8366,-2.42,0.145,54.8077,-2.0517,0.1385,54.7743,-2.0604,0.1558,54.7801,-2.0728,0.1286,54.843,-2.0845,0.1445,54.8303,-2.0956,0.1438,54.8247,-2.1258,0.1253,54.789,-2.1793,0.1408,54.7916,-2.1676,0.1583,54.7424,-2.1757,0.1236,54.6719,-2.1633,0.1375,54.743,-2.0881,0.1236,54.7324,-2.0857,0.086,55.0563,-2.06,0.0692,55.1662,-1.9995,0.1155,55.0735,-2.0087,0.0307,54.9344,-2.3782,0.0,54.9463,-2.3834,0.0365,54.7424,-2.1938,0.1414,54.8168,-2.0184,0.0807,54.7811,-2.0029,0.103,54.7813,-1.8801,0.1357,54.7693,-1.9193,0.2333,54.7831,-1.8477,0.3614,55.2814,-1.6032,0.3396,55.2571,-1.6973,0.3322,55.2494,-1.6936,0.0577,54.785,-1.8952,0.0672,54.8337,-1.889,0.0123,55.208,-2.0419,0.0,55.1916,-2.0848,0.0,55.2212,-2.0019,0.1575,55.1898,-1.9356,0.1509,55.1964,-1.9272,0.224,55.212,-1.8668,0.2157,54.7802,-1.8264,0.2101,54.8207,-1.8355,0.0922,54.8304,-1.8833,0.4195,54.9078,-1.5619,0.4018,54.9103,-1.4675,0.3939,54.9747,-1.4899,0.815,55.0876,-1.3217,0.7965,55.086,-1.3192,0.7981,55.0444,-1.3595,0.6941,55.093,-1.2673,0.6979,55.0967,-1.2562,0.5828,55.1069,-1.2034,0.4792,55.1039,-1.2115,0.4907,55.0981,-1.2069,0.4955,55.1077,-1.198,0.41,55.2921,-1.6126,0.4502,55.352,-1.5211,0.4842,55.3491,-1.5245,0.3047,55.3804,-1.2862,0.3401,55.3485,-1.2922,0.3202,55.288,-1.2321,0.3637,55.2754,-1.4394,0.363,55.2033,-1.3607,0.3959,55.2585,-1.279,0.3489,55.2524,-1.4707,0.345,55.0879,-1.4846,0.3333,55.1573,-1.4234,0.3462,55.197,-1.5465,0.3458,55.1824,-1.5708,0.3697,55.0786,-1.5301,0.428,55.1884,-1.1907,0.376,55.2284,-1.1597,0.3241,55.562,-1.3603,0.3315,55.6252,-1.3305,0.3827,55.5186,-1.4198,0.2314,55.4046,-1.2649,0.1586,55.5184,-1.3026,0.2351,55.5068,-1.3009,0.4611,55.4102,-1.4664,0.3778,55.4599,-1.3992,0.3962,55.5045,-1.4323,0.2563,55.6044,-1.312,0.1852,55.5921,-1.2635,0.2118,55.6658,-1.2244,0.3597,54.8905,-1.3837,0.3474,54.9038,-1.3769,0.3771,55.0389,-1.2618,0.4049,55.0112,-1.2596,0.6928,55.092,-1.2053,0.6825,55.1025,-1.1158,0.6188,55.1104,-1.1526,0.7056,55.0855,-1.1844,0.7227,55.0563,-1.136,0.8015,55.0381,-1.1859,0.813,54.9957,-1.1381,0.9168,54.964,-1.1569,0.8813,54.975,-1.1275,0.8662,54.9664,-1.1434,0.9586,54.9877,-1.123,0.9356,55.0242,-1.0796,0.83,55.0315,-1.2041,0.9317,55.0309,-1.2289,0.8676,55.0024,-1.1919,0.9065,55.126,-1.2477,0.8268,55.2069,-1.1983,0.9301,55.1429,-1.1872,0.4194,55.2315,-1.1074,0.3837,55.2347,-1.0471,0.4037,55.2172,-1.1111,0.532,55.1667,-1.1655,0.474,55.1951,-1.1468,0.5236,55.15,-1.1677,0.4503,55.2579,-0.8931,0.5523,55.2712,-0.8771,0.4472,55.2596,-0.8767,0.7019,55.1067,-1.0271,0.7006,55.1074,-1.0435,0.6998,55.0941,-1.0442,0.7922,55.3209,-1.063,0.7985,55.3226,-1.0596,0.8226,55.2756,-1.0658,0.7754,55.3616,-1.2726,0.7561,55.3577,-1.2647,0.7605,55.3529,-1.2823,0.7023,55.1923,-1.2069,0.7396,55.2331,-1.2142,0.7202,55.2889,-1.2516,0.7745,55.175,-1.1286,0.7779,55.235,-1.0356,0.791,55.2222,-1.1607,0.5988,55.4055,-1.0923,0.6791,55.3974,-1.1297,0.6984,55.3663,-1.0515,0.5306,55.4112,-1.0823,0.5308,55.3132,-0.9526,0.45,55.3493,-1.019,0.5778,55.3247,-1.1971,0.647,55.3443,-1.2263,0.6659,55.3875,-1.1989,0.7295,55.3349,-1.269,0.7251,55.1938,-1.0001,0.735,55.1389,-1.0858,0.7507,55.2967,-1.0194,0.7199,55.3353,-1.0154,0.7853,55.3614,-1.0885,0.1202,55.0509,-1.1898,0.1105,55.0356,-1.178,0.0933,55.0526,-1.1931,0.3885,55.7296,-0.9387,0.3622,55.743,-1.0555,0.3795,55.7319,-0.9345,0.3366,55.6995,-1.249,0.347,55.6989,-1.2491,0.3363,55.6968,-1.2526,0.2047,55.9338,-1.1981,0.2083,56.0271,-1.2058,0.2068,56.0333,-1.1482,0.1757,55.8903,-1.1921,0.1767,55.9363,-1.2551,0.1683,55.9345,-1.1195,0.1953,55.9609,-1.1461,0.5546,55.0517,-1.2637,0.4691,54.9706,-1.2987,0.5584,54.9826,-1.307,0.578,55.1005,-1.2144,0.4784,55.0506,-1.2375,0.3624,55.1441,-1.2962,0.3276,55.0732,-1.3788,0.3279,54.9742,-1.334,0.5976,55.1174,-1.1677,0.1418,55.0294,-1.114,0.1741,55.0379,-1.1338,0.1998,55.0582,-1.0839,0.2633,55.1418,-1.0835,0.186,55.053,-1.1462,0.2222,55.1489,-1.1749,0.2865,55.1297,-0.9295,0.2361,55.0773,-1.0028,0.2782,55.1374,-0.9961,0.0992,55.0071,-0.7257,0.1104,55.0711,-0.9308,0.1692,55.057,-0.9197,0.0764,55.0858,-0.8464,0.3578,55.2121,-0.8657,0.3438,55.1958,-0.9405,0.3973,55.2389,-0.9585,0.8448,55.0035,-1.1052,0.9016,55.0817,-1.0471,0.8562,55.1494,-1.0152,0.7071,55.179,-0.9351,0.7842,55.2276,-0.9561,0.709,55.3021,-0.8651,0.5706,55.3368,-0.8153,0.4666,55.3647,-0.8129,0.2062,55.2176,-0.717,0.1676,55.1795,-0.6299,0.2062,55.0752,-0.6515,0.111,55.2796,-0.623,0.142,55.2777,-0.6969,0.0882,55.3671,-0.6602,0.2514,55.4132,-0.7744,0.2698,55.3553,-0.7734,0.3407,55.3958,-0.8025,0.1699,55.1612,-1.9362,0.1622,54.7878,-1.9537,0.1236,54.7703,-1.9983,0.1102,54.9131,-2.0644,0.0661,55.0286,-2.1105,0.2487,55.1724,-1.8688,0.3076,55.2341,-1.7824,0.3352,55.2022,-1.7862,0.3444,54.8541,-1.7716,0.3414,54.9154,-1.7989,0.4365,54.9514,-1.7282,0.5926,55.3115,-1.5052,0.7299,55.2512,-1.4008,0.5035,55.2861,-1.5922,0.522,55.0541,-1.7045,0.4335,55.0288,-1.7599,0.4683,55.1513,-1.7069,0.4442,55.2384,-1.6696,0.5729,55.1712,-1.6358,0.3706,55.2598,-1.6987,0.6301,55.0092,-1.5941,0.6245,55.0846,-1.6312,0.6902,55.1006,-1.5707,0.7787,55.0355,-1.4831,0.6281,54.9486,-1.5,0.7356,55.0675,-1.5292,0.727,55.1865,-1.4897,0.7654,55.1471,-1.4226,0.869,55.1327,-1.2724,0.9649,55.0547,-1.1513,0.931,55.1341,-1.1095,0.9671,54.9925,-1.1536,0.073,56.1944,-1.3356,0.1003,56.0966,-1.3441,0.0764,56.1525,-1.3602,0.0831,55.39,-1.2775,0.0706,55.9916,-1.3553,0.0758,56.0637,-1.3775,0.1503,55.7192,-1.2101,0.0689,55.6219,-1.2848,0.0804,55.6987,-1.2638,0.1682,56.0167,-1.2836,0.1363,56.0163,-1.3234,0.6865,55.388,-1.3982,0.8094,55.4068,-1.2914,0.8743,55.2188,-1.1296,0.8711,55.1882,-1.065,0.5305,55.4301,-1.4686,0.6765,55.3879,-1.4118,0.5743,55.479,-1.3934,0.5341,55.4379,-1.4614,0.3963,55.514,-1.4249,0.6516,55.541,-1.2498,0.5979,55.5483,-1.297,0.5556,55.5797,-1.2793,0.5087,55.6478,-1.1854,0.4986,55.6559,-1.1544,0.4296,55.6831,-1.2031,0.4095,55.7098,-1.1434,0.4472,55.6173,-1.2986,0.3421,55.6265,-1.3296,0.2459,55.5305,-0.7874,0.7323,55.3611,-0.8805,0.6699,55.3889,-0.8322,0.8296,55.2547,-1.0271,0.7855,55.3262,-0.9808,0.7934,55.3919,-1.009,0.7934,55.3682,-1.0859,0.6877,55.4804,-0.8448,0.6992,55.5402,-0.8674,0.5906,55.5893,-0.8262,0.4816,55.6367,-0.8451,0.4955,55.657,-0.9097,0.064,55.5501,-0.7409,0.1525,55.5406,-0.7742,0.1592,55.6412,-0.7833,0.3474,55.5954,-0.8158,0.3706,55.664,-0.8472,0.2423,55.6862,-0.8577,0.2755,55.7241,-1.0276,0.3527,55.7437,-1.0534,0.3469,55.7486,-1.1389,0.1744,55.8204,-1.1578,0.151,55.9035,-1.0805,0.2481,55.6976,-1.1421,0.2221,55.7841,-1.0492,0.1458,55.8658,-0.9625,0.1131,55.8652,-0.9166,0.1235,55.8026,-0.8835,0.1344,55.9382,-0.9619,0.1668,55.8502,-1.0679,0.1285,56.2012,-1.2578,0.1035,56.1947,-1.181,0.1629,56.12,-1.1615,0.0457,56.218,-1.0896,0.0961,56.1574,-1.0859,0.093,56.0324,-0.9712,0.1334,56.0279,-1.0075,0.0831,56.1126,-1.0115,0.1162,56.1023,-1.057,0.0648,55.6567,-0.7702,0.0598,55.8021,-0.8675,0.0636,55.9388,-0.9203,0.0475,56.1665,-1.0343,0.3806,55.3287,-1.4974,0.4241,55.3592,-1.3998,0.358,54.8969,-1.3649,0.4014,54.9179,-1.3438,0.3647,54.9626,-1.3084,0.4373,54.8791,-1.5528,0.4493,54.872,-1.5593,0.508,54.8953,-1.4639,0.0433,56.2424,-1.1727,0.0,56.2423,-1.0862,0.0639,55.8683,-0.8827,0.1916,56.0403,-1.1153,0.1919,55.7931,-0.946,0.1504,55.736,-0.838,0.2157,55.7338,-1.1363,0.2734,55.7257,-0.9191,0.2467,55.6226,-0.8092,0.0,55.5628,-0.7263,0.5923,55.5956,-0.8332,0.5917,55.6121,-0.9112,0.8532,55.431,-1.15,0.8263,55.4634,-1.0346,0.7551,55.4331,-0.9104,0.7825,55.4989,-0.9326,0.4781,55.6278,-0.8328,0.4448,55.5566,-0.8071,0.5841,55.5147,-0.8148,0.356,55.7484,-1.1392,0.5227,55.6168,-1.2455,0.5902,55.6036,-1.1496,0.7023,55.5422,-1.1522,0.6904,55.5361,-1.2106,0.7799,55.4777,-1.251,0.7935,55.4863,-1.1646,0.8522,55.439,-1.1521,0.7551,55.2804,-1.3325,0.7403,55.3362,-1.2813,0.8261,55.2661,-1.0854,0.1487,55.7947,-1.2619,0.1466,55.8862,-1.3019,0.0,55.5977,-1.3038,0.0548,55.5107,-1.3189,0.9107,55.0512,-1.2533,0.8689,55.0659,-1.2696,0.8335,55.0843,-1.3977,0.7915,55.1842,-1.336,0.413,55.2238,-1.7055,0.3846,55.1325,-1.7834,0.2895,55.1056,-1.8574,0.4228,54.8806,-1.6879,0.3923,54.8396,-1.6515,0.3293,54.807,-1.7292,0.1298,54.9355,-2.031,0.1773,55.395,-0.7123,0.3629,55.2963,-0.8263,0.2694,55.2472,-0.7827,0.2654,55.1283,-0.8409,0.6255,55.239,-0.9151,0.6567,55.2581,-0.8704,0.6732,55.158,-0.9687,0.7927,55.0526,-1.0636,0.744,55.1185,-0.9976,0.4302,55.2501,-0.8831,0.1025,55.0544,-1.0259,0.1702,55.0476,-1.0166,0.076,55.0292,-1.1286,0.0,55.0773,-0.9458,0.0273,55.0923,-0.8957,0.0,55.1005,-0.8695,0.0966,54.9797,-0.6381,0.1528,55.0184,-0.6773,0.129,55.1614,-1.2209,0.3224,55.2076,-1.1049,0.3843,55.2336,-1.034,0.3366,55.1951,-1.0183,0.2819,55.2532,-1.205,0.4618,54.9107,-1.3505,0.552,54.9435,-1.3557,0.6481,54.9921,-1.3479,0.6835,55.0445,-1.3155,0.1883,56.0848,-1.1781,0.0,56.0627,-1.3781,0.0,55.9858,-1.3722,0.8245,55.4708,-1.0391,0.0,54.9757,-0.6212,0.0921,54.9726,-0.651,0.0,55.0709,-1.1829,0.7712,55.3685,-1.232,0.5834,55.3908,-1.172,0.5159,55.3913,-1.1537,0.7862,55.3764,-1.1595,0.5494,55.2735,-0.8919,0.6388,55.3013,-0.9447,0.6126,55.3426,-0.9991,0.412,55.2575,-0.9643,0.4372,55.3439,-1.0922,0.3966,55.2542,-1.0386,0.7809,55.3649,-1.0915,0.7896,55.3754,-1.2401,0.8128,55.2764,-1.0673,0.8045,55.2249,-1.1719,0.6226,55.2453,-0.9261,0.6709,55.1645,-0.9783,0.8048,55.0893,-1.3022,0.7879,55.0667,-1.243,0.7924,55.0606,-1.2162,0.944,54.9814,-1.1872,0.8998,54.9651,-1.1701,0.7106,55.1371,-1.1239,0.6533,55.1521,-1.1875,0.6093,55.1279,-1.1644,0.1067,55.5145,-1.3107,0.3109,55.4848,-1.3444,0.3427,55.1672,-1.6548,0.3438,54.9787,-1.4227,0.2268,55.2767,-1.2199,0.7747,55.2149,-1.2621,0.5794,54.9335,-1.539,0.806,55.0476,-1.3666,0.3032,54.8412,-1.7308,0.3154,54.8107,-1.7247,0.2934,55.239,-1.7758,0.2304,55.2028,-1.8688,0.0418,55.2106,-1.9827,0.0372,55.2055,-1.9753,0.1593,54.9593,-2.0025,0.166,54.7792,-2.111,0.1534,54.7557,-2.0934,0.1544,54.732,-2.1484,0.1595,54.8065,-2.0729,0.0253,55.1131,-2.1466,0.0372,55.0371,-2.2167,0.0253,55.0753,-2.234,0.0468,54.7887,-2.4172,0.1438,54.732,-2.183,0.1364,54.7153,-2.1513,0.0233,54.7987,-2.4216,-0.4373,54.8791,-1.5528,-0.508,54.8953,-1.4639,-0.0639,55.8683,-0.8827,-0.1131,55.8652,-0.9166,-0.1235,55.8026,-0.8835,-0.1344,55.9382,-0.9619,-0.1504,55.736,-0.838,-0.1744,55.8204,-1.1578,-0.5917,55.6121,-0.9112,-0.7934,55.3919,-1.009,-0.8263,55.4634,-1.0346,-0.8532,55.431,-1.15,-0.7825,55.4989,-0.9326,-0.7551,55.4331,-0.9104,-0.4448,55.5566,-0.8071,-0.4781,55.6278,-0.8328,-0.1654,55.4453,-0.7318,-0.356,55.7484,-1.1392,-0.6516,55.541,-1.2498,-0.6904,55.5361,-1.2106,-0.7799,55.4777,-1.251,-0.8087,55.4156,-1.2924,-0.8522,55.439,-1.1521,-0.7747,55.2149,-1.2621,-0.8045,55.2249,-1.1719,-0.1682,56.0167,-1.2836,-0.1466,55.8862,-1.3019,-0.2157,55.7338,-1.1363,-0.1487,55.7947,-1.2619,-0.2118,55.6658,-1.2244,-0.3315,55.6252,-1.3305,-0.9065,55.126,-1.2477,-0.8689,55.0659,-1.2696,-0.9107,55.0512,-1.2533,-0.8335,55.0843,-1.3977,-0.7787,55.0355,-1.4831,-0.6281,54.9486,-1.5,-0.7451,54.9892,-1.4184,-0.2934,55.239,-1.7758,-0.3293,54.807,-1.7292,-0.3923,54.8396,-1.6515,-0.3444,54.8541,-1.7716,-0.252,54.8213,-1.873,-0.2497,54.8797,-1.8968,-0.1826,54.8369,-1.9834,-0.2698,55.3553,-0.7734,-0.2694,55.2472,-0.7827,-0.0923,55.1438,-0.6045,0.0,55.1123,-0.5825,0.0,55.193,-0.5966,-0.2654,55.1283,-0.8409,-0.5706,55.3368,-0.8153,-0.6255,55.239,-0.9151,-0.7927,55.0526,-1.0636,-0.744,55.1185,-0.9976,-0.9356,55.0242,-1.0796,-0.3629,55.2963,-0.8263,-0.1702,55.0476,-1.0166,-0.076,55.0292,-1.1286,-0.1418,55.0294,-1.114,-0.0273,55.0923,-0.8957,-0.129,55.1614,-1.2209,-0.186,55.053,-1.1462,-0.2222,55.1489,-1.1749,-0.2819,55.2532,-1.205,-0.2633,55.1418,-1.0835,-0.428,55.1884,-1.1907,-0.4618,54.9107,-1.3505,-0.5228,54.8988,-1.4058,-0.6835,55.0445,-1.3155,-0.7924,55.0606,-1.2162,-0.1463,56.0817,-1.2816,-0.1969,56.0185,-1.2619,-0.1883,56.0848,-1.1781,-0.2083,56.0271,-1.2058,-0.3963,55.514,-1.4249,-0.3827,55.5186,-1.4198,-0.8245,55.4708,-1.0391,-0.1025,55.0544,-1.0259,-0.7712,55.3685,-1.232,-0.6659,55.3875,-1.1989,-0.4372,55.3439,-1.0922,-0.4975,55.279,-1.1557,-0.5159,55.3913,-1.1537,-0.6874,55.2682,-0.9654,-0.6226,55.2453,-0.9261,-0.5494,55.2735,-0.8919,-0.6388,55.3013,-0.9447,-0.412,55.2575,-0.9643,-0.8023,55.3746,-1.1054,-0.7809,55.3649,-1.0915,-0.6709,55.1645,-0.9783,-0.8015,55.0381,-1.1859,-0.7879,55.0667,-1.243,-0.8048,55.0893,-1.3022,-0.3109,55.4848,-1.3444,-0.3322,55.2494,-1.6936,-0.3427,55.1672,-1.6548,-0.3438,54.9787,-1.4227,-0.345,55.0879,-1.4846,-0.2268,55.2767,-1.2199,-0.6301,55.0092,-1.5941,-0.5794,54.9335,-1.539,-0.4955,55.1077,-1.198,-0.3154,54.8107,-1.7247,-0.3032,54.8412,-1.7308,-0.224,55.212,-1.8668,-0.0372,55.2055,-1.9753,0.0,55.2136,-1.9859,-0.0418,55.2106,-1.9827,-0.1622,54.7878,-1.9537,-0.1375,54.743,-2.0881,-0.1385,54.7743,-2.0604,-0.1298,54.9355,-2.031,0.0,54.8206,-2.4033,-0.0468,54.7887,-2.4172,-0.0533,54.8177,-2.4126,-0.0253,55.0753,-2.234,-0.0372,55.0371,-2.2167,-0.0253,55.1131,-2.1466,-0.166,54.7792,-2.111,-0.1534,54.7557,-2.0934,-0.0245,55.1824,-2.0765,-0.0546,55.2015,-1.9931,-0.0123,55.208,-2.0419,-0.1593,54.9593,-2.0025,-0.4792,55.1039,-1.2115,-0.3474,54.9038,-1.3769,-0.3702,55.0495,-1.2659,-0.0831,55.39,-1.2775,-0.1067,55.5145,-1.3107,-0.4691,54.9706,-1.2987,-0.7405,54.9885,-1.4078,-0.944,54.9814,-1.1872,-0.6732,55.158,-0.9687,-0.7896,55.3754,-1.2401,-0.7853,55.3614,-1.0885,-0.806,55.3827,-1.1608,0.0,55.0605,-1.1635,0.0,54.9853,-0.6097,-0.1998,55.0582,-1.0839,-0.2078,55.0633,-1.0645,-0.2225,55.0783,-1.0803,-0.4722,55.6349,-0.8355,-0.1748,56.0963,-1.2269,-0.1972,55.9661,-1.2386,-0.0614,55.1865,-1.2147,-0.127,55.0346,-0.6148,-0.2239,55.0675,-1.0051,-0.1741,55.0379,-1.1338,-0.1102,54.9131,-2.0644,-0.1414,54.8168,-2.0184,-0.6127,54.9339,-1.4474,-0.869,55.1327,-1.2724,-0.2481,55.6976,-1.1421,-0.0757,55.7893,-1.2967,-0.8268,55.2069,-1.1983,-0.6865,55.388,-1.3982,-0.7403,55.3362,-1.2813,-0.7935,55.4863,-1.1646,-0.5841,55.5147,-0.8148,-0.5923,55.5956,-0.8332,-0.3706,55.664,-0.8472,-0.3839,55.7272,-0.9288,0.0,56.2501,-1.1697,-0.4493,54.872,-1.5593,0.0402,54.7747,-2.0135,0.0546,55.2015,-1.9931,0.0245,55.1824,-2.0765,0.0574,54.7713,-1.9622,0.0,54.785,-1.9831,0.8169,55.1565,-1.3093,0.657,55.2143,-1.5299,0.3702,55.0495,-1.2659,0.6797,55.1172,-1.1161,0.736,55.2946,-1.2641,0.8023,55.3746,-1.1054,0.4975,55.279,-1.1557,0.806,55.3827,-1.1608,0.2225,55.0783,-1.0803,0.2078,55.0633,-1.0645,0.4722,55.6349,-0.8355,0.1748,56.0963,-1.2269,0.1463,56.0817,-1.2816,0.1421,56.1377,-1.237,0.5228,54.8988,-1.4058,0.6129,54.9349,-1.4353,0.4635,55.1802,-1.1519,0.0614,55.1865,-1.2147,0.127,55.0346,-0.6148,0.2239,55.0675,-1.0051,0.0408,55.0851,-0.9467,0.6448,55.32,-0.8282,0.2187,55.1106,-0.7364,0.0923,55.1438,-0.6045,0.1654,55.4453,-0.7318,0.1826,54.8369,-1.9834,0.2497,54.8797,-1.8968,0.252,54.8213,-1.873,0.2704,55.6488,-1.2822,0.071,55.8798,-1.3297,0.0757,55.7893,-1.2967,0.8087,55.4156,-1.2924,0.686,55.4721,-1.3332,0.3839,55.7272,-0.9288,0.4183,54.8825,-1.4542,0.3355,54.9679,-1.3263,0.0675,55.7459,-0.8283,0.4358,55.6942,-0.9853,0.7397,55.5369,-0.9929,0.7747,55.5046,-1.0744,0.6484,55.5885,-1.03,0.6825,55.5664,-1.0778,0.3347,55.4955,-0.8018,0.4808,55.5417,-1.3752,0.0591,56.2594,-1.2528,0.2052,55.0821,-1.9312,0.122,55.0449,-0.8101};
			return value;
		}

		/** Define subarray values using type double[] with $tupleSize=3 and $tupleSplitSize=1000 for subarray position()=2 */
		private double[] getaxis_Coord_9_30_point_2()
		{
			double[] value = {0.223,55.0753,-0.9165,0.0423,55.0546,-1.0541,0.1972,55.9661,-1.2386,0.679,55.396,-1.4042,0.2202,55.0746,-0.9072,0.2113,55.0679,-0.9156,0.6176,55.2579,-1.2303,0.6516,55.235,-1.2303,0.5409,55.2205,-1.193,0.7484,55.041,-1.1012,0.2998,55.4093,-1.3031,0.1483,55.3941,-1.2741,0.41,55.3089,-1.3394,0.4358,54.8772,-1.3934,0.8176,55.0902,-1.3089,0.3975,54.9691,-1.5802,0.0253,55.0147,-2.3116,0.0473,55.1397,-2.073,0.1232,54.8307,-2.1279,0.0311,54.7101,-2.2811,0.078,54.9104,-1.8984,0.1002,54.8132,-2.2244,-0.3355,54.9679,-1.3263,-0.0675,55.7459,-0.8283,-0.7747,55.5046,-1.0744,-0.7397,55.5369,-0.9929,-0.4986,55.6559,-1.1544,-0.4683,55.1513,-1.7069,-0.2052,55.0821,-1.9312,-0.3438,55.1958,-0.9405,-0.122,55.0449,-0.8101,-0.223,55.0753,-0.9165,-0.4037,55.2172,-1.1111,-0.679,55.396,-1.4042,-0.3622,55.743,-1.0555,-0.2113,55.0679,-0.9156,-0.2202,55.0746,-0.9072,-0.1431,55.0125,-0.6883,-0.6791,55.3974,-1.1297,-0.6516,55.235,-1.2303,-0.7106,55.1371,-1.1239,-0.5409,55.2205,-1.193,-0.3843,55.2336,-1.034,-0.4358,54.8772,-1.3934,-0.6941,55.093,-1.2673,-0.7965,55.086,-1.3192,-0.0577,54.785,-1.8952,-0.0781,54.7439,-2.0906,-0.0473,55.1397,-2.073,-0.1445,54.8303,-2.0956,-0.0827,54.733,-2.3752,-0.0785,54.7078,-2.3822,-0.1039,54.6843,-2.3541,-0.0672,54.7337,-2.3934,-0.0372,54.9766,-2.2942,-0.1544,54.732,-2.1484,-0.1002,54.8738,-2.1468,-0.1307,54.6793,-2.2678,-0.0952,54.7609,-2.3031,0.0,54.7677,-2.306,-0.0663,54.857,-2.3447,-0.0673,54.9226,-2.2717,-0.0661,55.0286,-2.1105,-0.0683,54.9747,-2.1996,-0.2902,55.2344,-1.7717,-0.2214,55.2084,-1.862,0.0,54.9319,-1.9155,-0.045,54.7023,-2.3798,-0.0736,54.6951,-2.3767,-0.0604,55.0146,-1.9241,-0.1637,55.106,-1.8989,-0.1826,55.0054,-1.8736,-0.044,55.1124,-1.9528,-0.1474,55.1921,-1.9222,-0.2403,55.1227,-1.8311,-0.3279,54.9742,-1.334,-0.3276,55.0732,-1.3788,-0.2663,55.013,-1.7929,-0.3494,54.9383,-1.6728,-0.2939,54.9033,-1.7564,-0.3277,55.0431,-1.7072,-0.1386,55.2777,-1.2475,-0.36,55.4091,-1.3522,-0.1031,55.572,-1.2924,-0.6533,55.1521,-1.1875,-0.7531,55.2365,-1.2251,-0.7862,55.3764,-1.1595,-0.5923,55.1922,-1.2016,-0.7199,55.3353,-1.0154,-0.7507,55.2967,-1.0194,-0.781,55.5063,-0.9378,-0.1842,56.0601,-1.2557,-0.4385,54.8798,-1.3829,-0.3366,55.1951,-1.0183,0.0,55.0444,-1.1143,-0.061,54.9662,-0.6771,-0.1723,55.0605,-0.7661,0.0,55.286,-0.6015,-0.2348,54.9702,-1.9257,-0.3357,55.0042,-1.8344,-0.2895,55.1056,-1.8574,0.0,55.8683,-1.34,0.0,55.7777,-1.3147,-0.071,55.8798,-1.3297,-0.7023,55.5422,-1.1522,-0.4363,55.4691,-0.7988,-0.5657,55.4117,-0.807,-0.6825,55.5664,-1.0778,-0.5902,55.6036,-1.1496,-0.6484,55.5885,-1.03,-0.6021,55.6142,-1.0118,-0.511,55.6519,-1.0385,-0.539,55.6394,-1.0108,-0.4022,55.7169,-1.0689,-0.0722,55.2883,-1.2461,-0.3641,54.8758,-1.6519,-0.3758,54.8456,-1.6461,0.0566,54.7691,-2.4087,0.0672,54.7337,-2.3934,0.0627,54.7997,-2.4041,0.0736,54.6951,-2.3767,0.0947,54.6603,-2.3438,0.045,54.7023,-2.3798,0.1002,54.8738,-2.1468,0.1307,54.6793,-2.2678,0.0827,54.733,-2.3752,0.0952,54.7609,-2.3031,0.1039,54.6843,-2.3541,0.0663,54.857,-2.3447,0.0673,54.9226,-2.2717,0.1474,55.1921,-1.9222,0.1996,54.898,-1.8531,0.2663,55.013,-1.7929,0.2939,54.9033,-1.7564,0.1826,55.0054,-1.8736,0.3641,54.8758,-1.6519,0.3494,54.9383,-1.6728,0.3758,54.8456,-1.6461,0.5204,54.8963,-1.4171,0.4385,54.8798,-1.3829,0.5182,54.9799,-1.675,0.4915,54.9073,-1.6207,0.3277,55.0431,-1.7072,0.1386,55.2777,-1.2475,0.7531,55.2365,-1.2251,0.5923,55.1922,-1.2016,0.1723,55.0605,-0.7661,0.1599,55.0524,-0.7721,0.781,55.5063,-0.9378,0.1842,56.0601,-1.2557,0.1969,56.0185,-1.2619,0.0,55.1914,-1.2093,0.0,55.0388,-0.5854,0.0881,55.4378,-0.6986,0.2348,54.9702,-1.9257,0.3357,55.0042,-1.8344,0.6127,54.9339,-1.4474,0.4363,55.4691,-0.7988,0.5657,55.4117,-0.807,0.6021,55.6142,-1.0118,0.4793,55.6682,-1.0847,0.4022,55.7169,-1.0689,0.6783,55.5737,-0.9371,0.6991,55.5473,-0.8746,0.0722,55.2883,-1.2461,0.044,55.1124,-1.9528,0.0,55.0295,-1.9353,0.0604,55.0146,-1.9241,0.0,55.1212,-1.9629,0.0,56.1071,-0.9793,0.539,55.6394,-1.0108,0.0,55.4627,-0.6747,0.0,56.2051,-1.3359,0.0,56.2701,-1.2531,0.1031,55.572,-1.2924,0.7451,54.9892,-1.4184,0.0,55.3736,-0.6392,0.1431,55.0125,-0.6883,0.061,54.9662,-0.6771,0.0,54.9636,-0.6652,0.6874,55.2682,-0.9654,0.36,55.4091,-1.3522,0.3659,55.0663,-1.6179,0.7405,54.9885,-1.4078,0.2902,55.2344,-1.7717,0.0683,54.9747,-2.1996,0.1153,54.6392,-2.2505,0.0,55.2884,-1.2392,0.0,56.1887,-1.0333,-0.4793,55.6682,-1.0847,-0.0881,55.4378,-0.6986,0.0,55.6941,-1.2911,0.0,56.1501,-1.3596,-0.1599,55.0524,-0.7721,-0.6991,55.5473,-0.8746,-0.5204,54.8963,-1.4171,-0.3659,55.0663,-1.6179,-0.1996,54.898,-1.8531,-0.1153,54.6392,-2.2505,-0.0627,54.7997,-2.4041,-0.1583,54.7424,-2.1757,-0.1408,54.7916,-2.1676,-0.0947,54.6603,-2.3438,-0.0566,54.7691,-2.4087,-0.0574,54.7713,-1.9622,0.0,55.1119,-2.2499,0.0,55.1497,-2.1625,-0.306,55.1475,-1.7417,-0.6783,55.5737,-0.9371,0.0785,54.7078,-2.3822,0.0372,54.9766,-2.2942,0.2214,55.2084,-1.862,0.1637,55.106,-1.8989,0.2403,55.1227,-1.8311,0.306,55.1475,-1.7417,0.511,55.6519,-1.0385};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=1 */
		private int[] getc2disc_Geo_8_35_coordIndex_1()
		{
			int[] value = {0,1,2,-1,3,4,5,-1,6,7,8,-1,8,7,9,-1,10,11,12,-1,13,11,14,-1,15,16,17,-1,18,19,20,-1,21,22,23,-1,24,16,25,-1,26,16,20,-1,27,28,29,-1,30,31,32,-1,33,34,35,-1,36,37,38,-1,39,40,33,-1,41,42,43,-1,41,43,40,-1,44,45,46,-1,47,44,48,-1,49,50,51,-1,52,53,54,-1,55,56,57,-1,58,59,60,-1,59,61,62,-1,63,64,65,-1,4,3,66,-1,67,65,68,-1,52,69,70,-1,71,72,73,-1,70,74,75,-1,13,14,76,-1,76,77,78,-1,9,7,79,-1,23,50,8,-1,80,68,3,-1,81,82,15,-1,81,83,82,-1,83,84,85,-1,6,79,7,-1,86,87,37,-1,37,4,86,-1,88,15,89,-1,63,67,35,-1,34,90,91,-1,92,75,93,-1,71,94,52,-1,71,73,94,-1,95,93,64,-1,96,93,78,-1,97,86,4,-1,4,66,98,-1,3,68,99,-1,54,60,62,-1,69,56,100,-1,94,53,52,-1,101,102,55,-1,79,61,59,-1,0,57,82,-1,1,0,82,-1,103,44,47,-1,44,104,33,-1,44,105,104,-1,45,40,43,-1,106,107,36,-1,108,33,35,-1,38,37,87,-1,109,31,30,-1,110,29,31,-1,111,27,112,-1,12,11,113,-1,81,15,17,-1,23,22,28,-1,88,18,16,-1,114,85,115,-1,91,116,117,-1,91,90,118,-1,89,15,82,-1,98,119,97,-1,119,101,97,-1,101,120,97,-1,82,57,89,-1,116,91,118,-1,19,50,23,-1,115,86,114,-1,18,20,16,-1,121,81,17,-1,111,112,122,-1,27,123,112,-1,11,124,113,-1,17,24,121,-1,24,25,125,-1,87,126,38,-1,108,127,33,-1,106,36,128,-1,39,129,41,-1,45,33,40,-1,44,33,45,-1,130,41,129,-1,41,130,42,-1,103,105,44,-1,82,83,1,-1,8,131,6,-1,101,55,2,-1,132,61,131,-1,94,73,133,-1,94,133,53,-1,62,134,54,-1,68,65,99,-1,98,97,4,-1,117,95,91,-1,52,135,71,-1,92,93,96,-1,91,63,34,-1,63,35,34,-1,67,108,35,-1,88,89,136,-1,4,37,5,-1,137,84,83,-1,85,114,83,-1,86,115,87,-1,81,137,83,-1,3,5,80,-1,21,23,8,-1,79,12,9,-1,76,78,138,-1,139,13,76,-1,70,75,92,-1,100,140,69,-1,117,116,78,-1,70,135,52,-1,67,63,65,-1,59,62,60,-1,54,69,52,-1,136,49,51,-1,141,89,57,-1,49,132,50,-1,142,106,128,-1,38,128,36,-1,127,39,33,-1,39,41,40,-1,36,5,37,-1,33,104,34,-1,30,32,113,-1,123,143,112,-1,26,112,143,-1,22,32,31,-1,27,111,28,-1,26,20,122,-1,112,26,122,-1,24,17,16,-1,21,32,22,-1,19,28,20,-1,15,88,16,-1,32,21,9,-1,13,124,11,-1,12,79,10,-1,9,21,8,-1,19,23,28,-1,99,66,3,-1,84,144,145,-1,144,84,137,-1,123,25,143,-1,123,125,25,-1,123,110,125,-1,29,22,31,-1,29,28,22,-1,9,113,32,-1,9,12,113,-1,110,109,146,-1,110,31,109,-1,124,30,113,-1,147,30,124,-1,148,149,150,-1,151,149,148,-1,152,153,154,-1,155,153,152,-1,85,156,115,-1,157,156,85,-1,127,80,107,-1,127,108,80,-1,130,107,106,-1,130,129,107,-1,38,158,128,-1,158,38,126,-1,159,160,161,-1,159,162,160,-1,163,164,165,-1,164,163,152,-1,166,156,157,-1,166,167,156,-1,114,1,83,-1,120,1,114,-1,6,61,79,-1,61,6,131,-1,54,133,60,-1,54,53,133,-1,55,100,56,-1,100,55,102,-1,93,117,78,-1,95,117,93,-1,71,70,92,-1,71,135,70,-1,75,99,65,-1,74,99,75,-1,51,19,18,-1,19,51,50,-1,51,88,136,-1,18,88,51,-1,138,116,118,-1,138,78,116,-1,140,70,69,-1,140,74,70,-1,66,74,140,-1,99,74,66,-1,58,168,10,-1,73,168,58,-1,49,61,132,-1,62,61,49,-1,132,8,50,-1,132,131,8,-1,159,152,163,-1,152,159,155,-1,158,161,160,-1,161,158,167,-1,47,139,103,-1,139,47,165,-1,48,46,162,-1,48,44,46,-1,105,118,90,-1,118,103,138,-1,105,103,118,-1,107,39,127,-1,39,107,129,-1,104,90,34,-1,104,105,90,-1,145,166,157,-1,145,151,166,-1,164,154,147,-1,152,154,164,-1,150,153,148,-1,150,146,153,-1,149,121,24,-1,144,121,149,-1,123,29,110,-1,123,27,29,-1,111,20,28,-1,111,122,20,-1,145,85,84,-1,85,145,157,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=2 */
		private int[] getc2disc_Geo_8_35_coordIndex_2()
		{
			int[] value = {14,77,76,-1,168,77,14,-1,137,121,144,-1,137,81,121,-1,16,143,25,-1,16,26,143,-1,125,146,150,-1,125,110,146,-1,109,147,154,-1,109,30,147,-1,151,144,149,-1,145,144,151,-1,155,148,153,-1,169,148,155,-1,5,107,80,-1,36,107,5,-1,106,42,130,-1,142,42,106,-1,142,46,42,-1,160,128,158,-1,160,142,128,-1,163,162,159,-1,163,48,162,-1,165,13,139,-1,13,165,164,-1,167,169,161,-1,169,167,166,-1,49,89,141,-1,49,136,89,-1,141,62,49,-1,62,141,134,-1,91,64,63,-1,91,95,64,-1,170,101,119,-1,170,102,101,-1,93,65,64,-1,65,93,75,-1,168,72,77,-1,72,168,73,-1,100,170,140,-1,102,170,100,-1,10,14,11,-1,10,168,14,-1,67,80,108,-1,67,68,80,-1,92,72,71,-1,92,96,72,-1,77,96,78,-1,77,72,96,-1,140,98,66,-1,119,140,170,-1,119,98,140,-1,97,114,86,-1,114,97,120,-1,54,56,69,-1,54,134,56,-1,134,57,56,-1,57,134,141,-1,133,58,60,-1,133,73,58,-1,59,10,79,-1,59,58,10,-1,0,55,57,-1,0,2,55,-1,161,155,159,-1,155,161,169,-1,126,167,158,-1,167,126,156,-1,165,48,163,-1,165,47,48,-1,162,142,160,-1,162,46,142,-1,139,138,103,-1,139,76,138,-1,45,42,46,-1,45,43,42,-1,126,115,156,-1,87,115,126,-1,169,151,148,-1,166,151,169,-1,13,147,124,-1,164,147,13,-1,146,154,153,-1,146,109,154,-1,24,150,149,-1,24,125,150,-1,120,2,1,-1,101,2,120,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=1 */
		private int[] getc3_Geo_8_40_coordIndex_1()
		{
			int[] value = {0,1,2,-1,3,4,5,-1,6,7,8,-1,9,10,11,-1,12,13,14,-1,15,16,17,-1,18,19,20,-1,21,22,23,-1,24,25,26,-1,27,28,29,-1,30,31,32,-1,33,34,35,-1,36,37,38,-1,26,39,40,-1,41,42,43,-1,44,45,46,-1,47,48,49,-1,50,51,52,-1,53,54,55,-1,56,57,58,-1,59,60,61,-1,47,62,63,-1,64,65,66,-1,67,68,60,-1,49,69,62,-1,70,71,72,-1,73,74,75,-1,76,77,78,-1,67,56,79,-1,80,81,82,-1,83,84,85,-1,86,87,88,-1,89,90,91,-1,92,93,94,-1,95,96,97,-1,98,99,95,-1,100,101,102,-1,103,104,105,-1,106,103,107,-1,108,109,110,-1,111,112,113,-1,112,114,115,-1,116,117,118,-1,119,120,108,-1,121,119,122,-1,123,124,125,-1,126,127,128,-1,129,130,131,-1,132,133,134,-1,135,136,137,-1,138,139,140,-1,141,142,143,-1,142,144,129,-1,145,146,147,-1,148,149,150,-1,151,152,149,-1,51,153,154,-1,36,155,156,-1,157,158,159,-1,160,161,162,-1,2,1,163,-1,164,165,166,-1,167,168,169,-1,170,171,172,-1,173,174,175,-1,176,177,178,-1,179,180,181,-1,182,183,162,-1,184,185,186,-1,187,188,189,-1,190,150,149,-1,191,179,192,-1,193,194,195,-1,196,197,198,-1,199,200,6,-1,201,202,14,-1,203,166,174,-1,204,205,206,-1,207,208,209,-1,210,198,197,-1,211,212,213,-1,214,215,25,-1,216,217,55,-1,53,218,214,-1,11,217,216,-1,219,220,221,-1,222,223,44,-1,224,225,226,-1,227,228,224,-1,229,230,231,-1,229,232,233,-1,234,235,46,-1,66,226,225,-1,61,236,237,-1,238,239,240,-1,241,147,242,-1,195,243,244,-1,245,246,247,-1,241,248,249,-1,250,241,251,-1,252,253,192,-1,254,255,256,-1,257,133,132,-1,258,259,260,-1,185,261,262,-1,263,264,265,-1,106,266,103,-1,58,267,268,-1,269,268,270,-1,271,267,272,-1,269,270,273,-1,82,274,275,-1,118,276,128,-1,277,278,43,-1,279,34,280,-1,281,282,283,-1,165,164,284,-1,168,285,286,-1,287,288,283,-1,289,290,291,-1,292,293,294,-1,295,296,297,-1,298,299,167,-1,300,301,80,-1,302,298,303,-1,303,304,305,-1,306,307,308,-1,100,102,309,-1,310,311,312,-1,313,314,315,-1,316,107,317,-1,305,318,319,-1,319,320,302,-1,321,154,322,-1,323,324,325,-1,326,327,10,-1,328,329,330,-1,331,332,329,-1,333,334,335,-1,336,337,338,-1,339,340,341,-1,342,343,344,-1,345,346,347,-1,348,349,350,-1,351,352,353,-1,354,349,355,-1,356,357,358,-1,359,360,361,-1,362,363,364,-1,338,365,366,-1,69,367,368,-1,369,370,371,-1,372,373,374,-1,375,376,359,-1,377,378,379,-1,380,381,371,-1,359,376,69,-1,382,383,384,-1,385,386,387,-1,388,389,382,-1,390,371,381,-1,391,392,393,-1,394,395,396,-1,397,398,399,-1,400,401,402,-1,403,404,405,-1,406,407,408,-1,409,410,411,-1,412,413,414,-1,415,416,417,-1,418,417,419,-1,420,421,422,-1,423,424,425,-1,422,426,427,-1,428,429,430,-1,431,432,433,-1,434,426,422,-1,426,434,435,-1,436,124,123,-1,437,438,439,-1,440,441,442,-1,443,444,445,-1,446,447,448,-1,449,450,451,-1,452,453,454,-1,453,455,442,-1,456,457,458,-1,459,460,461,-1,461,447,462,-1,364,363,463,-1,464,340,465,-1,466,467,468,-1,469,470,471,-1,163,1,472,-1,473,474,475,-1,476,477,478,-1,479,480,481,-1,482,474,483,-1,484,485,486,-1,487,488,489,-1,469,490,491,-1,492,493,494,-1,495,496,497,-1,461,460,498,-1,499,489,500,-1,501,502,503,-1,368,367,504,-1,202,505,506,-1,368,507,508,-1,473,509,483,-1,510,511,512,-1,513,512,514,-1,515,516,517,-1,518,519,520,-1,436,521,518,-1,522,523,524,-1,522,525,523,-1,526,527,336,-1,352,528,529,-1,338,366,530,-1,531,532,533,-1,534,357,531,-1,535,536,537,-1,537,538,535,-1,539,540,541,-1,542,507,543,-1,544,545,543,-1,377,387,546,-1,536,535,547,-1,548,549,550,-1,551,552,374,-1,553,554,555,-1,489,499,471,-1,556,557,558,-1,559,558,560,-1,499,561,562,-1,560,563,564,-1,443,565,566,-1,567,568,569,-1,493,570,571,-1,572,573,574,-1,417,575,419,-1,576,577,369,-1,578,579,577,-1,580,581,582,-1,583,584,585,-1,586,587,391,-1,588,510,464,-1,589,339,590,-1,591,592,593,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=2 */
		private int[] getc3_Geo_8_40_coordIndex_2()
		{
			int[] value = {594,595,596,-1,597,475,598,-1,599,600,601,-1,591,602,603,-1,604,605,606,-1,607,495,608,-1,609,610,611,-1,612,613,614,-1,612,573,613,-1,615,616,617,-1,393,618,619,-1,620,617,621,-1,622,623,620,-1,624,625,626,-1,627,412,414,-1,628,629,630,-1,631,632,633,-1,634,418,635,-1,636,637,622,-1,638,639,640,-1,481,498,460,-1,641,474,642,-1,643,388,644,-1,645,364,646,-1,636,647,432,-1,435,434,648,-1,409,649,650,-1,413,410,651,-1,411,652,653,-1,654,404,403,-1,655,630,629,-1,656,657,398,-1,402,658,659,-1,660,661,627,-1,662,622,429,-1,615,617,620,-1,663,657,400,-1,664,663,394,-1,665,666,667,-1,613,573,668,-1,669,670,610,-1,615,496,476,-1,604,671,672,-1,603,673,674,-1,675,676,677,-1,678,599,679,-1,674,595,680,-1,679,677,681,-1,682,683,606,-1,684,685,686,-1,687,510,513,-1,655,585,688,-1,689,348,690,-1,530,582,691,-1,690,579,578,-1,577,576,584,-1,390,692,576,-1,577,579,693,-1,694,695,565,-1,448,696,697,-1,454,698,462,-1,699,562,700,-1,560,558,456,-1,701,702,501,-1,487,703,488,-1,502,501,702,-1,557,704,558,-1,705,706,707,-1,708,555,554,-1,379,378,709,-1,710,551,374,-1,550,555,711,-1,712,713,537,-1,534,714,715,-1,716,717,538,-1,693,712,536,-1,716,538,718,-1,719,720,356,-1,721,722,544,-1,723,724,720,-1,365,337,532,-1,202,725,726,-1,327,326,529,-1,352,727,527,-1,728,729,341,-1,687,513,730,-1,731,732,733,-1,514,512,734,-1,735,734,512,-1,473,736,509,-1,737,542,738,-1,504,367,739,-1,740,498,741,-1,642,460,459,-1,742,743,569,-1,744,485,458,-1,468,467,480,-1,593,475,597,-1,745,746,732,-1,598,474,747,-1,566,748,749,-1,466,744,750,-1,751,703,752,-1,471,490,469,-1,744,753,486,-1,744,466,753,-1,687,341,340,-1,598,754,755,-1,515,756,463,-1,757,643,758,-1,759,635,418,-1,442,759,440,-1,696,448,447,-1,760,441,440,-1,451,454,462,-1,761,762,696,-1,648,445,444,-1,446,445,449,-1,763,441,764,-1,755,647,765,-1,572,492,470,-1,766,433,767,-1,433,432,647,-1,768,660,624,-1,769,622,637,-1,425,770,417,-1,634,635,771,-1,772,619,665,-1,411,773,406,-1,774,650,775,-1,407,776,408,-1,777,630,633,-1,404,778,405,-1,396,779,780,-1,392,394,393,-1,586,391,667,-1,546,781,384,-1,782,645,640,-1,373,370,693,-1,546,384,378,-1,383,382,389,-1,386,644,781,-1,370,373,372,-1,693,783,710,-1,784,785,786,-1,580,582,350,-1,691,787,338,-1,584,583,346,-1,788,347,346,-1,789,667,666,-1,465,340,790,-1,791,738,792,-1,793,794,795,-1,335,796,328,-1,506,797,329,-1,798,326,726,-1,726,799,798,-1,800,798,801,-1,802,803,804,-1,793,805,323,-1,806,794,323,-1,807,159,808,-1,809,175,209,-1,810,78,811,-1,812,74,321,-1,813,322,154,-1,319,814,815,-1,107,103,317,-1,816,110,817,-1,818,119,121,-1,819,820,99,-1,821,98,101,-1,822,823,824,-1,94,93,825,-1,826,312,827,-1,828,829,830,-1,831,89,91,-1,832,308,309,-1,115,114,305,-1,303,298,833,-1,301,834,80,-1,835,836,837,-1,838,839,263,-1,293,840,841,-1,169,188,833,-1,842,843,844,-1,845,846,286,-1,843,842,847,-1,848,299,298,-1,849,850,845,-1,851,291,852,-1,853,854,855,-1,204,856,857,-1,858,273,827,-1,859,272,860,-1,220,861,221,-1,272,862,860,-1,270,268,267,-1,863,268,864,-1,865,866,267,-1,266,106,867,-1,868,869,870,-1,257,871,133,-1,872,873,135,-1,151,142,141,-1,162,161,264,-1,256,147,250,-1,874,195,194,-1,241,875,248,-1,876,877,878,-1,240,239,879,-1,880,64,881,-1,882,59,883,-1,884,236,61,-1,225,224,862,-1,885,886,222,-1,227,887,888,-1,862,866,865,-1,889,225,865,-1,890,228,227,-1,891,24,219,-1,892,893,894,-1,202,10,9,-1,895,217,11,-1,54,896,55,-1,33,35,39,-1,204,857,897,-1,170,898,899,-1,212,211,900,-1,901,165,902,-1,903,206,205,-1,208,207,206,-1,174,901,209,-1,368,230,904,-1,19,905,231,-1,63,62,906,-1,906,907,908,-1,195,909,243,-1,910,193,875,-1,152,911,808,-1,912,150,809,-1,260,259,868,-1,839,182,264,-1,913,914,145,-1,158,898,159,-1,164,166,281,-1,284,164,281,-1,915,900,746,-1,916,203,173,-1,917,914,807,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=3 */
		private int[] getc3_Geo_8_40_coordIndex_3()
		{
			int[] value = {918,246,919,-1,184,920,247,-1,183,252,160,-1,176,157,807,-1,33,897,857,-1,118,902,165,-1,197,921,922,-1,923,811,924,-1,316,925,926,-1,926,925,129,-1,136,135,911,-1,151,149,148,-1,131,130,927,-1,903,928,929,-1,809,209,930,-1,138,136,151,-1,917,808,911,-1,931,134,140,-1,140,134,137,-1,133,137,134,-1,932,130,148,-1,320,116,118,-1,161,186,264,-1,276,117,933,-1,116,815,117,-1,832,115,934,-1,305,302,303,-1,817,935,936,-1,104,103,937,-1,105,938,316,-1,836,300,837,-1,939,95,940,-1,819,821,941,-1,96,817,97,-1,313,312,311,-1,92,942,93,-1,943,944,83,-1,80,85,81,-1,835,82,275,-1,71,70,945,-1,813,946,888,-1,57,59,882,-1,64,71,945,-1,76,72,238,-1,70,810,74,-1,59,57,56,-1,882,889,865,-1,947,948,949,-1,950,861,951,-1,219,952,220,-1,32,953,273,-1,953,31,274,-1,37,835,954,-1,38,280,36,-1,219,26,40,-1,905,19,955,-1,956,955,19,-1,957,958,959,-1,16,201,960,-1,961,12,14,-1,961,11,216,-1,15,8,7,-1,957,3,962,-1,963,3,964,-1,472,1,564,-1,1,0,564,-1,963,4,3,-1,957,964,3,-1,15,20,8,-1,892,961,216,-1,961,14,9,-1,9,11,961,-1,16,965,201,-1,960,13,21,-1,959,964,957,-1,19,966,956,-1,952,219,40,-1,280,155,36,-1,37,954,38,-1,28,277,967,-1,32,273,270,-1,26,25,215,-1,234,45,968,-1,224,969,970,-1,971,968,45,-1,25,972,54,-1,947,53,948,-1,56,60,59,-1,238,77,76,-1,64,945,65,-1,865,57,882,-1,322,813,888,-1,70,76,810,-1,76,78,810,-1,865,58,57,-1,835,837,82,-1,85,84,81,-1,86,828,87,-1,83,88,943,-1,942,973,93,-1,311,314,313,-1,817,936,97,-1,941,974,819,-1,940,822,939,-1,831,975,89,-1,105,316,317,-1,104,937,936,-1,817,109,935,-1,934,308,832,-1,105,104,976,-1,815,933,117,-1,109,817,110,-1,276,933,977,-1,148,912,932,-1,133,871,137,-1,137,138,140,-1,931,140,818,-1,911,873,917,-1,151,141,138,-1,208,903,929,-1,130,932,978,-1,144,151,148,-1,136,911,152,-1,131,926,129,-1,107,316,926,-1,923,924,979,-1,197,196,921,-1,165,980,118,-1,155,33,857,-1,176,807,913,-1,160,162,183,-1,247,981,184,-1,257,918,919,-1,914,913,807,-1,869,246,918,-1,901,174,165,-1,746,745,915,-1,284,281,288,-1,898,172,159,-1,145,177,913,-1,839,264,263,-1,868,982,260,-1,152,808,190,-1,193,195,244,-1,193,244,875,-1,907,904,908,-1,203,983,166,-1,206,903,208,-1,205,210,903,-1,900,984,212,-1,899,985,170,-1,897,986,204,-1,39,897,33,-1,54,972,896,-1,327,895,11,-1,202,9,14,-1,22,892,894,-1,891,219,987,-1,234,968,235,-1,233,988,989,-1,45,234,46,-1,890,990,228,-1,225,862,865,-1,227,888,890,-1,885,222,990,-1,224,970,862,-1,61,991,884,-1,883,237,882,-1,881,992,880,-1,878,884,876,-1,241,242,875,-1,147,177,145,-1,195,874,909,-1,147,241,250,-1,151,144,142,-1,873,911,135,-1,257,993,871,-1,869,918,870,-1,994,266,867,-1,865,267,58,-1,863,864,79,-1,267,271,270,-1,272,866,862,-1,860,995,859,-1,858,269,273,-1,856,156,857,-1,27,34,279,-1,853,855,996,-1,849,845,997,-1,848,298,998,-1,847,999,843,-1,845,286,1000,-1,850,1001,1002,-1,844,287,842,-1,1003,290,289,-1,169,833,167,-1,841,294,293,-1,838,263,296,-1,835,37,836,-1,85,834,1004,-1,115,305,1005,-1,309,1006,832,-1,100,309,307,-1,91,1007,831,-1,830,87,828,-1,1008,826,827,-1,822,824,939,-1,1009,821,101,-1,97,315,940,-1,121,931,818,-1,816,817,820,-1,815,116,319,-1,154,153,813,-1,74,923,321,-1,78,927,811,-1,175,174,209,-1,808,917,807,-1,323,1010,806,-1,323,794,793,-1,802,804,331,-1,800,326,798,-1,726,725,799,-1,328,506,329,-1,795,1011,793,-1,792,1012,791,-1,792,738,542,-1,340,339,790,-1,790,789,666,-1,581,1013,344,-1,584,346,345,-1,1014,336,1015,-1,724,356,720,-1,713,358,537,-1,356,724,366,-1,527,727,336,-1,786,1016,784,-1,370,372,371,-1,383,389,553,-1,377,546,378,-1,710,373,693,-1,717,782,640,-1,370,369,693,-1,391,772,667,-1,392,395,394,-1,398,657,399,-1,780,397,396,-1,404,1017,778,-1,633,632,777,-1,407,425,776,-1,774,651,650,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=4 */
		private int[] getc3_Geo_8_40_coordIndex_4()
		{
			int[] value = {411,406,1018,-1,402,1019,658,-1,634,771,415,-1,425,417,416,-1,620,621,622,-1,769,429,622,-1,768,428,660,-1,423,416,415,-1,647,767,433,-1,427,776,420,-1,766,767,1020,-1,764,459,763,-1,446,449,451,-1,648,449,445,-1,696,741,761,-1,462,447,451,-1,1021,641,642,-1,1022,764,441,-1,763,461,698,-1,461,462,698,-1,447,740,696,-1,442,455,759,-1,759,455,635,-1,757,1023,643,-1,463,1024,515,-1,598,755,1025,-1,687,1026,341,-1,471,562,490,-1,494,751,752,-1,466,750,761,-1,483,509,1027,-1,732,1028,745,-1,597,602,593,-1,593,473,475,-1,480,479,468,-1,458,750,744,-1,569,1029,742,-1,741,696,740,-1,1030,501,503,-1,1031,701,501,-1,540,504,739,-1,739,376,375,-1,504,507,368,-1,641,747,474,-1,512,511,735,-1,514,734,517,-1,754,598,747,-1,733,520,731,-1,730,1026,687,-1,341,1026,728,-1,527,528,352,-1,529,895,327,-1,726,10,202,-1,365,338,337,-1,718,1032,716,-1,693,536,783,-1,693,579,712,-1,717,1033,538,-1,715,1032,534,-1,712,537,536,-1,547,535,377,-1,711,548,550,-1,710,374,373,-1,709,1034,379,-1,707,711,705,-1,704,1035,558,-1,458,485,456,-1,487,752,703,-1,560,456,563,-1,572,470,469,-1,562,561,700,-1,454,453,698,-1,696,762,697,-1,694,1036,695,-1,369,577,693,-1,390,576,1037,-1,584,1038,577,-1,690,712,579,-1,689,690,578,-1,655,583,585,-1,687,464,510,-1,1039,590,342,-1,1040,684,686,-1,1041,679,681,-1,1042,617,1043,-1,617,616,1043,-1,674,596,595,-1,679,1044,678,-1,674,680,603,-1,476,478,615,-1,669,610,609,-1,573,1045,668,-1,772,665,667,-1,393,663,618,-1,400,1046,663,-1,662,429,428,-1,660,627,624,-1,625,627,414,-1,659,400,402,-1,656,1047,657,-1,655,629,1048,-1,411,653,773,-1,413,651,1049,-1,406,631,407,-1,648,444,435,-1,634,417,418,-1,432,1050,636,-1,646,640,645,-1,643,760,388,-1,474,482,642,-1,481,480,498,-1,640,646,638,-1,622,621,636,-1,425,631,770,-1,408,776,649,-1,406,1051,631,-1,633,770,631,-1,628,630,777,-1,659,658,412,-1,624,627,625,-1,622,662,623,-1,394,663,393,-1,619,772,393,-1,615,478,616,-1,612,574,573,-1,612,614,497,-1,609,611,614,-1,591,603,680,-1,678,477,1052,-1,679,675,677,-1,598,1025,597,-1,594,596,1053,-1,593,602,591,-1,1054,1040,347,-1,589,590,1039,-1,1040,686,1055,-1,586,788,587,-1,581,691,582,-1,578,577,1038,-1,1037,576,369,-1,417,688,575,-1,574,570,572,-1,571,1056,493,-1,567,569,743,-1,742,749,1057,-1,443,694,565,-1,447,446,451,-1,1058,560,564,-1,562,471,499,-1,499,1059,1060,-1,1030,1031,501,-1,1035,456,558,-1,555,550,553,-1,551,1061,552,-1,547,783,536,-1,719,723,720,-1,543,539,544,-1,542,737,507,-1,539,504,540,-1,537,718,538,-1,531,533,534,-1,1062,1063,721,-1,531,365,532,-1,530,691,338,-1,800,529,326,-1,352,529,800,-1,336,1014,526,-1,524,1064,522,-1,518,520,733,-1,517,1065,515,-1,513,510,512,-1,474,473,483,-1,725,202,506,-1,1066,200,199,-1,499,500,1059,-1,498,740,461,-1,469,491,572,-1,470,752,487,-1,1067,1068,1069,-1,488,500,489,-1,486,1070,484,-1,481,1071,479,-1,683,676,671,-1,476,1052,477,-1,474,598,475,-1,472,1072,163,-1,1057,703,751,-1,466,468,753,-1,485,744,486,-1,464,687,340,-1,463,646,364,-1,1022,441,760,-1,461,740,447,-1,459,461,763,-1,459,1021,642,-1,442,698,453,-1,454,1073,452,-1,446,448,1036,-1,445,694,443,-1,764,1021,459,-1,439,1020,437,-1,525,522,1074,-1,426,435,1075,-1,566,1076,443,-1,434,422,1077,-1,433,1078,431,-1,755,767,647,-1,428,430,660,-1,1046,430,1079,-1,425,416,423,-1,631,425,407,-1,422,427,420,-1,417,634,415,-1,1051,405,778,-1,411,1018,409,-1,406,408,1018,-1,652,411,1019,-1,396,664,394,-1,391,393,772,-1,390,1037,371,-1,388,1080,389,-1,382,384,781,-1,69,49,359,-1,372,380,371,-1,547,377,379,-1,375,359,361,-1,550,383,553,-1,374,552,372,-1,369,371,1037,-1,362,364,360,-1,49,1081,359,-1,719,356,358,-1,356,531,357,-1,354,1082,349,-1,790,666,465,-1,729,590,341,-1,345,347,1083,-1,344,1013,342,-1,341,590,339,-1,438,465,666,-1,338,1015,336,-1,332,330,329,-1,725,796,799,-1,326,10,726,-1,803,802,1066,-1,325,1010,323,-1,322,812,321,-1,319,116,320,-1,319,302,305,-1,937,315,936,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=5 */
		private int[] getc3_Geo_8_40_coordIndex_5()
		{
			int[] value = {820,817,96,-1,315,1084,940,-1,315,937,313,-1,312,826,310,-1,102,831,1007,-1,307,309,308,-1,304,1005,305,-1,80,834,85,-1,80,837,300,-1,167,833,298,-1,297,187,295,-1,294,295,292,-1,1085,189,1086,-1,283,842,287,-1,1087,1088,846,-1,845,850,1002,-1,165,284,980,-1,283,288,281,-1,31,996,1089,-1,279,280,1090,-1,277,43,42,-1,996,1091,1092,-1,156,856,1093,-1,118,117,276,-1,82,1094,274,-1,267,866,272,-1,269,864,268,-1,58,268,863,-1,266,858,103,-1,265,1095,263,-1,185,262,265,-1,260,1096,258,-1,1097,869,868,-1,132,918,257,-1,138,137,136,-1,256,250,254,-1,192,160,252,-1,1098,1099,192,-1,180,245,247,-1,160,192,179,-1,238,1100,239,-1,883,61,237,-1,1100,1101,880,-1,66,225,889,-1,945,73,65,-1,229,233,1102,-1,229,231,905,-1,224,226,227,-1,222,44,1103,-1,989,1104,1105,-1,221,971,219,-1,53,214,54,-1,216,55,896,-1,214,25,54,-1,1106,1107,1108,-1,1109,1110,125,-1,211,213,1109,-1,197,1111,210,-1,209,901,207,-1,206,856,204,-1,206,207,856,-1,174,173,203,-1,508,230,368,-1,201,505,202,-1,904,907,368,-1,218,196,198,-1,1099,191,192,-1,149,152,190,-1,264,182,162,-1,181,920,161,-1,910,1112,245,-1,179,191,180,-1,178,1113,176,-1,898,170,172,-1,290,1001,291,-1,167,285,168,-1,165,174,166,-1,163,1114,2,-1,981,247,1097,-1,157,159,807,-1,176,913,177,-1,155,857,156,-1,154,921,51,-1,927,130,978,-1,151,136,152,-1,148,150,912,-1,809,930,912,-1,142,129,925,-1,142,1115,143,-1,871,135,137,-1,132,134,931,-1,912,930,932,-1,128,276,126,-1,1074,1106,525,-1,1116,121,122,-1,132,870,918,-1,108,122,119,-1,115,832,112,-1,110,122,108,-1,97,936,315,-1,108,1117,109,-1,105,317,103,-1,942,92,1084,-1,95,939,98,-1,95,97,940,-1,975,939,824,-1,85,1004,83,-1,837,80,82,-1,56,863,79,-1,77,1118,78,-1,70,72,76,-1,62,47,49,-1,56,67,60,-1,881,64,66,-1,1119,47,63,-1,238,72,1100,-1,61,883,59,-1,863,56,58,-1,53,55,948,-1,368,907,69,-1,971,987,219,-1,50,153,51,-1,1119,50,47,-1,41,1120,42,-1,26,215,39,-1,1121,896,1122,-1,950,1120,995,-1,31,953,32,-1,27,277,28,-1,37,36,127,-1,26,219,24,-1,18,966,19,-1,17,1123,15,-1,17,16,960,-1,10,327,11,-1,5,1124,3,-1,2,255,0,-1,965,15,7,-1,965,16,15,-1,21,17,960,-1,21,1125,17,-1,963,959,1126,-1,963,964,959,-1,1127,4,1128,-1,5,4,1127,-1,1129,1127,1130,-1,1131,1127,1129,-1,959,18,1123,-1,958,18,959,-1,1132,956,1129,-1,956,1132,955,-1,155,34,33,-1,280,34,155,-1,1133,859,1134,-1,1133,1135,859,-1,1136,25,24,-1,1136,972,25,-1,952,29,28,-1,952,40,29,-1,235,221,970,-1,968,221,235,-1,971,221,968,-1,1137,1136,1138,-1,1136,1137,1122,-1,1105,1139,886,-1,1139,1105,1104,-1,885,890,1140,-1,885,990,890,-1,237,1141,992,-1,1141,237,236,-1,1142,876,1143,-1,1142,877,876,-1,74,945,70,-1,74,73,945,-1,1143,867,1142,-1,1143,994,867,-1,313,827,312,-1,313,858,827,-1,310,1144,1145,-1,310,826,1144,-1,982,1146,260,-1,982,1147,1146,-1,975,102,101,-1,975,831,102,-1,1148,941,1149,-1,1148,974,941,-1,935,104,936,-1,976,104,935,-1,1148,816,974,-1,816,1148,1116,-1,1150,132,1151,-1,1150,870,132,-1,977,126,276,-1,126,977,1152,-1,1153,143,1154,-1,1153,139,143,-1,208,930,209,-1,208,929,930,-1,130,144,148,-1,129,144,130,-1,107,1155,1156,-1,107,926,1155,-1,979,321,923,-1,321,979,922,-1,922,1111,197,-1,1111,922,979,-1,1157,118,128,-1,118,1157,902,-1,1158,1159,1160,-1,1158,1161,1159,-1,993,919,1162,-1,993,257,919,-1,176,1163,157,-1,1163,176,1113,-1,983,916,1164,-1,916,983,203,-1,1165,1166,1167,-1,1166,1165,1168,-1,281,983,282,-1,281,166,983,-1,1086,168,1088,-1,1086,169,168,-1,1169,852,1170,-1,1165,852,1169,-1,875,1171,1172,-1,875,242,1171,-1,1099,909,874,-1,1098,909,1099,-1,1098,249,909,-1,928,979,924,-1,979,928,1111,-1,908,63,906,-1,908,1173,63,-1,6,231,199,-1,6,8,231,-1,907,62,69,-1,62,907,906,-1,211,746,900,-1,1174,746,211,-1,170,213,173,-1,213,170,985,-1,985,1107,1110,-1,985,899,1107,-1,125,1175,1109,-1,125,124,1175,-1,523,1106,1108,-1,523,525,1106,-1,1176,204,986,-1,1176,205,204,-1,1177,948,1178,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=6 */
		private int[] getc3_Geo_8_40_coordIndex_6()
		{
			int[] value = {949,948,1177,-1,40,35,29,-1,39,35,40,-1,988,1122,1137,-1,988,1121,1122,-1,44,891,987,-1,223,891,44,-1,1140,888,946,-1,890,888,1140,-1,1105,1179,989,-1,1179,1105,1180,-1,1100,992,1141,-1,880,992,1100,-1,991,60,68,-1,991,61,60,-1,64,1101,71,-1,64,880,1101,-1,1171,1181,1182,-1,146,1181,1171,-1,1183,1184,1185,-1,1183,251,1184,-1,1186,183,182,-1,1159,183,1186,-1,1187,1188,1185,-1,1188,1187,1189,-1,818,139,1153,-1,140,139,818,-1,135,993,872,-1,993,135,871,-1,1190,1186,1191,-1,1190,1192,1186,-1,79,266,994,-1,79,864,266,-1,967,861,220,-1,861,967,951,-1,1092,853,996,-1,1092,1193,853,-1,1134,1092,1133,-1,1134,1193,1092,-1,279,853,278,-1,1090,853,279,-1,1090,854,853,-1,1001,849,1170,-1,1001,850,849,-1,1194,847,1195,-1,1194,999,847,-1,849,1196,1197,-1,997,1196,849,-1,1198,1169,1197,-1,1199,1169,1198,-1,1200,1201,1202,-1,1203,1201,1200,-1,745,1204,915,-1,745,1205,1204,-1,980,320,118,-1,980,998,320,-1,286,999,1000,-1,843,999,286,-1,1002,846,845,-1,1002,1087,846,-1,1206,293,1207,-1,1206,840,293,-1,169,189,188,-1,169,1086,189,-1,838,841,1208,-1,841,838,294,-1,297,263,1095,-1,296,263,297,-1,1096,115,1005,-1,1096,934,115,-1,301,113,834,-1,301,111,113,-1,91,829,828,-1,91,90,829,-1,81,1094,82,-1,81,1144,1094,-1,823,92,94,-1,92,823,822,-1,1009,941,821,-1,941,1009,1209,-1,820,95,99,-1,820,96,95,-1,1148,121,1116,-1,1148,1151,121,-1,818,815,814,-1,815,818,1153,-1,318,814,319,-1,318,120,814,-1,74,811,923,-1,74,810,811,-1,809,171,175,-1,809,150,171,-1,48,1210,49,-1,48,1177,1210,-1,797,505,1211,-1,797,506,505,-1,506,796,725,-1,506,328,796,-1,806,1212,1213,-1,1010,1212,806,-1,1214,793,1011,-1,1214,805,793,-1,1215,1216,1217,-1,1215,324,1216,-1,1012,1214,791,-1,1012,1217,1214,-1,1218,738,791,-1,804,738,1218,-1,1012,1219,1220,-1,792,1219,1012,-1,1082,350,349,-1,580,350,1082,-1,667,1054,586,-1,667,789,1054,-1,583,1048,346,-1,583,655,1048,-1,1015,728,1014,-1,1221,728,1015,-1,530,723,713,-1,530,724,723,-1,724,530,366,-1,337,1222,532,-1,1223,1222,337,-1,1224,715,1225,-1,1224,1226,715,-1,548,551,1034,-1,1061,551,548,-1,706,1227,1228,-1,706,705,1227,-1,546,386,781,-1,546,387,386,-1,1229,1228,1227,-1,1229,1230,1228,-1,655,633,630,-1,655,688,633,-1,1231,628,1232,-1,1231,629,628,-1,1233,1029,569,-1,1233,1234,1029,-1,412,1019,413,-1,412,658,1019,-1,774,1235,1236,-1,774,775,1235,-1,624,1233,768,-1,1233,624,626,-1,1237,423,415,-1,1238,423,1237,-1,443,1239,1240,-1,443,1076,1239,-1,439,766,1020,-1,1241,766,439,-1,1073,431,1078,-1,1073,450,431,-1,1021,735,641,-1,1021,1242,735,-1,698,441,763,-1,441,698,442,-1,1243,418,1244,-1,1243,759,418,-1,638,757,758,-1,756,757,638,-1,1065,756,515,-1,757,756,1065,-1,755,1245,437,-1,754,1245,755,-1,1246,1158,1160,-1,1246,699,1158,-1,1247,695,1248,-1,1247,565,695,-1,1249,486,753,-1,1070,486,1249,-1,1027,736,1250,-1,509,736,1027,-1,1166,1251,1252,-1,1168,1251,1166,-1,736,593,592,-1,736,473,593,-1,1052,607,600,-1,1052,476,607,-1,682,1253,1254,-1,1253,682,1251,-1,1255,704,1256,-1,1255,1035,704,-1,701,1059,702,-1,701,1060,1059,-1,701,556,1060,-1,516,1024,1257,-1,516,515,1024,-1,619,1258,1238,-1,619,618,1258,-1,805,324,323,-1,805,1216,324,-1,746,733,732,-1,733,746,1174,-1,519,1071,483,-1,1259,1071,519,-1,1064,1259,521,-1,1064,1260,1259,-1,513,1261,730,-1,513,514,1261,-1,527,1257,785,-1,527,526,1257,-1,1262,1210,1263,-1,1262,1264,1210,-1,798,334,801,-1,334,798,799,-1,1265,545,544,-1,1265,1266,545,-1,721,1267,722,-1,1063,1267,721,-1,717,1226,782,-1,1226,717,716,-1,357,1032,718,-1,357,534,1032,-1,1034,710,379,-1,1034,551,710,-1,708,711,555,-1,705,711,708,-1,485,563,456,-1,485,484,563,-1,1068,1248,1256,-1,1068,1247,1248,-1,1268,1269,1270,-1,1268,559,1269,-1,490,1271,491,-1,1271,490,1246,-1,1188,1272,1270,-1,1189,1272,1188,-1,450,648,431,-1,648,450,449,-1,695,448,697,-1,1036,448,695,-1,1271,1190,1273,-1,1271,1192,1190,-1,575,390,1230,-1,575,692,390,-1,713,690,530,-1,713,712,690,-1,1274,1040,1055,-1,1274,1275,1040,-1,1274,1276,1277,-1,1274,1055,1276,-1,686,1039,1278,-1,686,589,1039,-1,686,685,589,-1,681,676,1254,-1,681,677,676,-1,1053,1279,1280,-1,1281,1279,1053,-1,682,1252,1251,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=7 */
		private int[] getc3_Geo_8_40_coordIndex_7()
		{
			int[] value = {1252,682,606,-1,1282,1279,1283,-1,1284,1279,1282,-1,594,1285,1286,-1,594,1287,1285,-1,1288,1289,1286,-1,1290,1289,1288,-1,591,595,1289,-1,680,595,591,-1,599,675,679,-1,599,601,675,-1,1291,1166,1252,-1,1292,1166,1291,-1,670,1293,1294,-1,1293,670,669,-1,1045,1295,668,-1,1045,1273,1295,-1,428,568,662,-1,428,768,568,-1,1046,618,663,-1,1046,1079,618,-1,1047,400,657,-1,1047,401,400,-1,587,392,391,-1,587,1231,392,-1,405,653,403,-1,773,653,405,-1,774,1049,651,-1,1296,1049,774,-1,1018,649,409,-1,1018,408,649,-1,435,1235,1075,-1,435,1240,1235,-1,432,648,1050,-1,431,648,432,-1,1050,637,636,-1,1050,1077,637,-1,1081,1016,362,-1,1264,1016,1081,-1,1242,764,1022,-1,1021,764,1242,-1,467,498,480,-1,467,741,498,-1,741,466,761,-1,467,466,741,-1,617,765,621,-1,617,1042,765,-1,422,1079,769,-1,422,421,1079,-1,1079,1258,618,-1,1079,421,1258,-1,452,1078,1297,-1,452,1073,1078,-1,1051,632,631,-1,1051,778,632,-1,395,1231,1232,-1,1231,395,392,-1,662,567,623,-1,662,568,567,-1,620,1298,615,-1,1298,620,623,-1,609,613,668,-1,614,613,609,-1,497,611,495,-1,614,611,497,-1,1294,1291,670,-1,1291,1294,1292,-1,1043,1025,1042,-1,1043,597,1025,-1,1028,1286,1285,-1,1288,1286,1028,-1,1287,1205,1285,-1,1287,1200,1205,-1,1283,1198,1282,-1,1283,1299,1198,-1,1299,1254,1253,-1,1254,1299,681,-1,1287,1053,1280,-1,1053,1287,594,-1,339,685,790,-1,685,339,589,-1,1275,1277,1083,-1,1275,1274,1277,-1,354,686,1278,-1,355,686,354,-1,355,1055,686,-1,754,511,1245,-1,754,747,511,-1,419,1230,1229,-1,419,575,1230,-1,1271,1045,491,-1,1045,1271,1273,-1,567,1056,571,-1,567,743,1056,-1,566,742,1076,-1,566,749,742,-1,1189,700,1272,-1,1300,700,1189,-1,0,1058,564,-1,1301,1058,0,-1,559,1058,1269,-1,559,560,1058,-1,499,1302,561,-1,499,1060,1302,-1,1303,1256,1248,-1,1256,1303,1255,-1,706,1304,707,-1,380,1304,706,-1,385,377,535,-1,385,387,377,-1,537,357,718,-1,537,358,357,-1,545,542,543,-1,545,792,542,-1,782,1224,375,-1,1226,1224,782,-1,691,344,787,-1,344,691,581,-1,1263,529,1262,-1,529,1263,895,-1,1261,1257,526,-1,1261,516,1257,-1,521,522,1064,-1,522,521,436,-1,1260,524,1305,-1,524,1260,1064,-1,1249,468,1305,-1,1249,753,468,-1,520,1250,731,-1,520,1027,1250,-1,514,516,1261,-1,514,517,516,-1,507,199,508,-1,507,737,199,-1,1211,802,797,-1,1211,1306,802,-1,430,769,1079,-1,429,769,430,-1,786,1257,1024,-1,1257,786,785,-1,701,557,556,-1,701,1031,557,-1,1030,1069,704,-1,1030,503,1069,-1,494,1056,751,-1,493,1056,494,-1,491,573,572,-1,573,491,1045,-1,1069,1256,704,-1,1068,1256,1069,-1,1072,484,1070,-1,472,484,1072,-1,672,601,608,-1,672,675,601,-1,683,1254,676,-1,683,682,1254,-1,673,1043,616,-1,1043,673,603,-1,1288,732,731,-1,732,1288,1028,-1,697,1248,695,-1,1303,1248,697,-1,470,494,752,-1,492,494,470,-1,1023,1242,1022,-1,1023,1307,1242,-1,440,388,760,-1,440,1080,388,-1,1307,735,1242,-1,1307,734,735,-1,750,457,1308,-1,457,750,458,-1,455,452,635,-1,452,455,453,-1,446,694,445,-1,446,1036,694,-1,1237,439,665,-1,1237,1241,439,-1,1029,1076,742,-1,1076,1029,1239,-1,434,1050,648,-1,434,1077,1050,-1,1238,665,619,-1,1238,1237,665,-1,427,1075,1309,-1,426,1075,427,-1,420,425,424,-1,425,420,776,-1,1051,773,405,-1,773,1051,406,-1,401,653,652,-1,401,1047,653,-1,1234,626,1296,-1,1233,626,1234,-1,1231,1048,629,-1,1231,587,1048,-1,656,397,780,-1,398,397,656,-1,402,652,1019,-1,401,652,402,-1,396,399,664,-1,396,397,399,-1,1230,381,1228,-1,1230,390,381,-1,389,1243,1310,-1,1080,1243,389,-1,1033,386,385,-1,1033,639,386,-1,705,1311,1227,-1,1311,705,708,-1,1225,540,1224,-1,1225,541,540,-1,1063,1222,1267,-1,1063,1312,1222,-1,365,356,366,-1,365,531,356,-1,786,362,1016,-1,363,362,786,-1,361,364,645,-1,360,364,361,-1,723,358,713,-1,723,719,358,-1,351,727,352,-1,727,351,1223,-1,347,586,1054,-1,788,586,347,-1,1276,348,689,-1,348,1276,349,-1,729,342,590,-1,729,343,342,-1,1221,338,787,-1,1221,1015,338,-1,1313,1219,333,-1,1219,1313,1220,-1,791,1011,1218,-1,791,1214,1011,-1,1212,1313,1314,-1,1313,1212,1315,-1,1217,805,1214,-1,1217,1216,805,-1,150,172,171,-1,150,190,172,-1,977,1154,1316,-1,1154,977,933,-1,105,1152,938,-1,105,1317,1152,-1,314,1084,315,-1,314,942,1084,-1,1144,84,1145,-1,81,84,1144,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=8 */
		private int[] getc3_Geo_8_40_coordIndex_8()
		{
			int[] value = {834,91,828,-1,834,113,91,-1,833,1095,1318,-1,833,297,1095,-1,1319,1191,1208,-1,1319,1190,1191,-1,1208,1293,1319,-1,1293,1208,841,-1,1207,292,289,-1,1207,293,292,-1,1167,1207,851,-1,1207,1167,1206,-1,286,1088,168,-1,846,1088,286,-1,980,848,998,-1,980,284,848,-1,1320,915,1204,-1,915,1320,1321,-1,1205,1202,1204,-1,1205,1200,1202,-1,1198,1196,1282,-1,1198,1197,1196,-1,1170,1197,1169,-1,849,1197,1170,-1,1194,1202,1201,-1,1195,1202,1194,-1,854,280,38,-1,1090,280,854,-1,1133,1091,30,-1,1133,1092,1091,-1,853,43,278,-1,853,41,43,-1,853,1193,41,-1,207,902,1157,-1,207,901,902,-1,1318,265,262,-1,265,1318,1095,-1,186,265,264,-1,186,185,265,-1,1146,1096,260,-1,1096,1146,934,-1,1322,1189,1187,-1,1189,1322,1300,-1,254,0,255,-1,0,254,1301,-1,1185,1323,1187,-1,1185,1184,1323,-1,251,249,1184,-1,251,241,249,-1,920,180,247,-1,180,920,181,-1,1172,1182,1162,-1,1171,1182,1172,-1,991,876,884,-1,876,991,68,-1,65,226,66,-1,65,75,226,-1,65,73,75,-1,989,1102,233,-1,1102,989,1179,-1,1102,230,229,-1,1102,904,230,-1,886,223,222,-1,886,1139,223,-1,1139,891,223,-1,1139,1138,891,-1,1121,233,893,-1,233,1121,988,-1,217,1263,1178,-1,895,1263,217,-1,218,1176,214,-1,218,198,1176,-1,1106,1110,1107,-1,125,1110,1106,-1,1108,899,1324,-1,1107,899,1108,-1,158,1163,1324,-1,158,157,1163,-1,1132,22,894,-1,23,22,1132,-1,955,894,232,-1,1132,894,955,-1,874,191,1099,-1,874,194,191,-1,261,184,981,-1,184,261,185,-1,146,242,147,-1,1171,242,146,-1,180,910,245,-1,191,910,180,-1,175,170,173,-1,170,175,171,-1,1088,1085,1086,-1,1085,1088,1087,-1,282,1164,1325,-1,282,983,1164,-1,843,285,844,-1,843,286,285,-1,1113,1326,1163,-1,1326,1113,1114,-1,184,161,920,-1,161,184,186,-1,156,127,36,-1,156,1093,127,-1,922,154,321,-1,154,922,921,-1,1316,316,938,-1,1316,1115,316,-1,139,141,143,-1,138,141,139,-1,126,1317,836,-1,126,1152,1317,-1,870,982,868,-1,1150,982,870,-1,814,119,818,-1,814,120,119,-1,836,1327,300,-1,836,1317,1327,-1,1149,1209,1147,-1,941,1209,1149,-1,822,1084,92,-1,940,1084,822,-1,823,90,824,-1,823,829,90,-1,306,1147,1209,-1,1147,306,1146,-1,1008,1144,826,-1,1008,1094,1144,-1,88,830,943,-1,830,88,87,-1,824,89,975,-1,89,824,90,-1,86,83,1004,-1,86,88,83,-1,67,994,1143,-1,67,79,994,-1,1155,77,1328,-1,77,1155,1118,-1,74,887,75,-1,74,812,887,-1,1329,877,1142,-1,879,877,1329,-1,908,1180,1173,-1,908,1179,1180,-1,1138,1104,1137,-1,1138,1139,1104,-1,45,987,971,-1,45,44,987,-1,52,947,949,-1,947,52,51,-1,153,1119,813,-1,1119,153,50,-1,969,235,970,-1,969,46,235,-1,972,1122,896,-1,1136,1122,972,-1,275,31,1089,-1,31,275,274,-1,995,1134,859,-1,1120,1134,995,-1,27,35,34,-1,27,29,35,-1,15,18,20,-1,1123,18,15,-1,1330,1129,956,-1,1330,1131,1129,-1,1131,5,1127,-1,1124,5,1131,-1,1126,1123,17,-1,1126,959,1123,-1,1125,1126,17,-1,1126,1125,1128,-1,6,1306,7,-1,1306,6,200,-1,962,1330,1331,-1,962,1332,1330,-1,1130,1128,1125,-1,1127,1128,1130,-1,958,966,18,-1,958,1331,966,-1,1132,1130,23,-1,1129,1130,1132,-1,1121,216,896,-1,893,216,1121,-1,892,216,893,-1,951,277,42,-1,277,951,967,-1,30,1135,1133,-1,30,32,1135,-1,279,277,27,-1,278,277,279,-1,897,215,986,-1,215,897,39,-1,47,52,48,-1,47,50,52,-1,886,1180,1105,-1,886,885,1180,-1,63,813,1119,-1,813,63,946,-1,236,878,1141,-1,878,236,884,-1,68,1143,876,-1,67,1143,68,-1,1328,238,240,-1,238,1328,77,-1,889,881,66,-1,889,882,881,-1,1156,1142,867,-1,1329,1142,1156,-1,953,1094,1008,-1,1094,953,274,-1,1145,1333,310,-1,1333,1145,944,-1,825,973,1333,-1,825,93,973,-1,101,307,1009,-1,101,100,307,-1,1149,1151,1148,-1,1151,1149,1150,-1,935,1117,1334,-1,1117,935,109,-1,1116,110,816,-1,110,1116,122,-1,318,114,1335,-1,318,305,114,-1,935,1327,976,-1,935,1334,1327,-1,1074,125,1106,-1,1074,123,125,-1,128,1093,1157,-1,128,127,1093,-1,931,1151,132,-1,1151,931,121,-1,1115,925,316,-1,142,925,1115,-1,146,914,1181,-1,145,914,146,-1,78,131,927,-1,78,1118,131,-1,929,924,978,-1,929,928,924,-1,1326,163,1336,-1,1114,163,1326,-1,1162,872,993,-1,872,1162,1182,-1,900,1321,984,-1,915,1321,900,-1,848,844,299,-1,287,844,848,-1,1170,291,1001,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=9 */
		private int[] getc3_Geo_8_40_coordIndex_9()
		{
			int[] value = {1170,852,291,-1,1087,1003,1085,-1,1087,1002,1003,-1,178,1114,1113,-1,1114,178,2,-1,1172,910,875,-1,910,1172,1112,-1,179,161,160,-1,179,181,161,-1,188,297,833,-1,187,297,188,-1,248,909,249,-1,248,243,909,-1,218,947,196,-1,53,947,218,-1,1335,112,111,-1,112,1335,114,-1,7,1211,965,-1,7,1306,1211,-1,8,19,231,-1,19,8,20,-1,199,230,508,-1,199,231,230,-1,198,205,1176,-1,198,210,205,-1,1164,212,984,-1,1164,916,212,-1,985,1109,213,-1,1109,985,1110,-1,1174,1109,1175,-1,1174,211,1109,-1,1336,1108,1326,-1,523,1108,1336,-1,217,948,55,-1,1178,948,217,-1,28,220,952,-1,967,220,28,-1,1173,946,63,-1,946,1173,1140,-1,905,232,229,-1,905,955,232,-1,1103,224,228,-1,1103,969,224,-1,1141,239,1100,-1,878,239,1141,-1,1101,72,71,-1,1101,1100,72,-1,2,256,255,-1,256,2,178,-1,246,1112,919,-1,1112,246,245,-1,1323,192,253,-1,1323,1098,192,-1,254,251,1183,-1,254,250,251,-1,252,1322,253,-1,1322,252,1161,-1,1185,1337,1183,-1,1337,1185,1188,-1,1192,1159,1186,-1,1160,1159,1192,-1,261,258,262,-1,261,259,258,-1,839,1186,182,-1,1191,1186,839,-1,858,864,269,-1,858,266,864,-1,32,271,1135,-1,270,271,32,-1,127,836,37,-1,127,126,836,-1,1120,1193,1134,-1,1120,41,1193,-1,954,854,38,-1,855,854,954,-1,1194,1000,999,-1,1338,1000,1194,-1,1196,1338,1339,-1,1338,1196,997,-1,1165,1199,1168,-1,1169,1199,1165,-1,1201,1284,1339,-1,1284,1201,1203,-1,1340,1195,847,-1,1320,1195,1340,-1,283,1325,1340,-1,1325,283,282,-1,1206,1294,840,-1,1292,1294,1206,-1,292,187,189,-1,187,292,295,-1,296,294,838,-1,294,296,295,-1,1318,303,833,-1,304,303,1318,-1,258,1005,304,-1,258,1096,1005,-1,1006,91,113,-1,1006,1007,91,-1,973,310,1333,-1,973,311,310,-1,1150,1147,982,-1,1149,1147,1150,-1,1154,1115,1316,-1,1154,143,1115,-1,1334,111,301,-1,1334,1117,111,-1,111,108,1335,-1,111,1117,108,-1,320,298,302,-1,320,998,298,-1,1306,1066,802,-1,200,1066,1306,-1,1213,1314,330,-1,1212,1314,1213,-1,332,1213,330,-1,332,795,1213,-1,325,1215,1315,-1,1215,325,324,-1,1220,1217,1012,-1,1220,1215,1217,-1,1218,331,804,-1,331,1218,332,-1,800,353,352,-1,800,1265,353,-1,1265,800,801,-1,1013,580,1082,-1,581,580,1013,-1,1341,1083,1277,-1,1341,345,1083,-1,1013,1039,342,-1,1039,1013,1278,-1,1014,1026,730,-1,728,1026,1014,-1,362,359,1081,-1,362,360,359,-1,1225,714,1062,-1,1225,715,714,-1,645,375,361,-1,782,375,645,-1,711,1061,548,-1,707,1061,711,-1,1228,380,706,-1,380,1228,381,-1,553,1310,554,-1,389,1310,553,-1,379,783,547,-1,379,710,783,-1,388,781,644,-1,388,382,781,-1,1227,1244,1229,-1,1244,1227,1311,-1,587,346,1048,-1,788,346,587,-1,1342,1232,628,-1,779,1232,1342,-1,1017,654,1342,-1,1017,404,654,-1,625,413,1049,-1,625,414,413,-1,1240,1236,1235,-1,1239,1236,1240,-1,421,424,1258,-1,420,424,421,-1,1296,1236,1234,-1,1236,1296,774,-1,1238,424,423,-1,1238,1258,424,-1,436,1074,522,-1,436,123,1074,-1,588,437,1245,-1,588,438,437,-1,1240,444,443,-1,435,444,1240,-1,454,450,1073,-1,450,454,451,-1,635,1297,771,-1,635,452,1297,-1,646,756,638,-1,463,756,646,-1,438,464,465,-1,438,588,464,-1,163,1343,1336,-1,1343,163,1072,-1,748,565,1247,-1,748,566,565,-1,1343,1070,1249,-1,1072,1070,1343,-1,477,674,673,-1,477,678,674,-1,1250,592,1290,-1,1250,736,592,-1,608,600,607,-1,601,600,608,-1,1071,482,483,-1,481,482,1071,-1,1069,488,1067,-1,488,1069,500,-1,1035,457,456,-1,457,1035,1255,-1,470,489,471,-1,470,487,489,-1,612,496,615,-1,496,612,497,-1,500,702,1059,-1,500,502,702,-1,1266,792,545,-1,792,1266,1219,-1,334,1219,1266,-1,1219,334,333,-1,738,803,737,-1,738,804,803,-1,1071,1260,479,-1,1260,1071,1259,-1,518,1259,519,-1,521,1259,518,-1,518,1174,1175,-1,518,733,1174,-1,524,1336,1343,-1,1336,524,523,-1,784,529,528,-1,529,784,1262,-1,1266,801,334,-1,1266,1265,801,-1,544,353,1265,-1,722,353,544,-1,532,1312,533,-1,532,1222,1312,-1,533,714,534,-1,533,1312,714,-1,507,539,543,-1,507,504,539,-1,539,721,544,-1,541,721,539,-1,1304,1061,707,-1,1061,1304,552,-1,383,549,384,-1,383,550,549,-1,563,472,564,-1,484,472,563,-1,1068,748,1247,-1,1067,748,1068,-1,556,559,1268,-1,556,558,559,-1,1302,1270,1272,-1,1302,1268,1270,-1,1337,1270,1269,-1,1188,1270,1337,-1,1246,1192,1271,-1,1192,1246,1160,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=10 */
		private int[] getc3_Geo_8_40_coordIndex_10()
		{
			int[] value = {568,1233,569,-1,768,1233,568,-1,570,492,572,-1,570,493,492,-1,570,1298,571,-1,574,1298,570,-1,692,688,585,-1,692,575,688,-1,1038,345,1341,-1,345,1038,584,-1,665,438,666,-1,665,439,438,-1,1055,349,1276,-1,1055,355,349,-1,685,789,790,-1,789,685,684,-1,1044,1053,596,-1,1053,1044,1281,-1,1281,1283,1279,-1,1041,1283,1281,-1,1199,1251,1168,-1,1251,1199,1253,-1,1284,1280,1279,-1,1203,1280,1284,-1,594,1289,595,-1,1289,594,1286,-1,1290,591,1289,-1,592,591,1290,-1,600,678,1052,-1,678,600,599,-1,605,1252,606,-1,1291,1252,605,-1,611,605,604,-1,611,610,605,-1,1293,1295,1319,-1,669,1295,1293,-1,1273,1319,1295,-1,1273,1190,1319,-1,574,615,1298,-1,574,612,615,-1,400,661,1046,-1,400,659,661,-1,628,1017,1342,-1,628,777,1017,-1,1234,1239,1029,-1,1239,1234,1236,-1,776,1309,649,-1,776,427,1309,-1,1241,415,771,-1,1241,1237,415,-1,1078,766,1297,-1,433,766,1078,-1,758,639,638,-1,758,386,639,-1,1210,1081,49,-1,1210,1264,1081,-1,481,642,482,-1,481,460,642,-1,643,386,758,-1,643,644,386,-1,647,621,765,-1,621,647,636,-1,769,1077,422,-1,769,637,1077,-1,775,649,1309,-1,649,775,650,-1,411,413,1019,-1,411,410,413,-1,770,688,417,-1,770,633,688,-1,396,1232,779,-1,396,395,1232,-1,661,412,627,-1,661,659,412,-1,430,661,660,-1,1046,661,430,-1,623,571,1298,-1,623,567,571,-1,669,668,1295,-1,609,668,669,-1,495,476,496,-1,495,607,476,-1,610,1291,605,-1,610,670,1291,-1,606,671,604,-1,606,683,671,-1,596,678,1044,-1,678,596,674,-1,765,1025,755,-1,765,1042,1025,-1,1285,745,1028,-1,1285,1205,745,-1,1280,1200,1287,-1,1200,1280,1203,-1,1253,1198,1299,-1,1198,1253,1199,-1,1283,681,1299,-1,681,1283,1041,-1,679,1281,1044,-1,1281,679,1041,-1,1083,1040,1275,-1,1040,1083,347,-1,1082,1278,1013,-1,1082,354,1278,-1,437,767,755,-1,437,1020,767,-1,1341,578,1038,-1,1341,689,578,-1,585,576,692,-1,584,576,585,-1,1229,418,419,-1,1229,1244,418,-1,699,1300,1158,-1,699,700,1300,-1,1301,1269,1058,-1,1337,1269,1301,-1,1272,561,1302,-1,700,561,1272,-1,1060,1268,1302,-1,1060,556,1268,-1,1067,703,748,-1,703,1067,488,-1,1308,1255,1303,-1,1255,1308,457,-1,549,378,384,-1,549,709,378,-1,372,1304,380,-1,372,552,1304,-1,1034,549,548,-1,1034,709,549,-1,541,1062,721,-1,1225,1062,541,-1,538,385,535,-1,538,1033,385,-1,351,722,1267,-1,351,353,722,-1,729,1221,343,-1,1221,729,728,-1,784,1264,1262,-1,1264,784,1016,-1,730,526,1014,-1,730,1261,526,-1,1175,436,518,-1,436,1175,124,-1,1343,1305,524,-1,1343,1249,1305,-1,1305,479,1260,-1,1305,468,479,-1,520,483,1027,-1,519,483,520,-1,747,735,511,-1,747,641,735,-1,376,367,69,-1,739,367,376,-1,737,1066,199,-1,737,803,1066,-1,375,540,739,-1,375,1224,540,-1,757,1307,1023,-1,1065,1307,757,-1,557,1030,704,-1,1031,1030,557,-1,503,500,1069,-1,502,500,503,-1,604,495,611,-1,604,608,495,-1,608,604,672,-1,743,751,1056,-1,742,751,743,-1,742,1057,751,-1,675,671,676,-1,675,672,671,-1,597,603,602,-1,597,1043,603,-1,731,1290,1288,-1,731,1250,1290,-1,478,673,616,-1,478,477,673,-1,762,1303,697,-1,762,1308,1303,-1,1057,748,703,-1,748,1057,749,-1,562,1246,490,-1,562,699,1246,-1,1024,363,786,-1,463,363,1024,-1,1022,643,1023,-1,1022,760,643,-1,1080,759,1243,-1,1080,440,759,-1,734,1065,517,-1,1307,1065,734,-1,761,1308,762,-1,1308,761,750,-1,766,771,1297,-1,1241,771,766,-1,510,1245,511,-1,510,588,1245,-1,1309,1235,775,-1,1075,1235,1309,-1,409,651,410,-1,651,409,650,-1,403,1047,656,-1,1047,403,653,-1,1296,625,1049,-1,626,625,1296,-1,780,1342,654,-1,779,1342,780,-1,656,654,403,-1,780,654,656,-1,777,778,1017,-1,777,632,778,-1,664,657,663,-1,664,399,657,-1,789,1040,1054,-1,1040,789,684,-1,1310,1244,1311,-1,1243,1244,1310,-1,717,639,1033,-1,717,640,639,-1,1311,554,1310,-1,1311,708,554,-1,527,784,528,-1,784,527,785,-1,716,715,1226,-1,716,1032,715,-1,1312,1062,714,-1,1063,1062,1312,-1,1223,1267,1222,-1,351,1267,1223,-1,690,582,530,-1,348,582,690,-1,582,348,350,-1,343,787,344,-1,343,1221,787,-1,336,1223,337,-1,336,727,1223,-1,689,1277,1276,-1,689,1341,1277,-1,799,335,334,-1,799,796,335,-1,1314,333,335,-1,1314,1313,333,-1,1218,795,332,-1,795,1218,1011,-1,1315,1220,1313,-1,1220,1315,1215,-1,1010,1315,1212,-1,1315,1010,325,-1,795,806,1213,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=11 */
		private int[] getc3_Geo_8_40_coordIndex_11()
		{
			int[] value = {795,794,806,-1,330,335,328,-1,330,1314,335,-1,331,797,802,-1,331,329,797,-1,190,159,172,-1,190,808,159,-1,932,929,978,-1,929,932,930,-1,949,48,52,-1,48,949,1177,-1,120,1335,108,-1,120,318,1335,-1,820,974,816,-1,819,974,820,-1,101,939,975,-1,101,98,939,-1,858,937,103,-1,858,313,937,-1,1145,83,944,-1,1145,84,83,-1,102,1006,309,-1,102,1007,1006,-1,1006,112,832,-1,112,1006,113,-1,262,304,1318,-1,262,258,304,-1,1208,839,838,-1,1208,1191,839,-1,1293,840,1294,-1,841,840,1293,-1,1166,1206,1167,-1,1206,1166,1292,-1,289,851,1207,-1,291,851,289,-1,847,283,1340,-1,283,847,842,-1,1340,1321,1320,-1,1321,1340,1325,-1,1204,1195,1320,-1,1204,1202,1195,-1,1339,1282,1196,-1,1282,1339,1284,-1,1167,852,1165,-1,851,852,1167,-1,1339,1194,1201,-1,1194,1339,1338,-1,1338,845,1000,-1,997,845,1338,-1,996,30,1091,-1,31,30,996,-1,272,1135,271,-1,272,859,1135,-1,860,970,221,-1,860,862,970,-1,107,867,106,-1,107,1156,867,-1,1300,1161,1158,-1,1300,1322,1161,-1,1183,1301,254,-1,1301,1183,1337,-1,253,1187,1323,-1,1187,253,1322,-1,1184,1098,1323,-1,1184,249,1098,-1,1162,1112,1172,-1,1162,919,1112,-1,256,177,147,-1,256,178,177,-1,878,879,239,-1,879,878,877,-1,882,992,881,-1,882,237,992,-1,990,1103,228,-1,990,222,1103,-1,1179,904,1102,-1,1179,908,904,-1,75,227,226,-1,75,887,227,-1,1137,989,988,-1,989,1137,1104,-1,232,893,233,-1,232,894,893,-1,22,961,892,-1,12,961,22,-1,1210,1178,1263,-1,1210,1177,1178,-1,214,986,215,-1,214,1176,986,-1,1324,1326,1108,-1,1324,1163,1326,-1,898,1324,899,-1,898,158,1324,-1,173,212,916,-1,212,173,213,-1,1124,962,3,-1,1124,1332,962,-1,1334,300,1327,-1,1334,301,300,-1,244,248,875,-1,248,244,243,-1,191,193,910,-1,193,191,194,-1,189,289,292,-1,1085,289,189,-1,1003,289,1085,-1,981,259,261,-1,981,868,259,-1,981,1097,868,-1,290,1002,1001,-1,290,1003,1002,-1,287,284,288,-1,287,848,284,-1,1325,984,1321,-1,1325,1164,984,-1,844,167,299,-1,844,285,167,-1,1182,873,872,-1,1182,1181,873,-1,246,1097,247,-1,869,1097,246,-1,1159,252,183,-1,1159,1161,252,-1,51,196,947,-1,196,51,921,-1,811,978,924,-1,811,927,978,-1,926,1118,1155,-1,926,131,1118,-1,1111,903,210,-1,903,1111,928,-1,1181,917,873,-1,914,917,1181,-1,938,977,1316,-1,977,938,1152,-1,1157,856,207,-1,1157,1093,856,-1,1154,815,1153,-1,815,1154,933,-1,976,1317,105,-1,1317,976,1327,-1,1146,308,934,-1,306,308,1146,-1,821,99,98,-1,819,99,821,-1,829,94,830,-1,823,94,829,-1,307,1209,1009,-1,1209,307,306,-1,1333,943,825,-1,943,1333,944,-1,825,830,94,-1,830,825,943,-1,942,311,973,-1,942,314,311,-1,828,1004,834,-1,828,86,1004,-1,996,954,1089,-1,855,954,996,-1,1156,1328,1329,-1,1328,1156,1155,-1,812,888,887,-1,812,322,888,-1,240,1329,1328,-1,240,879,1329,-1,885,1173,1180,-1,885,1140,1173,-1,1138,24,891,-1,24,1138,1136,-1,46,1103,44,-1,46,969,1103,-1,861,860,221,-1,861,995,860,-1,950,995,861,-1,1008,273,953,-1,1008,827